@charset "UTF-8";
@media screen and (min-width: 600px) {
  .logo__tit--sales {
    padding-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .changeHeader__logoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #wrap {
    width: 1024px;
  }
}

@media screen and (min-width: 600px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}

@media screen and (min-width: 600px) {
  .desktop {
    display: block;
  }
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s ease;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .button {
    text-decoration: none;
    box-sizing: border-box;
  }
}

.button.before_text:before {
  content: "";
  display: block;
  width: 6px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.button.before_angle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

.button.after_angle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

.button_cta {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  background: #D10042;
  color: #fff;
}

.button_cta.long-shadow {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.button_cta.long-shadow:hover {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 600px) {
  .button_cta {
    width: 480px;
    height: 72px;
    padding-right: 50px;
    font-size: 22px;
  }
}

.button_cta .icontext {
  margin-right: 10px;
  padding: 1px 10px 0;
  border-radius: 20px;
  background: #fff;
  color: #D10042;
}

@media screen and (min-width: 600px) {
  .button_cta .icontext {
    padding: 5px 20px;
    font-size: 20px;
    line-height: 1;
  }
}

.button_cta:before {
  content: "";
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-45deg);
  position: absolute;
  top: -10%;
  left: -100%;
  transition: .5s ease-in-out;
  height: 100%;
  width: 110%;
}

.button_cta:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (min-width: 600px) {
  .button_cta:after {
    width: 32px;
    height: 17px;
    border: none;
    right: 10px;
    transform: rotate(0) translateY(-50%);
    background: url(/sales/img/cta-angle.svg) 0 0 no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .button_cta:hover {
    transform: scale(1.05);
  }
}

@media screen and (min-width: 600px) {
  .button_cta:hover:before {
    left: 80%;
  }
}

.button_blue {
  padding: 15px 30px;
  height: auto;
  border: 1px solid #003B6B;
  background: #003B6B;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .button_blue:hover {
    border: 1px solid #003B6B;
    background: #fff;
    color: #003B6B;
  }
  .button_blue:hover:after {
    border-color: #003B6B;
  }
}

.button_borderblue {
  padding: 15px 30px;
  height: auto;
  border: 1px solid #005EAB;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #005EAB;
  text-align: center;
}

.button_borderblue.before_angle:before, .button_borderblue.after_angle:after {
  border-color: #005EAB;
}

@media screen and (min-width: 600px) {
  .button_borderblue:hover {
    background: #005EAB;
    color: #fff;
  }
}

.col2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .col2 {
    flex-direction: row;
    margin: auto;
  }
}

@media screen and (min-width: 600px) {
  .col2 .content {
    padding-left: 40px;
  }
}

@media screen and (min-width: 600px) {
  .col2 .title {
    margin-bottom: 10px;
  }
}

.col3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .col3 {
    flex-direction: row;
  }
}

@media screen and (min-width: 600px) {
  .col3 .li {
    width: 296px;
  }
}

.img {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .img {
    width: auto;
  }
}

@media screen and (max-width: 360px) {
  .img img {
    width: 100%;
  }
}

.article {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.article * {
  box-sizing: border-box;
}

.container {
  padding: 0 15px;
}

@media screen and (min-width: 600px) {
  .container {
    width: 1000px;
    margin: auto;
    padding: 0;
  }
}

.cta {
  padding: 20px 15px 25px;
  background: url(/sales/img/sp/cta-bg.jpg) center/cover no-repeat;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .cta {
    padding: 43px 0 48px;
    background: url(/sales/img/cta-bg.jpg) center/cover no-repeat;
    font-size: 19px;
  }
}

.cta p {
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (min-width: 600px) {
  .cta p {
    margin-bottom: 19px;
  }
}

@media screen and (min-width: 600px) {
  .cta .button_cta {
    width: 640px;
    height: 98px;
    margin: auto;
  }
}

@media screen and (min-width: 600px) {
  .cta .button_cta:after {
    right: 20px;
  }
}

.cta .button_borderblue {
  width: 275px;
  height: 44px;
  margin: 25px auto 0;
  border-radius: 50px;
  border-color: #003B6B;
  color: #003B6B;
}

@media screen and (min-width: 600px) {
  .cta .button_borderblue {
    width: 306px;
    font-weight: normal;
  }
}

.cta .button_borderblue:after {
  border-color: #003B6B;
}

@media screen and (min-width: 600px) {
  .cta .button_borderblue:hover {
    background: #003B6B;
    color: #fff;
  }
  .cta .button_borderblue:hover:after {
    border-color: #fff;
  }
}

.cta--nobg {
  padding: 100px 0 110px;
  background-color: #fff;
  background-image: none;
  color: #333;
}

@media screen and (max-width: 599px) {
  .cta--nobg {
    padding: 74px 24px 80px;
  }
}

@media screen and (min-width: 600px) {
  .cta--nobg .long-shadow {
    width: 532px;
    height: 82px;
  }
}

.cta--nobg_mv {
  padding: 20px 0;
  background-color: #fff;
  background-image: none;
  color: #333;
}

.cta--nobg_mv p {
  font-size: 15px;
  margin-bottom: 12px;
}

.cta--nobg_mv a {
  text-decoration: none;
}

.cta--nobg_mv .long-shadow {
  width: 386px;
  height: 64px;
  font-size: 15px;
  padding-left: 20px;
  margin: 0 auto;
}

.cta--nobg_mv .sec2-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 386px;
  margin: 10px auto;
  color: #005EAB;
}

.cta--nobg_mv .sec2-link .icon {
  margin-right: 10px;
  width: 16px;
}

.cta--nobg_mv .sec2-link span {
  cursor: pointer;
  border-bottom: 1px #005EAB solid;
}

.sec2-link-modal {
  display: none;
  position: fixed;
  z-index: 110001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  padding: 18px 40px;
  border: 2px solid #005EAB;
  border-radius: 6px;
  background: #fff;
}

.sec2-link-modal .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 24px;
  color: #005EAB;
}

.sec2-link-modal a {
  text-decoration: underline;
}

.close-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110000;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.sec2-link-modal .button-close {
  width: 30px;
  height: 30px;
}

.button-close {
  position: absolute;
  top: 4px;
  right: 4px;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #005EAB;
  border: none;
}

.sec2-link-modal .icon {
  width: 34px;
  margin-right: 20px;
}

.sec2-link-modal .button-close:after, .sec2-link-modal .button-close:before {
  width: 14px;
}

.button-close:after {
  transform: rotate(-45deg) translate(-50%, -50%);
}

.button-close:after, .button-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  transform-origin: 0 0;
}

.button-close:before {
  transform: rotate( 45deg) translate(-50%, -50%);
}

@media screen and (max-width: 749px) {
  .sec2-link-modal {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: calc(100% - 10px);
    padding: 30px 15px;
  }
  .sec2-link-modal a {
    text-decoration: none;
  }
  .sec2-link-modal .title {
    font-size: 18px;
    border: 0;
  }
  .cta--nobg_mv {
    padding: 20px;
  }
  .cta--nobg_mv .long-shadow {
    width: auto;
    padding-left: 0;
  }
  .cta--nobg_mv .sec2-link {
    width: auto;
  }
  .sec2-link-modal .icon {
    width: 28px;
    margin-right: 5px;
  }
}

@media screen and (min-width: 600px) {
  .cta--nobg .long-shadow {
    width: 532px;
    height: 82px;
  }
}

.sec {
  padding: 35px 0 30px;
}

.sec.jobDescription {
  padding: 35px 0 5px;
}

@media screen and (min-width: 600px) {
  .sec {
    padding: 35px 0 50px;
  }
  .sec.jobDescription {
    padding: 35px 0 5px;
  }
}

.sec_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-bottom: 16px;
}

@media screen and (min-width: 600px) {
  .sec_title {
    justify-content: center;
    flex-direction: row;
  }
}

.sec_title .text {
  margin-bottom: 6px;
  border-bottom: 4px solid #FFD600;
  font-size: 24px;
  font-weight: bold;
  color: #003B6B;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec_title .text {
    font-size: 28px;
  }
}

.sec_title2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5px;
}

@media screen and (min-width: 600px) {
  .sec_title2 {
    justify-content: center;
    flex-direction: row;
    margin-bottom: 20px;
  }
}

.sec_title2 .text {
  margin-bottom: 12px;
  border-bottom: 3px solid #333;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .sec_title2 .text {
    font-size: 26px;
  }
}

.sec .intro {
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec .intro {
    margin-bottom: 60px;
  }
}

.sec .content p {
  font-weight: 500;
}

.sec p+p {
  margin-top: 1.8em;
}

.sec p strong {
  background: linear-gradient(to bottom, transparent calc(100% - 8px), #FFE7A0 calc(100% - 8px));
}

.sec a {
  text-decoration: none;
}

.sec1 .button_cta {
  display: none;
}

@media screen and (min-width: 600px) {
  .sec1 .button_cta {
    display: flex;
  }
}

.sec1_row1 {
  position: relative;
  padding-top: 20px;
  background: url(/sales/img/sp/sec1-bg.jpg) right 0/120% no-repeat;
  overflow: hidden;
  font-feature-settings: "palt";
}

@media screen and (min-width: 600px) {
  .sec1_row1 {
    padding-top: 0;
    height: 360px;
    background: url(/sales/img/sec1-bg.jpg) calc( (( 100% - 1000px) / 2) + 170px + 530px) 0/1071px no-repeat, #003B6B;
  }
}

.sec1_row1 .container {
  padding: 0;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .container {
    position: relative;
    height: 360px;
    padding-top: 53px;
  }
}

.sec1_row1 .h1 {
  margin-bottom: 15%;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .h1 {
    margin-bottom: 41px;
    padding-bottom: 12px;
    background: url(/sales/img/sec1-h1-bg.svg) -14px 16px no-repeat;
  }
}

.sec1_row1 .small {
  display: block;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 4.2vw;
  font-weight: bold;
  color: #003B6B;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .small {
    margin-bottom: 16px;
    padding: 0;
    font-size: 15px;
    color: #fff;
    line-height: 1.55;
  }
}

.sec1_row1 .small .row {
  display: inline-block;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .small .row {
    padding: 0;
  }
}

.sec1_row1 .large {
  display: block;
}

.sec1_row1 .large .row {
  display: inline-block;
  padding: 1px 15px;
  background: #003B6B;
  font-size: 8.8vw;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.4;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .large .row {
    padding: 0;
    background: none;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 3px;
  }
}

.sec1_row1 .bar {
  width: 100%;
  padding: 10px 15px;
  background: #fff;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .bar {
    position: absolute;
    left: 700px;
    bottom: 35px;
    padding-left: 40px;
    border-radius: 50px;
  }
}

.sec1_row1 .img2 {
  display: block;
  width: 240px;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .img2 {
    margin: 0;
  }
}

.sec1_row1 .img1 {
  position: absolute;
  top: 56%;
  right: -44px;
  width: 68%;
}

@media screen and (min-width: 600px) {
  .sec1_row1 .img1 {
    top: auto;
    bottom: 92px;
    right: 50px;
    width: 457px;
  }
}

.sec1_row2 {
  padding: 15px 0;
  background: #fff;
}

@media screen and (min-width: 600px) {
  .sec1_row2 {
    padding: 25px 0;
  }
}

.sec1_row2 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .container {
    justify-content: center;
  }
}

.sec1_row2 .button_cta {
  display: flex;
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .button_cta {
    display: none;
  }
}

.sec1_row2 .button_borderblue {
  width: calc( 50% - 5px);
  height: 44px;
  padding: 0;
  font-size: 13px;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .button_borderblue {
    width: 296px;
    height: 48px;
    margin: 0 5px;
    font-size: 15px;
  }
}

.sec1_row2 .button_borderblue:after {
  display: none;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .button_borderblue:after {
    display: block;
    right: 20px;
  }
}

.sec1_row2 .corpresult {
  width: 100%;
  margin: 25px 0 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #005EAB;
}

.sec1_row2 .corpresult .h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #005EAB;
}

.sec1_row2 .corpresult .h2:before, .sec1_row2 .corpresult .h2:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #005EAB;
  display: block;
}

.sec1_row2 .corpresult .h2:before {
  margin-right: .4em;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .corpresult .h2:before {
    display: none;
  }
}

.sec1_row2 .corpresult .h2:after {
  margin-left: .4em;
}

.sec1_row2 .slide {
  position: relative;
}

.sec1_row2 .slide::before, .sec1_row2 .slide::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 1;
}

.sec1_row2 .slide::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 95%);
  left: 0;
}

.sec1_row2 .slide::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 95%);
  right: 0;
}

.sec1_row2 .list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

@media screen and (min-width: 600px) {
  .sec1_row2 .list__item {
    height: 65px;
  }
}

.sec1_row2 .list__item img {
  max-width: 100%;
  width: auto;
  height: 100%;
}

.sec1_row2 .bottom {
  margin-left: auto;
}

.sec2 {
  padding: 20px 0 30px;
  background: #F0F5F9;
}

@media screen and (min-width: 600px) {
  .sec2 {
    padding: 40px 0 50px;
  }
}

.sec2 .intro {
  color: #005EAB;
  text-align: left;
  line-height: 1.73;
}

@media screen and (min-width: 600px) {
  .sec2 .intro {
    margin-bottom: 30px;
    text-align: center;
  }
}

@media screen and (min-width: 600px) {
  .sec2 .table_of_contents {
    width: 585px;
    margin: auto;
  }
}

.sec2 .table_of_contents .inner {
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #005EAB;
  background: #fff;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .sec2 .table_of_contents .inner {
    padding: 30px;
  }
}

.sec2 .table_of_contents .dt {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec2 .table_of_contents .dt {
    font-size: 20px;
  }
}

.sec2 .table_of_contents .ul {
  margin-bottom: 0;
}

.sec2 .table_of_contents .link {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #333333;
  font-size: 16px;
  font-weight: bold;
  color: #005EAB;
  line-height: 1.2;
  letter-spacing: 0.1em;
  transition: all .3s ease;
}

.sec2 .table_of_contents .link:hover {
  opacity: 0.5;
}

.sec2 .table_of_contents .icon {
  margin-right: 15px;
}

@media screen and (min-width: 600px) {
  .sec2 .table_of_contents .icon {
    width: 26px;
  }
}

@media screen and (min-width: 600px) {
  .sec3 .col2 {
    width: 695px;
    margin-bottom: 60px;
    padding-left: 15px;
    font-size: 14px;
  }
}

@media screen and (min-width: 600px) {
  .sec3 .content {
    padding-left: 40px;
  }
}

.sec3 .img {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec3 .img {
    width: 227px;
  }
}

.sec3 .button {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .sec3 .button {
    width: 528px;
    margin: auto;
    padding: 12px 0;
  }
}

.sec3 .button:last-child {
  margin-top: 10px;
}

.sec4 {
  background: #F0F5F9;
}

.sec4 .ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (min-width: 600px) {
  .sec4 .ul {
    justify-content: center;
    margin-bottom: 15px;
  }
}

.sec4 .li {
  width: 50%;
  padding: 5px;
}

@media screen and (min-width: 600px) {
  .sec4 .li {
    width: 195px;
  }
}

.sec4 .img {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .sec4 .img {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .sec4 img {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .sec4 p {
    width: 420px;
    margin: auto;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .col2, .sec6 .col2 {
    justify-content: flex-start;
    margin-bottom: 5px;
    padding-left: 165px;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .content, .sec6 .content {
    padding: 35px 0 0 30px;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .content p, .sec6 .content p {
    width: 394px;
    font-size: 14px;
  }
}

.sec5 .h3, .sec6 .h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #005EAB;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (min-width: 600px) {
  .sec5 .h3, .sec6 .h3 {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: left;
  }
}

.sec5 p:not(.p), .sec6 p:not(.p) {
  margin-bottom: 30px;
}

.sec5 .point, .sec6 .point {
  padding: 10px 10px 15px;
  border-radius: 16px;
  background: #005EAB;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .sec5 .point, .sec6 .point {
    align-items: center;
    width: 602px;
    margin: auto;
    padding: 20px 25px;
    border-radius: 12px;
  }
}

.sec5 .point .img, .sec6 .point .img {
  width: 68px;
  margin: 0 auto 10px;
}

@media screen and (min-width: 600px) {
  .sec5 .point .img, .sec6 .point .img {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .point .content, .sec6 .point .content {
    padding: 0 0 0 30px;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .point p, .sec6 .point p {
    width: auto;
    line-height: 2;
  }
}

@media screen and (min-width: 600px) {
  .sec5 {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .sec5 p.intro {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 600px) {
  .sec5 .ol {
    margin-bottom: 50px;
    background: url(/sales/img/sec5-bg.png) 415px 240px no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .sec6 {
    padding-top: 52px;
  }
}

@media screen and (min-width: 600px) {
  .sec6 p.intro {
    margin-bottom: 53px;
  }
}

@media screen and (min-width: 600px) {
  .sec6 .ol {
    margin-bottom: 50px;
    background: url(/sales/img/sec6-bg.png) 450px 45px no-repeat;
  }
}

.sec7 {
  padding-bottom: 5px;
  background: #F0F5F9;
}

@media screen and (min-width: 600px) {
  .sec7 {
    padding: 55px 0 50px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .col2 {
    justify-content: center;
  }
}

.sec7 .h3 {
  margin-bottom: 14px;
  font-size: 22px;
  color: #005EAB;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec7 .h3 {
    margin-bottom: 24px;
    font-size: 26px;
  }
}

.sec7 .box {
  margin-bottom: 50px;
  padding-bottom: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
}

@media screen and (min-width: 600px) {
  .sec7 .box {
    margin-bottom: 70px;
    padding-bottom: 0;
    box-shadow: none;
    background: none;
  }
}

.sec7 .box:last-child {
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .sec7 .inner {
    width: 368px;
    height: 662px;
    margin: 0 12px 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
}

.sec7 .inner .img {
  padding: 20px 0 20px 10px;
  border-radius: 0 0 0 30px;
  background: rgba(10, 159, 194, 0.15);
}

@media screen and (min-width: 600px) {
  .sec7 .inner .img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 0 0 0 50px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .inner .img img {
    width: 100%;
  }
}

.sec7 .inner .h4 {
  margin-bottom: 10px;
  font-size: 21px;
  color: #005EAB;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (min-width: 600px) {
  .sec7 .inner .h4 {
    margin-bottom: 11px;
    font-size: 24px;
  }
}

.sec7 .inner p {
  margin-bottom: 20px;
  padding: 0 10px;
}

@media screen and (min-width: 600px) {
  .sec7 .inner p {
    margin-bottom: 0;
    padding: 0 20px;
    font-size: 14px;
  }
}

.sec7 .button {
  width: calc( 100% - 20px);
  margin: auto;
  padding: 9px 30px 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 600px) {
  .sec7 .button {
    width: 224px;
  }
}

.sec7 .type {
  margin-bottom: 12px;
}

@media screen and (min-width: 600px) {
  .sec7 .type {
    position: relative;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }
}

.sec7 .type .h4 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  font-size: 32px;
  color: #003B6B;
}

@media screen and (min-width: 600px) {
  .sec7 .type .h4 {
    position: static;
    align-items: flex-start;
    font-size: 36px;
  }
}

.sec7 .type .content {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 600px) {
  .sec7 .type .content {
    padding-left: 0;
  }
}

.sec7 .type .img {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
}

.sec7 .type .english {
  margin-bottom: 5px;
}

@media screen and (min-width: 600px) {
  .sec7 .type .english {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type .english img {
    display: block;
    height: 10.5px;
  }
}

.sec7 .type .japanese {
  font-weight: 500;
  letter-spacing: .08em;
}

.sec7 .type p {
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .sec7 .type p {
    width: 336px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec7 .type .buttons {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .sec7 .type .buttons {
    position: relative;
    z-index: 2;
    width: auto;
    padding-top: 110px;
  }
}

.sec7 .type .button {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .sec7 .type .button {
    width: 264px;
    padding: 9px 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  }
}

.sec7 .type .button_borderblue {
  border-color: #003B6B;
  color: #003B6B;
}

.sec7 .type .button_borderblue:after {
  border-color: #003B6B;
}

@media screen and (min-width: 600px) {
  .sec7 .type .button_borderblue:hover {
    background: #003B6B;
    color: #fff;
  }
  .sec7 .type .button_borderblue:hover:after {
    border-color: #fff;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type .bg {
    position: absolute;
    top: 12px;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 30px 0 30px 0;
    background: #fff;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type1 {
    width: 648px;
    margin-bottom: 46px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type1 .bg {
    left: -25px;
    width: 633px;
    height: 214px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type1 .img {
    top: 0;
    left: 230px;
    width: 167px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type2 {
    width: 646px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type2 .bg {
    top: 5px;
    left: 75px;
    width: 483px;
    height: 282px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type2 .content {
    order: 2;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type2 .buttons {
    order: 1;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type2 .img {
    top: 40px;
    left: 200px;
    width: 134px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type3 {
    width: 672px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type3 .bg {
    top: 5px;
    left: -25px;
    width: 571px;
    height: 410px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type3 .img {
    top: 2px;
    left: 233px;
    width: 164px;
  }
}

.sec7 .type3 .after_angle:nth-of-type(2) {
  margin-bottom: 24px;
}

@media screen and (min-width: 600px) {
  .sec7 .type3 .after_angle:nth-of-type(2) {
    margin-bottom: 40px;
  }
}

.sec7 .type4 .img, .sec7 .type5 .img {
  width: 80px;
}

@media screen and (min-width: 600px) {
  .sec7 .type4 {
    width: 662px;
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type4 .bg {
    top: 5px;
    left: 75px;
    width: 570px;
    height: 340px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type4 .content {
    order: 2;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type4 .buttons {
    order: 1;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type4 .img {
    top: -12px;
    left: auto;
    right: -40px;
    width: 121px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type4 .button {
    width: 280px;
  }
}

.sec7 .type5 {
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .sec7 .type5 {
    width: 735px;
    margin-bottom: 63px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type5 .bg {
    top: 5px;
    left: -25px;
    width: 557px;
    height: 326px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type5 .img {
    top: -10px;
    left: 330px;
    width: 118px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .type5 .button {
    width: 352px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .child2 .box {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .child2 .inner {
    height: 600px;
  }
}

@media screen and (min-width: 600px) {
  .sec7 .child2 .h4 {
    margin-bottom: 0;
  }
}

.sec7 .child2 .img {
  padding: 0;
  border-radius: 0;
  background: #DAF1F6;
}

@media screen and (min-width: 600px) {
  .sec7 .child2 .img {
    height: auto;
    padding: 0 10px;
    background: #fff;
  }
}

.sec7 .child2 img {
  width: 100%;
  min-width: 320px;
}

@media screen and (min-width: 600px) {
  .sec7 .child2 .button {
    width: 265px;
  }
}

.sec7 .h5 {
  margin-bottom: 20px;
  font-size: 17px;
  color: #005EAB;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec7 .h5 {
    margin-bottom: 18px;
  }
}

@media screen and (min-width: 600px) {
  .sec8 {
    padding-top: 55px;
  }
}

@media screen and (min-width: 600px) {
  .sec8 .intro {
    margin-bottom: 60px;
  }
}

.sec8 .container {
  padding: 0;
}

.sec8 .box {
  margin-bottom: 30px;
  padding: 25px 0;
  background: #005EAB;
}

@media screen and (min-width: 600px) {
  .sec8 .box {
    width: 768px;
    margin: auto;
  }
}

@media screen and (min-width: 600px) {
  .sec8 .box:nth-of-type(1) {
    padding: 20px 0 0;
    background: linear-gradient(#005EAB 0, #005EAB 100%);
    background-size: 632px 607px;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .sec8 .box:nth-of-type(2) {
    margin-bottom: 0;
    padding: 20px 0 0;
    background: linear-gradient(#005EAB 0, #005EAB 100%);
    background-size: 632px 412px;
    background-repeat: no-repeat;
  }
}

.sec8 .h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .sec8 .h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}

.sec8 .h3:before {
  content: "";
  height: 1px;
  width: 36px;
  background: #fff;
  display: block;
}

.sec8 .h3:before {
  margin-right: 5px;
}

.sec8 .col2 {
  width: calc( 100% - 30px);
  margin: 0 auto 15px;
  padding-bottom: 20px;
  background: #fff;
}

@media screen and (min-width: 600px) {
  .sec8 .col2 {
    align-items: center;
    width: 100%;
    margin: 0 0 15px 40px;
    padding: 15px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }
}

.sec8 .col2 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ECF7FA;
  height: 210px;
}

@media screen and (min-width: 600px) {
  .sec8 .col2 .img {
    width: 222px;
    height: 174px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 360px) {
  .sec8 .col2 img {
    width: auto;
    height: 135px;
  }
}

@media screen and (max-width: 360px) {
  .sec8 .col2:nth-of-type(1) img {
    height: 100px;
  }
}

@media screen and (min-width: 600px) {
  .sec8 .col2:nth-of-type(1) img {
    height: 88px;
  }
}

.sec8 .content {
  margin-top: -35px;
  padding: 0 10px;
}

@media screen and (min-width: 600px) {
  .sec8 .content {
    flex: 1;
    margin-top: 0;
    padding: 0 40px 0 30px;
    font-size: 14px;
  }
}

.sec8 .h4 {
  margin-bottom: 25px;
  font-size: 21px;
  color: #005EAB;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 600px) {
  .sec8 .h4 {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: left;
  }
}

.sec8 .button {
  display: none;
}

@media screen and (min-width: 600px) {
  .sec8 .button {
    display: flex;
    width: 328px;
    margin: 30px auto 70px;
    padding: 9px 0;
  }
}

.sec8 .notimg {
  align-items: center;
  padding: 25px 10px;
}

@media screen and (min-width: 600px) {
  .sec8 .notimg {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 25px 50px;
    font-size: 14px;
  }
}

@media screen and (min-width: 600px) {
  .sec8 .notimg p {
    width: 100%;
  }
}

.sec9 {
  padding-bottom: 0;
  background: #E6EFF6;
}

@media screen and (min-width: 600px) {
  .sec9 {
    padding: 50px 0 0;
  }
}

@media screen and (min-width: 600px) {
  .sec9 .col2 {
    width: 836px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .sec9 .col2 .img img {
    max-width: 90% !important;
  }
}

@media screen and (min-width: 600px) {
  .sec9 .content {
    padding-left: 60px;
  }
}

.sec9 .cta {
  margin-top: 30px;
}

.sec10 {
  padding-bottom: 0;
}

@media screen and (min-width: 600px) {
  .sec10 {
    padding: 60px 0 0;
  }
}

.sec10 .intro {
  text-align: left;
}

@media screen and (min-width: 600px) {
  .sec10 .intro {
    margin-bottom: 50px;
    text-align: center;
  }
}

.sec10 .ol1 {
  list-style-type: none;
  padding-left: 115px;
  background: url(/sales/img/sp/sec10-bg.jpg) 0 0/100px no-repeat;
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 {
    display: flex;
    align-items: flex-start;
    width: 961px;
    margin: 0 auto 70px;
    padding: 0;
    background: url(/sales/img/sec10-bg.jpg) 0 0/100% no-repeat;
  }
}

.sec10 .ol1 .li {
  padding-top: 6px;
  height: 125px;
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 .li {
    width: 188px;
    height: 334px;
    padding-top: 0;
  }
}

.sec10 .ol1 .h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 .h3 {
    height: 60px;
    margin-bottom: 160px;
    padding-left: 40px;
    color: #fff;
    line-height: 1.2;
  }
}

.sec10 .ol1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 7px;
  background: #005EAB;
  border-radius: 50%;
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 .icon {
    background: #fff;
  }
}

.sec10 .ol1 .icon path {
  fill: #fff;
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 .icon path {
    fill: #005EAB;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 p {
    padding: 10px;
    font-size: 14px;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .ol1 .li:first-child .h3 {
    padding-left: 15px;
  }
}

.sec10 .child1 {
  background: #F0F5F9;
  padding: 45px 0 30px;
}

@media screen and (min-width: 600px) {
  .sec10 .child1 {
    justify-content: center;
    padding: 40px 0 44px;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .container {
    width: 890px;
  }
}

.sec10 .child1 .img {
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .img {
    order: 2;
  }
}

.sec10 .child1 .img img {
  width: 90%;
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .img img {
    width: 345px;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .content {
    order: 1;
    padding: 0;
  }
}

.sec10 .child1 .ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .ul {
    width: 488px;
    margin: 0 auto 40px;
  }
}

.sec10 .child1 .li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 6px);
  margin-bottom: 12px;
  padding: 17px 5px;
  border-radius: 15px 5px 15px 5px;
  background: #005EAB;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec10 .child1 .li {
    width: 238px;
    height: 88px;
    font-size: 16px;
  }
}

.sec10 .child1 p {
  text-align: center;
}

.sec10 .child2 {
  padding: 46px 0 8px;
}

@media screen and (min-width: 600px) {
  .sec10 .child2 {
    padding: 54px 0 31px;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .child2 .col2 {
    justify-content: center;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .child2 img {
    width: 381px;
  }
}

@media screen and (min-width: 600px) {
  .sec10 .child2 .content {
    padding: 75px 0 0 40px;
  }
}

.sec10 .child2 .title {
  display: block;
  margin-bottom: 10px;
  color: #003B6B;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec10 .child2 .title {
    text-align: left;
  }
}

.sec10 .child2 .ol2 {
  list-style: none;
}

.sec10 .child2 .li {
  margin-bottom: 20px;
}

.sec10 .child2 .h3 {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 5px;
  font-size: 17px;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .sec10 .child2 .h3 {
    font-size: 24px;
  }
}

.sec10 .child2 .icon {
  margin-right: 5px;
  width: 30px;
  height: 14px;
}

@media screen and (min-width: 600px) {
  .sec10 .child2 .icon {
    width: 44px;
    height: 20px;
  }
}

.sec10 .child2 p {
  padding-left: 35px;
}

@media screen and (min-width: 600px) {
  .sec10 .child2 p {
    padding-left: 50px;
    font-size: 14px;
  }
}

.sec11 {
  padding-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .sec11 {
    padding: 60px 0 0;
  }
}

.sec11 .container {
  padding: 0;
}

@media screen and (min-width: 600px) {
  .sec11 .container {
    width: 920px;
  }
}

.sec11 .h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 40px;
  margin-bottom: 20px;
  padding: 0 15px;
  background: #003B6B;
  font-size: 17px;
  color: #fff;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  .sec11 .h3 {
    padding: 0 13px;
    border-radius: 2px;
  }
}

.sec11 .h3 .icon {
  margin-right: 5px;
}

@media screen and (min-width: 600px) {
  .sec11 .h3 .icon {
    width: 20px;
    margin-right: 10px;
  }
}

.sec11 .box {
  width: calc(100% - 30px);
  margin: 0 auto 30px;
  border: 1px solid #005EAB;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 600px) {
  .sec11 .box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: none;
    box-shadow: none;
  }
}

@media screen and (min-width: 600px) {
  .sec11 .ul {
    width: 300px;
    border: 1px solid #005EAB;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  }
}

.sec11 .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid #005EAB;
  color: #005EAB;
  transition: all .3s ease;
}

@media screen and (min-width: 600px) {
  .sec11 .link {
    height: 64px;
    font-weight: bold;
    font-size: 16px;
  }
}

.sec11 .link:hover {
  opacity: 0.5;
}

.sec11 .link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #005EAB;
  border-right: 2px solid #005EAB;
  transform: rotate(45deg) translateY(-50%);
}

.sec11 .icon {
  width: 22px;
  margin-right: 10px;
}

@media screen and (min-width: 600px) {
  .sec11 .li:last-child .link {
    border-bottom: none;
  }
}

.sec11 .ul:last-child .li:last-child .link {
  border-bottom: none;
}

@media screen and (min-width: 600px) {
  .sec11 .ul:first-child {
    border-radius: 6px 0 0 6px;
  }
}

@media screen and (min-width: 600px) {
  .sec11 .ul:last-child {
    border-radius: 0 6px 6px 0;
  }
}

.sec12 {
  padding-top: 0;
}

@media screen and (min-width: 600px) {
  .sec12 {
    padding: 30px 0 10px;
  }
}

.faq_dl {
  margin-bottom: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 600px) {
  .faq_dl {
    margin-bottom: 15px;
  }
}

.faq_dl .toggle {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .faq_dl .toggle {
    width: 22px;
    height: 22px;
  }
}

.faq_dl .toggle:before, .faq_dl .toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #fff;
  transform: translate(-50%, -50%);
}

.faq_dl .toggle:before {
  width: 14px;
  height: 2px;
}

@media screen and (min-width: 600px) {
  .faq_dl .toggle:before {
    width: 22px;
    height: 3px;
  }
}

.faq_dl .toggle:after {
  width: 2px;
  height: 14px;
}

@media screen and (min-width: 600px) {
  .faq_dl .toggle:after {
    width: 3px;
    height: 22px;
  }
}

.faq_dl .dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 12px 18px 10px;
  border-radius: 6px;
  background: #005EAB;
  color: #fff;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .faq_dl .dt {
    padding: 7px 25px;
    font-size: 17px;
    font-weight: 500;
  }
}

.faq_dl .dt .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: none;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
}

@media screen and (min-width: 600px) {
  .faq_dl .dt .icon {
    width: 33px;
    height: 33px;
    margin-right: 10px;
    font-size: 20px;
  }
}

.faq_dl .dt .text {
  padding-right: 20px;
  flex: 1;
}

.faq_dl .dt.is-active .toggle:after {
  display: none;
}

.faq_dl .dd {
  display: none;
}

.faq_dl .dd-inner {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid #005EAB;
  border-radius: 0 0 6px 6px;
}

@media screen and (min-width: 600px) {
  .faq_dl .dd-inner {
    position: relative;
    flex-direction: column;
    padding: 30px 70px;
  }
}

@media screen and (min-width: 600px) {
  .faq_dl .dd-inner:before {
    content: "";
    position: absolute;
    top: 37px;
    left: 0;
    display: block;
    height: 1px;
    width: 64px;
    background: #005EAB;
  }
}

@media screen and (min-width: 600px) {
  .faq_dl .dd img {
    width: 74px;
    margin-bottom: 20px;
  }
}

.faq_dl .dd strong {
  background: linear-gradient(to bottom, transparent calc(100% - 8px), #FFE7A0 calc(100% - 8px));
}

.faq_dl .is-active {
  border-radius: 6px 6px 0 0;
}

@media screen and (min-width: 600px) {
  .sec13 {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 600px) {
  .sec13 .container {
    width: 928px;
  }
}

.sec13 .col3 {
  margin-bottom: 25px;
}

.sec13 .col3 .li {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .sec13 .col3 .li {
    width: auto;
  }
}

.sec13 .link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 0;
  border-bottom: 1px dashed #003B6B;
  font-size: 14px;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .sec13 .link {
    flex-direction: column;
    width: 296px;
    height: 248px;
    padding: 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-bottom: none;
    background: #fff;
  }
}

.sec13 .link .text {
  padding-left: 10px;
}

@media screen and (min-width: 600px) {
  .sec13 .link .text {
    width: 100%;
    padding: 6px 15px;
  }
}

.sec13 .img {
  width: 96px;
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .sec13 .img {
    width: 100%;
    height: 184px;
  }
}

.sec13 .button_blue {
  padding: 10px 30px;
}

@media screen and (min-width: 600px) {
  .sec13 .button_blue {
    width: 265px;
    margin: auto;
  }
}

@media screen and (min-width: 600px) {
  .ctSearch .ctSearchList {
    align-items: flex-start;
  }
}

@media screen and (min-width: 600px) {
  .ctSearch .ctSearchList li a {
    height: auto;
  }
}

.cta_last {
  background-size: auto auto;
  background-color: #F6F6F6;
  background-image: repeating-linear-gradient(315deg, transparent, transparent 1px, #f0f0f0 1px, #f0f0f0 4px);
  color: #000;
}

/* 2021.5 */

.p-mv {
  background-color: #013b6b;
  background-image: url(/sales/real_estate/img/mv_bg01@sp.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 829px auto;
}

@media screen and (min-width: 600px) {
  .p-mv {
    background-image: url(/sales/real_estate/img/mv_bg01@pc.jpg), linear-gradient(90deg, #013b6b 0%, #013b6b 40%, #fff 60%, #fff 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: auto, auto;
  }
}

@media screen and (min-width: 600px) {
  .p-mv .container {
    position: relative;
    height: 360px;
  }
}

.p-mv__head {
  height: 311px;
  padding-top: 60px;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .p-mv__head {
    height: auto;
    padding-top: 80px;
  }
}

.p-mv__head h1 .category {
  display: inline-block;
  position: relative;
  margin-bottom: 9px;
  padding-right: 3px;
  line-height: 1.375;
  font-size: 26px;
}

@media screen and (min-width: 600px) {
  .p-mv__head h1 .category {
    font-size: 34px;
  }
}

.p-mv__head h1 .category::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid #fff;
}

.p-mv__head h1 .category .em {
  color: #B9D3F7;
}

.p-mv__head h1 .large {
  display: block;
  margin-bottom: 7px;
  line-height: 1.4375;
  font-size: 26px;
}

@media screen and (min-width: 600px) {
  .p-mv__head h1 .large {
    margin-bottom: 9px;
    line-height: 1.22727;
    font-size: 44px;
  }
}

.p-mv__lede {
  font-size: 15px;
}

@media screen and (min-width: 600px) {
  .p-mv__lede {
    font-size: 16px;
  }
}

.p-mv__lower {
  margin: 0 -15px;
  padding: 15px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .p-mv__lower {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
}

.p-mv__lower .bar {
  margin-bottom: 10px;
  padding: 0 15px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-mv__lower .bar {
    margin-bottom: 8px;
    padding: 0;
  }
}

.p-mv__lower .bar img {
  max-width: 100%;
}

@media screen and (min-width: 600px) {
  .p-mv__lower .bar img {
    width: 240px;
  }
}

.p-mv.type2 {
  background-image: url(/sales/advertising/img/mv_bg01@sp.jpg);
}

@media screen and (min-width: 600px) {
  .p-mv.type2 {
    background-image: url(/sales/advertising/img/mv_bg01@pc.jpg), linear-gradient(90deg, #013b6b 0%, #013b6b 40%, #fff 60%, #fff 100%);
  }
}

.p-mv.type2 .p-mv__head .h1 .em {
  color: #FFDB6C;
}

.p-mv.type3 {
  background-image: url(/sales/human_resources/img/mv_bg01@sp.jpg);
}

@media screen and (min-width: 600px) {
  .p-mv.type3 {
    background-image: url(/sales/human_resources/img/mv_bg01@pc.jpg), linear-gradient(90deg, #013b6b 0%, #013b6b 40%, #fff 60%, #fff 100%);
  }
}

.p-mv.type3 .p-mv__head .h1 .em {
  color: #98EBFF;
}

.sec .p-sec__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 16px;
  color: #003B6B;
}

@media screen and (min-width: 600px) {
  .sec .p-sec__title {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.sec .p-sec__title .sub_text {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec .p-sec__title .sub_text {
    font-size: 18px;
  }
}

.sec .p-sec__title .text {
  margin-bottom: 6px;
  border-bottom: 4px solid #FFD600;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .sec .p-sec__title .text {
    font-size: 36px;
  }
}

.sec .p-intro {
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.73;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .sec .p-intro {
    text-align: center;
  }
}

.sec .p-intro.color1 {
  color: #005EAB;
}

.sec.pad1 {
  padding: 20px 0 30px;
}

@media screen and (min-width: 600px) {
  .sec.pad1 {
    padding: 35px 0 50px;
  }
}

.sec.pad2 {
  padding: 45px 0 30px;
}

@media screen and (min-width: 600px) {
  .sec.pad2 {
    padding: 60px 0 50px;
  }
}

.sec.color1 {
  background-color: #E6EFF6;
}

.sec.color2 {
  background-color: #F3F3F3;
}

.p-contWid--1, .p-flexColmn.wid--1, .p-floatColmn.wid--1 {
  width: auto !important;
  max-width: 586px;
  margin: 0 auto;
}

.p-contWid--2, .p-flexColmn.wid--2, .p-floatColmn.wid--2 {
  width: auto !important;
  max-width: 786px;
  margin: 0 auto;
}

.p-indexList {
  padding: 20px 20px 25px;
  border-radius: 12px;
  border: 1px solid #005EAB;
  background: #fff;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .p-indexList {
    padding: 30px;
  }
}

.p-indexList__ttl {
  margin-bottom: 10px;
  line-height: 1.375;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.p-indexList .ul {
  max-width: 675px;
  margin: 0 auto;
}

.p-indexList .link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 6px 0;
  padding-right: 20px;
  border-bottom: 1px dashed #333333;
  font-size: 16px;
  font-weight: bold;
  color: #005EAB;
  line-height: 1.2;
  letter-spacing: 0.1em;
  transition: opacity .3s ease;
}

@media screen and (min-width: 600px) {
  .p-indexList .link {
    padding-right: 50px;
  }
}

.p-indexList .link::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-right: 2px solid #005EAB;
  border-bottom: 2px solid #005EAB;
  transform-origin: center;
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  .p-indexList .link::after {
    right: 21px;
  }
}

@media screen and (min-width: 600px) {
  .p-indexList .link:hover {
    opacity: 0.5;
  }
}

.p-indexList .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #005EAB;
  margin-right: 15px;
  color: #fff;
  font-style: normal;
  letter-spacing: normal;
}

@media screen and (min-width: 600px) {
  .p-flexColmn {
    display: flex;
    flex-wrap: wrap;
  }
}

.p-flexColmn:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .p-flexColmn.wid--1 {
    margin-top: -30px;
  }
}

@media screen and (min-width: 600px) {
  .p-flexColmn.wid--2 {
    margin-top: -30px;
  }
  .p-flexColmn.wid--2 .p-flexColmn__col {
    width: 376px;
  }
  .p-flexColmn.wid--2 .p-flexColmn__col:nth-child(odd) {
    margin-right: 34px;
  }
}

@media screen and (min-width: 600px) {
  .p-flexColmn.wid--3 {
    margin-top: -30px;
  }
  .p-flexColmn.wid--3 .p-flexColmn__col {
    width: 475px;
  }
  .p-flexColmn.wid--3 .p-flexColmn__col:nth-child(odd) {
    margin-right: 50px;
  }
}

.p-flexColmn__col {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .p-flexColmn__col:nth-child(odd) {
    float: left;
  }
  .p-flexColmn__col:nth-child(even) {
    float: right;
  }
}

@media screen and (min-width: 600px) {
  .p-flexColmn.is--only {
    justify-content: center;
  }
  .p-flexColmn.is--only .p-flexColmn__col {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.p-floatColmn {
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .p-floatColmn {
    overflow: hidden;
  }
}

.p-floatColmn:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .p-floatColmn.wid--1 {
    margin-top: -30px;
  }
}

@media screen and (min-width: 600px) {
  .p-floatColmn.wid--2 {
    margin-top: -30px;
  }
  .p-floatColmn.wid--2 .p-floatColmn__col {
    width: 376px;
  }
}

@media screen and (min-width: 600px) {
  .p-floatColmn.wid--3 {
    margin-top: -30px;
  }
  .p-floatColmn.wid--3 .p-floatColmn__col {
    width: 475px;
  }
  .p-floatColmn.wid--3 .p-floatColmn__col:nth-child(odd) {
    margin-right: 50px;
  }
}

.p-floatColmn__col {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .p-floatColmn__col:nth-child(odd) {
    float: left;
  }
  .p-floatColmn__col:nth-child(even) {
    float: right;
  }
}

.p-aboutAdCol img {
  max-width: 100%;
}

.p-aboutAdCol__cont__hd {
  margin-bottom: .5em;
  color: #005EAB;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-aboutAdCol__cont__hd {
    font-size: 24px;
  }
}

.p-covid19-area {
  position: relative;
}

.p-covid19-area img {
  max-width: 100%;
}

.p-covid19-area::before {
  content: '';
  display: block;
  position: absolute;
  top: 100px;
  left: 20px;
  right: 20px;
  bottom: 170px;
  background-image: url(/sales/real_estate/img/bg_pattern_slash01.png);
}

@media screen and (min-width: 600px) {
  .p-covid19-area::before {
    top: 111px;
    max-width: 786px;
    margin: auto;
  }
}

.p-covid19-area__inner {
  position: relative;
}

.p-covid19-area__pic {
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-covid19-area__pic {
    margin-bottom: 30px;
  }
}

.p-covid19-area__chart__head {
  position: relative;
  margin-bottom: 10px;
  padding: 57px 0;
  padding-bottom: calc(130/375 * 100vw);
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__head {
    margin-bottom: 32px;
    padding: 0 0 120px;
    overflow: hidden;
  }
}

.p-covid19-area__chart__head__arw {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 0;
  width: 10px;
  margin: auto;
  background-image: linear-gradient(180deg, #0A9FC2 0%, #005EAB 100%);
}

.p-covid19-area__chart__head__arw::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 38px;
  height: 38px;
  margin: auto;
  border-radius: 50px;
  background-color: #0A9FC2;
  transform: translateX(-50%);
}

.p-covid19-area__chart__head__arw::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 26px 26px 0 26px;
  border-style: solid;
  border-color: #005EAB transparent transparent transparent;
  transform: translateX(-50%);
}

.p-covid19-area__chart__cell {
  position: relative;
  max-width: 525px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 6px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
}

.p-covid19-area__chart__cell+.p-covid19-area__chart__cell {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__cell+.p-covid19-area__chart__cell {
    margin-top: 55px;
  }
  .p-covid19-area__chart__cell+.p-covid19-area__chart__cell.lv2 {
    margin-top: 160px;
  }
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__cell.left {
    float: left;
    max-width: 450px;
  }
  .p-covid19-area__chart__cell.left:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45px;
    right: -15px;
    width: 0;
    height: 0;
    border-width: 14px 0 14px 16px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
  }
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__cell.right {
    float: right;
    max-width: 450px;
  }
  .p-covid19-area__chart__cell.right:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45px;
    left: -15px;
    width: 0;
    height: 0;
    border-width: 14px 16px 14px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
  }
}

.p-covid19-area__chart__cell__pic {
  position: absolute;
  top: calc(-117/375 * 100vw);
  left: calc(-50/375 * 100vw);
  height: calc(137/375 * 100vw);
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__cell__pic {
    top: -147px;
    left: -267px;
    height: auto;
  }
}

.p-covid19-area__chart__cell__pic img {
  max-width: 100%;
  max-height: 100%;
}

.p-covid19-area__chart__cell__hd {
  position: relative;
  margin-bottom: 1.5em;
  line-height: 1.375;
  color: #0A9FC2;
  font-size: 21px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .p-covid19-area__chart__cell__hd {
    font-size: 24px;
  }
}

.p-covid19-area__chart__cell__hd::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -.75em;
  width: 42px;
  height: 1px;
  background-color: #0A9FC2;
}

.p-covid19-area__chart__cell__hd.c1 {
  color: #005EAB;
}

.p-covid19-area__chart__cell__hd.c1::before {
  background-color: #005EAB;
}

.p-panelClm {
  margin-top: -26px;
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .p-panelClm {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
  }
}

.p-panelClm__col {
  margin-top: 26px;
}

@media screen and (min-width: 600px) {
  .p-panelClm.col3 .p-panelClm__col {
    width: 300px;
  }
  .p-panelClm.col3 .p-panelClm__col:not(:nth-child(3n)) {
    position: relative;
    margin-right: 50px;
  }
  .p-panelClm.col3 .p-panelClm__col:not(:nth-child(3n))::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    border-right: 1px dotted #CCC;
  }
}

.p-panelClm--vertical {
  margin-bottom: 54px;
}

@media screen and (min-width: 600px) {
  .p-panelClm--vertical {
    margin-bottom: 108px;
  }
}

.p-panelClm--vertical .p-panelClm__col {
  position: relative;
  margin-bottom: 50px;
}

.p-panelClm--vertical .p-panelClm__col::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  border-bottom: 1px dotted #CCC;
}

.p-tendBox__pic {
  margin-bottom: 8px;
  text-align: center;
}

.p-tendBox__cont__hd {
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.p-tendBox__cont__hd .em {
  font-size: 26px;
}

.p-tendBox__cont> :last-child {
  margin-bottom: 0 !important;
}

.p-bdad-ttl {
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 22px;
  color: #005EAB;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-bdad-ttl {
    margin-bottom: 24px;
    font-size: 26px;
  }
}

.p-bnrList {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .p-bnrList {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 60px;
  }
  .p-bnrList.jobDescription {
    margin-bottom: 30px;
  }
}

.p-bnrList__item {
  max-width: 480px;
  border-radius: 0 6px 6px 0;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  background-color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .p-bnrList__item {
    width: 310px;
  }
}

.p-bnrList__item:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .p-bnrList__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 35px;
  }
}

.p-bnrList__item a {
  display: flex;
  position: relative;
  height: 108px;
}

.p-bnrList__item a::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg) skew(calc((90deg - 104deg) / 2), calc((90deg - 104deg) / 2));
}

.p-bnrList__item a .__pic {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-bnrList__item a .__pic::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 1000ms;
}

.p-bnrList__item a .__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1000ms;
}

.p-bnrList__item a .__txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  width: 180px;
  flex: 0 0 auto;
  padding: 0 30px 0 3px;
  line-height: 1.625;
  color: #fff;
  font-weight: bold;
}

.p-bnrList__item a .__txt::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 200%;
  background-color: #000;
  transform-origin: left bottom;
  transform: skew(30deg);
}

.p-bnrList__item a .__txt .__large {
  line-height: 1.375;
  font-size: 21px;
}

.p-bnrList__item a .__txt .__middle {
  font-size: 18px;
}

@media screen and (min-width: 600px) {
  .p-bnrList__item a:hover .__pic::before {
    opacity: .5;
  }
  .p-bnrList__item a:hover .__pic img {
    transform: scale(1.1);
  }
}

.p-bnrList__item.c1 a .__txt::before {
  background-color: #003B6B;
}

.p-bnrList__item.c2 a .__txt::before {
  background-color: #005EAB;
}

.p-bnrList__item.c3 a .__txt::before {
  background-color: #0A9FC2;
}

.p-benefitPic {
  margin-bottom: 16px;
  text-align: center;
}

.p-benefitBox__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #005EAB;
  font-weight: bold;
}

.p-benefitBox__ttl .__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 40px;
  letter-spacing: normal;
}

@media screen and (min-width: 600px) {
  .p-benefitBox__ttl .__num {
    width: 96px;
    height: 96px;
    margin-right: 12px;
  }
}

.p-benefitBox__ttl .__txt {
  line-height: 1.375;
  font-size: 21px;
}

@media screen and (min-width: 600px) {
  .p-benefitBox__ttl .__txt {
    font-size: 24px;
  }
}

.p-benefitBox__ttl.merit .__num {
  background-image: url(/sales/real_estate/img/ico_merit01.png);
}

.p-benefitBox__ttl.demerit .__num {
  background-image: url(/sales/real_estate/img/ico_demerit01.png);
  color: #FFC000;
}

@media screen and (min-width: 600px) {
  .p-benefitBox__cont {
    padding-left: 30px;
  }
}

.p-jobDes {
  margin-bottom: 30px;
}

.p-jobDes__box:not(:last-child) {
  margin-bottom: 26px;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__head {
    display: flex;
    justify-content: flex-start;
  }
}

.p-jobDes__box__head__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 30px 40px;
  padding-right: 100px;
  border-radius: 10px;
  background-color: #4893D0;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__head__inner {
    min-width: 525px;
    padding: 40px 30px 50px;
    padding-right: 200px;
  }
}

.p-jobDes__box__head__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 106px;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__head__pic {
    width: auto;
    right: 15px;
  }
}

.p-jobDes__box__head__pic img {
  max-width: 100%;
}

.p-jobDes__box__head__txt .__en {
  margin-bottom: 0.25em;
  color: #78DCF4;
  font-size: 12px;
}

.p-jobDes__box__head__txt .__ja {
  line-height: 1.375;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__head__txt .__ja {
    font-size: 20px;
  }
}

.p-jobDes__box__head__txt .__ja .em {
  font-size: 22px;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__head__txt .__ja .em {
    font-size: 28px;
  }
}

.p-jobDes__box__cont {
  margin-top: -25px;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__cont {
    display: flex;
    justify-content: flex-end;
  }
}

.p-jobDes__box__cont__inner {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
}

@media screen and (min-width: 600px) {
  .p-jobDes__box__cont__inner {
    width: 893px;
  }
}

@media screen and (min-width: 600px) {
  .p-jobDes__box:nth-child(even) .p-jobDes__box__head {
    justify-content: flex-end;
  }
}

.p-jobDes__box:nth-child(even) .p-jobDes__box__head__inner {
  padding-right: 30px;
  padding-left: 100px;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box:nth-child(even) .p-jobDes__box__head__inner {
    justify-content: flex-end;
    padding-left: 200px;
    text-align: right;
  }
}

.p-jobDes__box:nth-child(even) .p-jobDes__box__head__pic {
  right: auto;
  left: 0;
}

@media screen and (min-width: 600px) {
  .p-jobDes__box:nth-child(even) .p-jobDes__box__head__pic {
    left: 15px;
  }
}

@media screen and (min-width: 600px) {
  .p-jobDes__box:nth-child(even) .p-jobDes__box__cont {
    justify-content: flex-start;
  }
}

.p-btnWrap--wid1 {
  max-width: 325px;
  margin: 30px auto;
}

.p-qualSkil__box {
  position: relative;
  z-index: 0;
}

.p-qualSkil__box:not(:last-child) {
  margin-bottom: 26px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box:not(:last-child) {
    margin-bottom: 60px;
  }
}

.p-qualSkil__box::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 30px;
  left: -15px;
  bottom: 182px;
  width: calc(100vw - 45px);
  background-color: #ADDAE5;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box::before {
    left: auto;
    right: 207px;
    bottom: 90px;
    width: 100vw;
  }
}

.p-qualSkil__box__head {
  display: flex;
  justify-content: flex-start;
  margin-left: -15px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__head {
    margin-left: 0;
  }
}

.p-qualSkil__box__head__inner {
  display: flex;
  align-items: center;
}

.p-qualSkil__box__head__pic {
  width: 130px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__head__pic {
    width: auto;
  }
}

.p-qualSkil__box__head__pic img {
  max-width: 100%;
}

.p-qualSkil__box__head__txt {
  padding-top: 30px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__head__txt {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-qualSkil__box__head__txt .__en {
  margin-bottom: 0.25em;
  color: #fff;
  font-size: 12px;
}

.p-qualSkil__box__head__txt .__ja {
  line-height: 1.375;
  font-size: 26px;
  font-weight: bold;
}

.p-qualSkil__box__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__list {
    align-items: center;
  }
}

.p-qualSkil__box__list__item {
  width: calc(100% - 15px);
  padding: 30px 15px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__list__item {
    width: 860px;
    padding: 30px 50px;
  }
}

.p-qualSkil__box__list__item:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__list__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.p-qualSkil__box__list__item__ttl {
  margin-bottom: .5em;
  line-height: 1.375;
  color: #005EAB;
  font-size: 22px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box__list__item__ttl {
    font-size: 24px;
  }
}

.p-qualSkil__box:nth-child(even)::before {
  left: auto;
  right: -15px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box:nth-child(even)::before {
    left: 207px;
    right: auto;
  }
}

.p-qualSkil__box:nth-child(even) .p-qualSkil__box__head {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: -15px;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box:nth-child(even) .p-qualSkil__box__head {
    margin-right: 0;
  }
}

.p-qualSkil__box:nth-child(even) .p-qualSkil__box__head__inner {
  flex-direction: row-reverse;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box:nth-child(even) .p-qualSkil__box__head__inner {
    justify-content: flex-end;
    padding-left: 150px;
    text-align: right;
  }
}

.p-qualSkil__box:nth-child(even) .p-qualSkil__box__list {
  align-items: flex-start;
}

@media screen and (min-width: 600px) {
  .p-qualSkil__box:nth-child(even) .p-qualSkil__box__list {
    align-items: center;
  }
}

@media screen and (min-width: 600px) {
  .p-carrierBox {
    display: flex;
  }
}

.p-carrierBox__pic {
  margin-top: -24px;
  margin-bottom: 5px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-carrierBox__pic {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 auto;
    width: 206px;
    margin: 0 40px 0 0;
    text-align: center;
  }
}

.p-carrierBox__cont__hd {
  margin-bottom: 0.75em;
  line-height: 1.5;
  color: #005EAB;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-carrierBox__cont__hd {
    font-size: 24px;
    text-align: left;
  }
}

.p-carrierBox__cont> :last-child {
  margin-bottom: 0 !important;
}

.p-seekSlider {
  max-width: 1020px;
  margin: 0 auto 40px;
}

.p-seekSlider__item {
  padding: 10px;
  width: 320px;
}

.p-seekSlider__item__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 30px;
  border-top: 10px solid #005EAB;
  border-radius: 6px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  line-height: 1.5;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 300ms;
}

.p-seekSlider__item__inner:hover {
  opacity: 0.7;
}

.p-seekSlider__item__state {
  position: absolute;
  top: 4px;
  right: 20px;
  color: #D10042;
}

.p-seekSlider__item__name {
  margin-bottom: 0.25em;
  color: #003B6B;
}

.p-seekSlider__item__title {
  flex: 1 1 auto;
  margin-bottom: 0.75em;
  font-size: 18px;
}

.p-seekSlider__item__detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: -14px;
}

.p-seekSlider__item__detail dt {
  flex: 0 0 90px;
  margin-top: 14px;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px auto;
  color: #003B6B;
}

.p-seekSlider__item__detail dt.job {
  background-image: url(/sales/real_estate/img/ico_occupation01.png);
}

.p-seekSlider__item__detail dt.income {
  background-image: url(/sales/real_estate/img/ico_income01.png);
}

.p-seekSlider__item__detail dt.location {
  background-image: url(/sales/real_estate/img/ico_location01.png);
}

.p-seekSlider__item__detail dd {
  flex: 0 0 calc(100% - 90px);
  margin-top: 14px;
  color: #333;
}

.p-seekSlider .slick-dots li button:before {
  font-size: 12px;
}

.p-seekSlider .slick-dots li.slick-active button:before {
  color: #1562B2;
  opacity: 1;
}

.u-widAuto {
  width: auto !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

/* /2021.5 */

/* 2021.7 */

.top-heroArea__outer {
  position: relative;
}

.top-heroArea {
  position: relative;
  width: 100%;
  min-height: 444px;
  padding-top: 32.47988295537674%;
}

@media screen and (max-width: 599px) {
  .top-heroArea {
    display: flex;
    align-items: flex-end;
    min-height: 0px;
    height: 112vw;
    padding-top: 0;
  }
}

.top-heroArea__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  min-height: 444px;
  padding-top: calc(444/1367 * 100%);
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 599px) {
  .top-heroArea__bg {
    min-width: 0;
    min-height: 0px;
    padding-top: 112%;
  }
}

.top-heroArea__bg__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
}

.lazyloaded .top-heroArea__bg__item {
  -webkit-animation: bgAnime 18s 0s infinite;
  animation: bgAnime 18s 0s infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.top-heroArea__bg__item.img1 {
  z-index: 2;
}

.top-heroArea__bg__item.img1 {
  background-image: url(/resource/sales/img/top/heroArea_bg01@pc.jpg);
}

@media screen and (max-width: 599px) {
  .top-heroArea__bg__item.img1 {
    background-image: url(/resource/sales/img/top/heroArea_bg01@sp.jpg);
  }
}

.top-heroArea__bg__item.img2 {
  z-index: 1;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.top-heroArea__bg__item.img2.lazyloaded {
  background-image: url(/resource/sales/img/top/heroArea_bg02@pc.jpg);
}

@media screen and (max-width: 599px) {
  .top-heroArea__bg__item.img2.lazyloaded {
    background-image: url(/resource/sales/img/top/heroArea_bg02@sp.jpg);
  }
}

.top-heroArea__bg__item.img3 {
  z-index: 0;
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.top-heroArea__bg__item.img3.lazyloaded {
  background-image: url(/resource/sales/img/top/heroArea_bg03@pc.jpg);
}

@media screen and (max-width: 599px) {
  .top-heroArea__bg__item.img3.lazyloaded {
    background-image: url(/resource/sales/img/top/heroArea_bg03@sp.jpg);
  }
}

@-webkit-keyframes bgAnime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  70% {
    transform: scale(1.13) rotate(0.1deg);
  }
  100% {
    opacity: 0;
  }
}

@keyframes bgAnime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  70% {
    transform: scale(1.13) rotate(0.1deg);
  }
  100% {
    opacity: 0;
  }
}

.top-heroArea__inner {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 599px) {
  .top-heroArea__inner {
    position: static;
    padding-bottom: 24px;
    transform: none;
  }
}

.top-heroArea__content {
  padding: 0 53px;
}

@media screen and (max-width: 599px) {
  .top-heroArea__content {
    width: 100%;
    padding: 0 24px;
  }
}

.top-heroArea__catchOuter {
  margin: 0 auto 32px;
  width: 320px;
  font-size: 0;
  text-align: center;
}

_:-ms-input-placeholder, :root .top-heroArea__catchOuter {
  height: 30px;
}

.top-heroArea__catchOuter .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

_:-ms-input-placeholder, :root .top-heroArea__catchOuter .st0 {
  stroke-width: 10;
}

.top-heroArea__catchOuter svg {
  opacity: 0;
}

@media screen and (max-width: 599px) {
  .top-heroArea__catchOuter {
    position: absolute;
    top: 28px;
    left: -13px;
    width: 268px;
  }
}

.top-heroArea__textOuter {
  margin-bottom: 32px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  letter-spacing: .08em;
}

@media screen and (max-width: 599px) {
  .top-heroArea__textOuter {
    margin-bottom: 24px;
    text-align: right;
  }
}

.top-heroArea__textOuter .mask-square {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.top-heroArea__textOuter .mask-square .__inner {
  opacity: 0;
}

.top-heroArea__textOuter .mask-square::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #003B6B;
  transform: scaleX(0) translateX(0);
  transform-origin: left;
}

@-webkit-keyframes showElm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showElm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes openMask {
  0% {
    transform: scaleX(0) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
}

@keyframes openMask {
  0% {
    transform: scaleX(0) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
}

@-webkit-keyframes closeMask {
  0% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}

@keyframes closeMask {
  0% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}

.top-heroArea__title {
  font-size: 2.5rem;
}

.lazyloaded .top-heroArea__title .__inner {
  -webkit-animation: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s forwards showElm;
  animation: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s forwards showElm;
}

.lazyloaded .top-heroArea__title::after {
  -webkit-animation: 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.3s alternate forwards openMask, 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s alternate forwards closeMask;
  animation: 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.3s alternate forwards openMask, 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s alternate forwards closeMask;
}

@media screen and (max-width: 599px) {
  .top-heroArea__title {
    font-size: 1.5rem;
  }
}

.top-heroArea__titleSub {
  font-size: 1.5rem;
  font-weight: normal;
}

.lazyloaded .top-heroArea__titleSub .__inner {
  -webkit-animation: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards showElm;
  animation: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards showElm;
}

.lazyloaded .top-heroArea__titleSub::after {
  -webkit-animation: 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s alternate forwards openMask, 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s alternate forwards closeMask;
  animation: 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s alternate forwards openMask, 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s alternate forwards closeMask;
}

@media screen and (max-width: 599px) {
  .top-heroArea__titleSub {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 600px) {
  .top-heroArea__linkOuter .button_cta {
    width: 361px;
    height: 58px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-heroArea__linkOuter .button_cta .icontext {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.0625rem;
  }
  .top-heroArea__linkOuter .button_cta .text {
    font-size: .9375rem;
  }
  .top-heroArea__linkOuter .button_cta::after {
    width: 26px;
    height: 24px;
    background-position: center;
    background-size: contain;
  }
}

.top-expArea {
  padding: 24px 0 35px;
  background: url(/resource/top/img/bg_stripes_01.png) #E6EFF6;
}

.top-expArea__ttl {
  margin-bottom: 1em;
  line-height: 1.5;
  color: #003B6B;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.top-expArea__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .top-expArea__list {
    padding: 0 24px;
  }
}

.top-expArea__list__item {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 600px) {
  .top-expArea__list__item {
    width: 160px;
  }
  .top-expArea__list__item:not(:last-child) {
    margin-right: 8px;
  }
}

@media screen and (max-width: 599px) {
  .top-expArea__list__item {
    width: calc((100% - 8px) / 2);
  }
  .top-expArea__list__item:nth-child(odd) {
    margin-right: 8px;
  }
  .top-expArea__list__item:nth-child(n+3) {
    margin-top: 8px;
  }
}

.top-expArea__list__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  border: 1px solid #005EAB;
  border-radius: 6px;
  background-color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.top-expArea__list__item a>* {
  transition: opacity 300ms;
}

.top-expArea__list__item a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0px;
  width: 8px;
  height: 12px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_arw_blue01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 300ms;
}

.top-expArea__list__item a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.top-expArea__list__item a:hover>*, .top-expArea__list__item a:hover::after {
  opacity: 0.7;
}

.top-sec--bg1 {
  padding: 80px 0;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .top-sec--bg1 {
    padding: 48px 0 56px;
  }
}

.top-sec--bg2 {
  padding: 60px 0;
  background-color: #E6EFF6;
}

@media screen and (max-width: 599px) {
  .top-sec--bg2 {
    padding: 56px 0;
  }
}

.top-sec--bg3 {
  padding: 60px 0;
  background: url(/resource/top/img/bg_stripes_01.png) #E6EFF6;
}

@media screen and (max-width: 599px) {
  .top-sec--bg3 {
    padding: 56px 0;
  }
}

.top-sec--bg4 {
  margin-top: 56px;
  padding: 56px 0;
  background-image: url(/resource/sales/img/top/bg_sec04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .top-sec--bg4 {
    margin-top: 40px;
    padding-top: 32px;
  }
}

.top-sec__hd2 {
  margin-bottom: 32px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .top-sec__hd2 {
    margin-bottom: 24px;
  }
}

.top-sec__hd2>span {
  display: inline-block;
  position: relative;
  border-bottom: 3px solid #333;
  line-height: 1.375;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .top-sec__hd2>span {
    font-size: 1.2rem;
  }
}

.top-sec__hd3 {
  margin-bottom: 20px;
  line-height: 1.375;
  color: #005EAB;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
}

.top-sec__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
}

@media screen and (max-width: 599px) {
  .top-sec__inner {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.top-sec__inner> :last-child {
  margin-bottom: 0;
}

.top-sec__inner p+p {
  margin-top: 1.8em;
}

@media screen and (min-width: 600px) {
  .top-sec__inner.wid--1 {
    max-width: 920px;
    margin: 0 auto;
  }
}

.top-sec strong {
  background: linear-gradient(to bottom, transparent calc(100% - 8px), #FFE7A0 calc(100% - 8px));
}

.top-sec__txt2 {
  position: relative;
  color: #003B6B;
  font-size: 1.4375rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .top-sec__txt2 {
    margin-bottom: 16px;
    font-size: 1.1875rem;
    text-align: center;
  }
}

.top-sec__img2 {
  margin-top: -20px;
}

@media screen and (max-width: 599px) {
  .top-sec__img2 {
    margin-top: 0;
  }
}

@media screen and (max-width: 599px) {
  .top-sec__img2 img {
    max-width: 90% !important;
  }
}

.top-sec__arwHd {
  position: relative;
  margin-bottom: 90px;
  padding: 24px 0;
  background-color: #003B6B;
  color: #fff;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .16em;
}

@media screen and (max-width: 599px) {
  .top-sec__arwHd {
    margin-bottom: 50px;
    padding: 7px 0;
    font-size: 1.5rem;
  }
}

.top-sec__arwHd::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 16px 20px 0 20px;
  border-style: solid;
  border-top-color: #003B6B;
}

.top-searchArea {
  max-width: 966px;
  margin: 0 auto 80px;
  padding: 24px 42px 50px;
  border-radius: 12px;
  background-color: #337EBB;
}

@media screen and (max-width: 599px) {
  .top-searchArea {
    margin-bottom: 56px;
    padding: 8px 8px 32px;
  }
}

.top-searchArea__ttl {
  margin-bottom: 40px;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
}

.top-searchArea__ttl>span {
  display: inline-block;
  padding: 0 60px 5px;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 599px) {
  .top-searchArea__ttl>span {
    display: block;
    padding: 0 0 5px;
  }
}

.top-searchArea__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .top-searchArea__inner {
    flex-direction: column;
  }
}

.top-searchArea__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

@media screen and (max-width: 599px) {
  .top-searchArea__content {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
    padding: 0 18px;
  }
}

.top-searchArea__item {
  position: relative;
}

@media screen and (min-width: 600px) {
  .top-searchArea__item:not(:last-child) {
    margin-right: 40px;
  }
}

@media screen and (max-width: 599px) {
  .top-searchArea__item {
    width: 100%;
  }
  .top-searchArea__item:not(:last-child) {
    margin-bottom: 32px;
  }
}

.top-searchArea__item:not(:last-child)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -28px;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_searchArea_cross01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 599px) {
  .top-searchArea__item:not(:last-child)::after {
    top: auto;
    bottom: -24px;
    right: 0;
    left: 0;
  }
}

.top-searchArea__buttonSelectOuter {
  position: relative;
  z-index: 0;
  border: 2px solid #333333;
  background-color: #fff;
}

.top-searchArea__buttonSelectLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 35px;
  line-height: 1.375;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.top-searchArea__buttonSelectLabel img {
  flex: 0 0 auto;
  margin-right: 10px;
}

.top-searchArea__buttonSelectLabel>span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

_:-ms-input-placeholder, :root .top-searchArea__buttonSelectLabel>span {
  display: block;
  line-height: 1.375em;
  white-space: nowrap;
}

.top-searchArea__buttonSelectLabel::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 14px;
  height: 8px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_searchArea_arw01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.top-searchArea__buttonSelect {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  cursor: pointer;
  width: 210px;
  height: 44px;
  opacity: 0;
}

@media screen and (max-width: 599px) {
  .top-searchArea__buttonSelect {
    width: 100%;
  }
}

.top-searchArea__submitButton {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-color: #003B6B;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: bold;
  letter-spacing: .1em;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .top-searchArea__submitButton {
    width: 200px;
  }
}

.top-searchArea__submitButton:hover {
  background-color: #fff;
  border-color: #003B6B;
  color: #003B6B;
}

.top-column {
  display: flex;
}

@media screen and (max-width: 599px) {
  .top-column {
    flex-direction: column;
  }
}

.top-column--type1 {
  width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .top-column--type1 {
    width: auto;
  }
}

.top-column--type2 {
  width: 950px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .top-column--type2 {
    width: auto;
  }
}

.top-column__img {
  flex: 0 0 auto;
  margin-right: 60px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .top-column__img {
    margin-right: 0;
  }
}

.top-column__img.unique1 {
  margin-top: -28px;
}

@media screen and (max-width: 599px) {
  .top-column__img.unique1 {
    margin-bottom: -20px;
  }
}

@media screen and (max-width: 599px) {
  .top-column__img.unique2 {
    margin-top: -28px;
    margin-bottom: -20px;
  }
}

.top-column__img img {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.top-clmLink__item a {
  display: block;
  color: inherit;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 300ms;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item a {
    display: flex;
  }
}

.top-clmLink__item a>* {
  transition: opacity 300ms;
}

.top-clmLink__item a:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.top-clmLink__item a:hover .top-clmLink__item__img img {
  transform: scale(1.1);
}

.top-clmLink__item a:hover>* {
  opacity: .7;
}

.top-clmLink__item__img {
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item__img {
    flex: 0 0 auto;
    width: 128px;
  }
}

.top-clmLink__item__img img {
  transform-origin: center;
  transition: transform 300ms;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top-clmLink__item__box {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 16px;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item__box {
    width: 100%;
    min-height: 100px;
    padding-right: 25px;
  }
}

.top-clmLink__item__box::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 12px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_arw_gray01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 599px) {
  .top-clmLink__item__box::after {
    right: 10px;
  }
}

.top-sector {
  margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
  .top-sector {
    margin-bottom: 56px;
  }
}

.top-sector> :last-child {
  margin-bottom: 0;
}

.top-boxLink {
  margin: 0 auto 30px;
  border: 1px solid #fff;
  border-radius: 6px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.top-boxLink ul {
  background-color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .top-boxLink {
    display: flex;
    justify-content: space-between;
    width: 920px;
    border: none;
    box-shadow: none;
  }
}

@media screen and (min-width: 600px) {
  .top-boxLink .ul {
    width: 300px;
    border: 1px solid #fff;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  }
}

.top-boxLink .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid #fff;
  background-color: #005EAB;
  color: #fff;
  transition: all .3s ease;
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .top-boxLink .link {
    height: 64px;
    font-weight: bold;
    font-size: 16px;
  }
}

.top-boxLink .link:hover {
  opacity: 0.7;
}

.top-boxLink .link:hover::after {
  right: 16px;
}

.top-boxLink .link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: right 300ms;
}

.top-boxLink .icon {
  width: 22px;
  margin-right: 10px;
}

@media screen and (min-width: 600px) {
  .top-boxLink .li:last-child .link {
    border-bottom: none;
  }
}

.top-boxLink .ul:last-child .li:last-child .link {
  border-bottom: none;
}

@media screen and (min-width: 600px) {
  .top-boxLink .ul:first-child {
    border-radius: 6px 0 0 6px;
  }
}

@media screen and (max-width: 599px) {
  .top-boxLink .ul:first-child {
    border-radius: 6px 6px 0 0;
  }
}

@media screen and (min-width: 600px) {
  .top-boxLink .ul:last-child {
    border-radius: 0 6px 6px 0;
  }
}

@media screen and (max-width: 599px) {
  .top-boxLink .ul:last-child {
    border-radius: 0 0 6px 6px;
  }
}

.top-linkBlock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 702px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .top-linkBlock {
    flex-direction: column;
    width: auto;
  }
}

.top-linkBlock__item {
  width: 100%;
  border-radius: 6px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .top-linkBlock__item {
    width: 343px;
  }
  .top-linkBlock__item:nth-child(odd) {
    margin-right: 16px;
  }
  .top-linkBlock__item:nth-child(n+3) {
    margin-top: 12px;
  }
}

@media screen and (max-width: 599px) {
  .top-linkBlock__item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.top-linkBlock__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 72px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: 1px solid #005EAB;
  border-radius: 6px;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 300ms, opacity 300ms;
}

.top-linkBlock__item a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 12px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_arw_blue01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: right 300ms;
}

.top-linkBlock__item a:hover {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
}

.top-linkBlock__item a:hover::after {
  right: 12px;
}

.top-introList {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .top-introList {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 1fr;
    grid-gap: 12px 0;
    margin: 0 5%;
  }
}

@media screen and (min-width: 600px) {
  .top-introList__item {
    flex: 0 0 343px;
    width: 343px;
  }
  .top-introList__item:not(:last-child) {
    margin-right: 9px;
  }
}

.top-introList__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  transition: 300ms;
}

.top-introList__item a>* {
  transition: 300ms;
}

.top-introList__item a:hover {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.top-introList__item a:hover>* {
  opacity: 0.7;
}

.top-introList__item a:hover .top-introList__item__link::after {
  transform: translateX(4px);
}

.top-introList__item__head {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.top-introList__item__head .__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 68px;
  margin-right: 10px;
}

.top-introList__item__head .__logo img {
  max-width: 100%;
}

.top-introList__item__head .__name {
  line-height: 1.25;
  font-size: 1rem;
  font-weight: bold;
}

.top-introList__item__cont {
  flex: 1 1 auto;
  margin-bottom: 12px;
}

.top-introList__item__link {
  text-align: right;
}

.top-introList__item__link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-left: 8px;
  background-image: url(/resource/sales/img/top/ico_arw_blue01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 300ms;
}

@media screen and (min-width: 600px) {
  .top-col2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 890px;
    margin: 0 auto;
  }
}

.top-col2__img {
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .top-col2__img {
    order: 2;
    margin-bottom: 0;
    text-align: left;
  }
}

.top-col2__img .h2 {
  margin-bottom: 20px;
  padding: 0 25px;
  color: #003B6B;
}

@media screen and (max-width: 599px) {
  .top-col2__img .h2 {
    padding: 0;
  }
}

.top-col2__img .h2 .__sub {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .top-col2__img .h2 .__sub {
    font-size: 1.23rem;
  }
}

@media screen and (max-width: 599px) {
  .top-col2__img .h2 .__sub {
    font-size: 1.1875rem;
  }
}

.top-col2__img .h2 .__main {
  display: block;
  line-height: 1.125;
  font-size: 3.25rem;
}

@media screen and (max-width: 599px) {
  .top-col2__img .h2 .__main {
    font-size: 2.375rem;
  }
}

@media screen and (max-width: 599px) {
  .top-col2 .top-col2__img img {
    max-width: 80% !important;
  }
}

@media screen and (min-width: 600px) {
  .top-col2 .content {
    order: 1;
    padding: 0;
  }
}

.top-col2 .ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

@media screen and (min-width: 600px) {
  .top-col2 .ul {
    width: 488px;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-col2 .li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 6px);
  margin-bottom: 12px;
  padding: 17px 5px;
  border-radius: 15px 5px 15px 5px;
  background: #005EAB;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .top-col2 .li {
    width: 238px;
    height: 88px;
    font-size: 16px;
  }
}

.top-col2 p {
  text-align: center;
}

.top-col3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto 32px;
}


@media screen and (max-width: 599px) {
  .top-col3 {
    border-top: 1px dashed #003B6B;
  }
}

.top-col3 .li {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .top-col3 .li {
    width: auto;
  }
}

.top-col3 .link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 0;
  border-bottom: 1px dashed #003B6B;
  font-size: 14px;
  font-weight: bold;
  color: #005EAB;
  text-decoration: none;
}


@media screen and (min-width: 600px) {
  .top-col3 .link {
    flex-direction: column;
    width: 296px;
    height: 248px;
    padding: 0;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    border-bottom: none;
    background: #fff;
    transition: box-shadow 300ms;
  }
  .top-col3 .link:hover {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  }
}

    /* 高さ揃えVer .-h */
    @media screen and (min-width: 600px) {
      .top-col3.-h {
        align-items: stretch;
      }
      .top-col3.-h .li {
        flex-direction: column;
      }
      .top-col3.-h .link {
        display: block;
        height: 100%;
      }
    }

.top-col3 .link .text {
  padding-left: 10px;
}

@media screen and (min-width: 600px) {
  .top-col3 .link .text {
    width: 100%;
    padding: 6px 15px;
  }
}

.top-col3 .img {
  width: 96px;
  margin-bottom: 0;
}

@media screen and (min-width: 600px) {
  .top-col3 .img {
    width: 100%;
    /* height: 184px; */
  }
}

.top-col3 .button_blue {
  padding: 10px 30px;
}

@media screen and (min-width: 600px) {
  .top-col3 .button_blue {
    width: 265px;
    margin: auto;
  }
}

.top-recoList {
  display: flex;
  flex-wrap: wrap;
  width: 858px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .top-recoList {
    width: auto;
    flex-direction: column;
  }
}

@media screen and (min-width: 600px) {
  .top-recoList__item {
    width: 270px;
  }
  .top-recoList__item:not(:nth-child(3n)) {
    margin-right: 24px;
  }
  .top-recoList__item:nth-child(n+4) {
    margin-top: 32px;
  }
}

@media screen and (max-width: 599px) {
  .top-recoList__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.top-recoList__item a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 599px) {
  .top-recoList__item a {
    display: flex;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 300ms;
  }
}

.top-recoList__item a>* {
  transition: opacity 300ms;
}

.top-recoList__item a:hover .top-recoList__item__img img {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.top-recoList__item a:hover>* {
  opacity: 0.7;
}

.top-recoList__item__img {
  margin-bottom: 12px;
}

@media screen and (max-width: 599px) {
  .top-recoList__item__img {
    flex: 0 0 auto;
    width: 80px;
    margin-bottom: 0;
  }
}

.top-recoList__item__img img {
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  transition: 300ms;
}

@media screen and (max-width: 599px) {
  .top-recoList__item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
  }
}

.top-recoList__item__txt {
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .top-recoList__item__txt {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 80px;
    padding: 15px 16px;
    padding-right: 25px;
    line-height: 1.5;
    font-weight: bold;
  }
  .top-recoList__item__txt::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 8px;
    height: 12px;
    margin: auto;
    background-image: url(/resource/sales/img/top/ico_arw_gray01.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.top-slideList {
  margin: -8px auto 0;
}

@media screen and (max-width: 599px) {
  .top-slideList {
    margin-left: -5vw;
    margin-right: -5vw;
  }
}

.top-slideList--wid1 {
  max-width: 870px;
}

.top-slideList__item {
  margin: 8px;
}

.top-slideList--col4 {
  margin: -8px auto 0;
}

@media screen and (max-width: 599px) {
  .top-slideList--col4 .top-slideList__item {
    margin-right: 0;
    margin-left: 0;
  }
}

.top-sitem__clm a {
  display: block;
  color: inherit;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 300ms;
}

.top-sitem__clm a>* {
  transition: opacity 300ms;
}

.top-sitem__clm a:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.top-sitem__clm a:hover .top-sitem__clm__img img {
  transform: scale(1.1);
}

.top-sitem__clm a:hover>* {
  opacity: .7;
}

.top-sitem__clm__img {
  overflow: hidden;
}

.top-sitem__clm__img img {
  transform-origin: center;
  transition: transform 300ms;
}

.top-sitem__clm__box {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 16px;
  line-height: 1.5;
  font-weight: bold;
}

.top-sitem__clm__box::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 12px;
  margin: auto;
  background-image: url(/resource/sales/img/top/ico_arw_gray01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.top-sitem__case {
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 300ms;
}

@media screen and (max-width: 599px) {
  .top-sitem__case {
    width: 314px;
  }
}

.top-sitem__case:hover {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.top-sitem__case:hover .top-sitem__case__inner {
  opacity: 0.7;
}

.top-sitem__case p {
  margin-top: 0 !important;
}

.top-sitem__case__inner {
  display: flex;
  flex-direction: column;
  transition: opacity 300ms;
}

.top-sitem__case__head {
  height: 92px;
  display: flex;
  align-items: center;
  padding-left: 147px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  line-height: 2;
  font-size: 0.875rem;
  font-weight: bold;
}

.top-sitem__case__head.bg1 {
  background-image: url(/resource/sales/img/top/bg_sitem__case01.png);
}

.top-sitem__case__head.bg2 {
  background-image: url(/resource/sales/img/top/bg_sitem__case02.png);
}

.top-sitem__case__head.bg3 {
  background-image: url(/resource/sales/img/top/bg_sitem__case03.png);
}

.top-sitem__case__head.bg4 {
  background-image: url(/resource/sales/img/top/bg_sitem__case04.png);
}

.top-sitem__case__head.bg5 {
  background-image: url(/resource/sales/img/top/bg_sitem__case05.png);
}

.top-sitem__case__lead {
  padding: 22px 20px 28px;
  line-height: 1.4375;
  color: #003B6B;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
}

.top-sitem__case__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  width: 92px;
  height: 22px;
  margin: auto;
  border-radius: 11px;
  background-color: #C1C1C1;
  line-height: 1.5;
  color: #fff;
}

.top-sitem__case__yearlyIncome {
  font-size: 1.1875rem;
  font-weight: bold;
}

.top-sitem__case__yearlyIncome--big {
  margin: 0 8px;
  font-size: 2.75rem;
}

.top-sitem__case__textOuter--before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 24px;
  line-height: 1.375;
  color: #828282;
}

.top-sitem__case__textOuter--before .top-sitem__case__jobs {
  margin-right: 8px;
}

.top-sitem__case__textOuter--after {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0 10px;
  background-color: #003B6B;
  line-height: 1.375;
  color: #fff;
}

.top-sitem__case__textOuter--after .top-sitem__case__tag {
  background-color: #FFC000;
}

.top-sitem__case__textOuter--after .top-sitem__case__yearlyIncome {
  line-height: 1.125;
}

.top-sitem__jobOffer {
  max-width: 274px;
  padding: 11px 12px 18px 18px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  border-top: 5px solid #005EAB;
}

.top-sitem__jobOffer__head {
  border-bottom: dashed 1px #CCCCCC;
  padding-bottom: 20px;
}

.top-sitem__jobOffer__iconList {
  display: flex;
}

.top-sitem__jobOffer__iconItem, .top-sitem__jobOffer__iconItem--new, .top-sitem__jobOffer__iconItem--hurry {
  font-size: 10px;
  font-weight: bold;
  width: 36px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-sitem__jobOffer__iconItem:nth-of-type(n+2), .top-sitem__jobOffer__iconItem--new:nth-of-type(n+2), .top-sitem__jobOffer__iconItem--hurry:nth-of-type(n+2) {
  margin-left: 2px;
}

.top-sitem__jobOffer__iconItem--new {
  color: #003B6B;
  border: 1px solid #003B6B;
}

.top-sitem__jobOffer__iconItem--hurry {
  background-color: #DD1B7C;
  color: #fff;
}

.top-sitem__jobOffer__company {
  margin-top: 9px;
  font-size: 13px;
  font-weight: bold;
  color: #607B80;
  position: relative;
  line-height: 1.5em;
  height: calc(1.5em * 1);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-sitem__jobOffer__contents {
  margin-top: 9px;
  font-size: 16px;
  font-weight: bold;
  color: #3A4A4D;
  position: relative;
  line-height: 1.5em;
  height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-sitem__jobOffer__body {
  padding-top: 15px;
}

.top-sitem__jobOffer__dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 13px;
  font-weight: bold;
}

.top-sitem__jobOffer__dl:nth-of-type(n+2) {
  margin-top: 12px;
}

.top-sitem__jobOffer__dt, .top-sitem__jobOffer__dt--income, .top-sitem__jobOffer__dt--location, .top-sitem__jobOffer__dt--jobs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 65px;
  min-width: 65px;
  margin-right: 11px;
}

.top-sitem__jobOffer__dt::before, .top-sitem__jobOffer__dt--income::before, .top-sitem__jobOffer__dt--location::before, .top-sitem__jobOffer__dt--jobs::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-sitem__jobOffer__dt--income::before {
  margin-right: 6px;
  width: 17px;
  height: 17px;
  background-image: url("/resource/sales/img/top/jobOffer_income.svg");
}

.top-sitem__jobOffer__dt--location::before {
  margin-left: 3px;
  margin-right: 8.4px;
  width: 11.6px;
  height: 20px;
  background-image: url("/resource/sales/img/top/jobOffer_location.svg");
}

.top-sitem__jobOffer__dt--jobs::before {
  margin-right: 6px;
  width: 18px;
  height: 15.3px;
  background-image: url("/resource/sales/img/top/jobOffer_jobs.svg");
}

.top-sitem__jobOffer__dd, .top-sitem__jobOffer__dd--jobs {
  width: 100%;
  position: relative;
  line-height: 1.5em;
  height: calc(1.5em * 1);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-sitem__jobOffer__dd--jobs {
  height: calc(1.5em * 2);
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.top-sitem__jobOffer__anchor {
  width: 100%;
  max-width: 169px;
  height: 36px;
  font-size: 13px;
  margin: 13px auto 0;
  color: #3A4A4D;
  border: 1px solid #C6CBCC;
  border-radius: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: all .5s ease;
  overflow: hidden;
  z-index: 1;
}

.top-sitem__jobOffer__anchor:hover {
  border: 1px solid #005EAB;
  color: #fff;
}

.top-sitem__jobOffer__anchor:hover::before {
  transform: translateX(10%);
}

.top-sitem__jobOffer__anchor:hover::after {
  background-image: url("/resource/sales/img/top/link_arrow_white.svg");
}

.top-sitem__jobOffer__anchor::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background-color: #005EAB;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: all .5s ease;
}

.top-sitem__jobOffer__anchor:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s ease;
}

.top-sitem__jobOffer__anchor::after {
  background-image: url("/resource/sales/img/top/link_arrow_blue.svg");
}

.top-ol1 {
  list-style-type: none;
  padding-left: 115px;
  background: url(/sales/img/sp/sec10-bg.jpg) 0 0/100px no-repeat;
}

@media screen and (min-width: 600px) {
  .top-ol1 {
    display: flex;
    align-items: flex-start;
    width: 961px;
    margin: 0 auto 70px;
    padding: 0;
    background: url(/resource/sales/img/top/bg_ol1@pc.png) 0 0/100% no-repeat;
  }
}

.top-ol1 .li {
  padding-top: 6px;
  height: 125px;
}

@media screen and (min-width: 600px) {
  .top-ol1 .li {
    width: 188px;
    height: 339px;
    padding-top: 0;
  }
}

@media screen and (max-width: 599px) {
  .top-ol1 .li:last-child {
    height: 96px;
  }
}

.top-ol1 .h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .top-ol1 .h3 {
    height: 60px;
    margin-bottom: 160px;
    padding-left: 40px;
    color: #fff;
    line-height: 1.2;
  }
}

.top-ol1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 7px;
  background: #005EAB;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
  .top-ol1 .icon {
    width: auto;
    background: transparent;
  }
  .top-ol1 .icon::after {
    content: '.';
  }
}

@media screen and (min-width: 600px) {
  .top-ol1 .icon {
    background: #fff;
  }
}

.top-ol1 .icon path {
  fill: #005EAB;
}

@media screen and (min-width: 600px) {
  .top-ol1 p {
    padding: 10px;
    font-size: 14px;
  }
  .top-ol1 .li:first-child .h3 {
    padding-left: 15px;
  }
}

.top-ol2 {
  margin-top: 40px;
  list-style: none;
}

@media screen and (max-width: 599px) {
  .top-ol2 {
    margin-top: 20px;
  }
}

.top-ol2 .li:not(:last-child) {
  margin-bottom: 20px;
}

.top-ol2 .h3 {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 5px;
  font-size: 17px;
  color: #005EAB;
}

@media screen and (min-width: 600px) {
  .top-ol2 .h3 {
    font-size: 24px;
  }
}

.top-ol2 .h3 picture {
  font-size: 0;
}

.top-ol2 .icon {
  margin-bottom: -4px;
  margin-right: 5px;
  width: 30px;
}

@media screen and (min-width: 600px) {
  .top-ol2 .icon {
    margin-bottom: -8px;
    width: 45px;
  }
}

.top-ol2 p {
  padding-left: 35px;
}

@media screen and (min-width: 600px) {
  .top-ol2 p {
    padding-left: 50px;
    font-size: 14px;
  }
}

.button.wid--1 {
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .button.wid--1 {
    width: 265px;
  }
}

@media screen and (max-width: 599px) {
  .button.wid--1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.slide__arrow, .slide__arrow--prev, .slide__arrow--next {
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 30px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slide__arrow--prev {
  left: -33px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide__arrow--prev.lazyloaded {
  background-image: url("/resource/sales/img/top/slide_arrow_prev_blue.svg");
}

.slide__arrow--next {
  right: -33px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide__arrow--next.lazyloaded {
  background-image: url("/resource/sales/img/top/slide_arrow_next_blue.svg");
}

.slide__dots, .slide__dots--gray {
  display: flex;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
  .slide__dots, .slide__dots--gray {
    justify-content: center;
    position: static;
    margin-top: 20px;
    transform: none;
  }
}

.slide__dots li, .slide__dots--gray li {
  margin: 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.slide__dots li button, .slide__dots--gray li button {
  position: relative;
  text-indent: -9999px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slide__dots li.slick-active, .slide__dots--gray li.slick-active {
  background-color: #1562B2 !important;
}

.slide__dots li:first-child:last-child, .slide__dots--gray li:first-child:last-child {
  display: none;
}

.slide__dots--gray li {
  background-color: #E6E6E6;
}

.top-slideList--dots-white .slide__dots--gray li {
  background-color: #fff;
}

.slick-track {
  margin: 0 auto;
}

.specialFeature__list {
  display: none;
}

.specialFeature__list.slick-initialized {
  display: block;
}

.specialFeature__list .slide__arrow--prev {
  left: -50px;
}

.specialFeature__list .slide__arrow--next {
  right: -50px;
}

.jobOffer__list {
  display: none;
}

.jobOffer__list.slick-initialized {
  display: block;
}

.successStories__list {
  display: none;
}

.successStories__list.slick-initialized {
  display: block;
}

.successStories__list .slick-list {
  overflow: inherit;
}

.successStories__list .slide__arrow--prev {
  left: -11px;
  z-index: 1;
}

.successStories__list .slide__arrow--next {
  right: -11px;
}

.geekroid__list {
  display: none;
}

.geekroid__list.slick-initialized {
  display: block;
}

.geekroid__list .slide__arrow--prev {
  left: -60px;
}

.geekroid__list .slide__arrow--next {
  right: -60px;
}

.andEngineer__list.slick-initialized {
  display: block;
}

.andEngineer__list .slide__arrow--prev {
  left: -60px;
}

.andEngineer__list .slide__arrow--next {
  right: -60px;
}

@media screen and (max-width: 599px) {
  .u-mb0sp {
    margin-bottom: 0;
  }
}

.u-pt0 {
  padding-top: 0;
}

.u-pb0 {
  padding-bottom: 0;
}

.u-fwB {
  font-weight: bold;
}

/* /2021.7 */

/*# sourceMappingURL=style_new.css.map */
