@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, b {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 100%;
  list-style-type: none;
  vertical-align: baseline;
  text-decoration: none;
  box-sizing: border-box;
}

#top {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #top {
    background-image: url(../images/teaser-sp.jpg);
  }
}

html {
  font-size: 62.5%;
}

body {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: #073190;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  line-height: 177%;
}

a {
  color: #073190;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}

input[type=submit], input[type=button],
button[type=submit],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus,
button[type=submit]::focus,
button[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.no-padding {
  padding: 0 !important;
}

.bg-yellow {
  background-color: #fff8eb;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.justifiy-center {
  justify-content: center;
}
.flex.justifiy-between {
  justify-content: space-between;
}
.flex.justifiy-end {
  justify-content: flex-end;
}
.flex.align-center {
  align-items: center;
  align-content: center;
}
.flex.align-end {
  align-items: flex-end;
  align-content: flex-end;
}
.flex.direction-rowReverse {
  flex-direction: row-reverse;
}
.flex.direction-column {
  flex-direction: column;
}
.flex.direction-columnReverse {
  flex-direction: column-reverse;
}
.flex.noWrap {
  flex-wrap: nowrap;
}

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

header {
  z-index: 10;
  position: relative;
  border-bottom: 1px solid #F1F3F9;
  position: fixed;
  width: 100%;
  top: 0;
}
@media screen and (min-width: 1220px) {
  header {
    display: flex;
    align-items: center;
    height: 80px;
    background: #fff;
  }
}
@media screen and (max-width: 1219px) {
  header {
    height: 50px;
  }
}
header #nav-content {
  height: 100%;
}
@media screen and (max-width: 1219px) {
  header #nav-content {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }
}
header .header-logo {
  background: #fff;
  position: absolute;
  margin: 0 20px;
  width: 100%;
  max-width: 300px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1219px) {
  header .header-logo {
    width: 45%;
  }
}
header .header-logo_link {
  display: block;
}
header .header-logo_link img {
  width: 100%;
}
header #nav-drawer {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1219px) {
  header #nav-drawer {
    top: 0;
    width: 100%;
    background: #fff;
  }
  header #nav-drawer .nav-unshown {
    display: none;
  }
  header #nav-drawer #nav-open {
    position: fixed;
    right: 20px;
    top: 25px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    z-index: 10000;
    font-size: 10px;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.2s;
    background-image: url(../images/icon_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
  }
  header #nav-drawer #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  header #nav-drawer #nav-content {
    overflow: auto;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    height: calc(100% - 50px);
    background: #fff;
    transition: 0.3s ease-in-out;
    transform: translateX(105%);
    border-top: 1px solid #cbcbcb;
  }
}
@media screen and (max-width: 1219px) and (max-width: 1219px) {
  header #nav-drawer #nav-content {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1219px) {
  header #nav-drawer #nav-input:checked + #nav-open {
    background-image: url(../images/icon_close.svg);
  }
  header #nav-drawer #nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
  }
  header #nav-drawer #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media screen and (min-width: 1220px) {
  header #nav-drawer #nav-input {
    display: none;
  }
}
header .gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width: 1219px) {
  header .gnav {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    align-items: inherit;
  }
}
header .gnavList {
  width: 100%;
  height: 100%;
}
header .gnavList .header_contactSp {
  display: none;
}
@media screen and (max-width: 1219px) {
  header .gnavList .header_contactSp {
    margin: 8.533vw -5.333vw -5.333vw;
    display: flex;
    width: calc(100% + 10.667vw);
  }
  header .gnavList .header_contactSpLink {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 3.2vw;
    padding: 4.267vw 0;
  }
  header .gnavList .header_contactSp .link01 {
    background-color: #FFE65D;
    color: #073190;
  }
  header .gnavList .header_contactSp .link02 {
    background-color: #fff;
    color: #073190;
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList {
    padding: 20px;
    background-color: #073190;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
  }
}
header .gnavList_item {
  box-sizing: border-box;
  border-bottom: none;
}
@media screen and (min-width: 1220px) {
  header .gnavList_item {
    height: 100%;
  }
  header .gnavList_item + .gnavList_item a {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList_item {
    width: 100%;
  }
  header .gnavList_item + .gnavList_item {
    border-top: 1px solid;
    margin-left: auto;
    margin-top: 2vw;
    padding-top: 2vw;
  }
  header .gnavList_item a {
    padding: 0 8vw 4vw;
    background-image: url(../images/icon_arrow_right02.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 19px auto;
  }
  header .gnavList_item.spBdrTopNone {
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
header .gnavList_link {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 1220px) {
  header .gnavList_link {
    color: #073190;
    height: 100%;
  }
}
header .gnavList_link > span {
  transform: translateY(2px);
}
@media screen and (max-width: 1219px) {
  header .gnavList_link {
    color: #fff;
    justify-content: flex-start;
    padding: 0 0 2.933vw;
    font-size: 3.4vw;
  }
  header .gnavList_link > span {
    display: none;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList .subNav {
    margin-bottom: 5.333vw;
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNav {
    display: none;
  }
  header .gnavList .subNav::before {
    content: "";
    display: block;
    position: absolute;
    width: 28px;
    height: 13px;
    background-image: url(../images/image_subNav_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    transform: translate(20px, -17px);
  }
  header .gnavList .subNav::after {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 0;
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavWrapper {
    z-index: 1;
    position: absolute;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    margin-top: -5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 74px 86px 18px;
    width: 100%;
    max-width: 1100px;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList .subNavList {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavList_item {
    width: calc((100% - 180px) / 3);
    margin-right: 90px;
    margin-bottom: 56px;
  }
  header .gnavList .subNavList_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
header .gnavList .subNavList_link {
  display: flex;
  position: relative;
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavList_link {
    padding-left: 158px;
    height: 132px;
  }
  header .gnavList .subNavList_linkImage {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 135px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList .subNavList_link {
    padding: 4.267vw 8vw;
    font-size: 4.267vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-image: url(../images/icon_arrow_right02.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 19px auto;
  }
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavList_linkTitle {
    margin-top: 39px;
    font-size: 18px;
    line-height: 150%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1219px) {
  header .gnavList .subNavList_linkTitle {
    color: #fff;
  }
}
header .gnavList .subNavList_linkArrow {
  width: calc(100% - 158px);
  height: 17px;
  position: absolute;
  right: 0;
  bottom: 13px;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 49px auto;
  transition: 0.2s;
}
header .gnavList .subNavList_linkArrow::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #FFE65D;
  display: block;
  width: 0;
  height: 0;
  transition: 0.2s;
  border-radius: 20px;
  transform: translateY(20%);
}
@media screen and (min-width: 1220px) {
  header .gnavList .subNavList_link:hover .subNavList_linkArrow {
    background-position: center right;
  }
  header .gnavList .subNavList_link:hover .subNavList_linkArrow::before {
    width: 17px;
    height: 17px;
  }
}
header .gnavList_item.phoneItem {
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px;
  background-color: #FFE65D;
  color: #073190;
}
@media screen and (max-width: 1219px) {
  header .gnavList_item.phoneItem.pc {
    display: none;
  }
}
header .gnavList_item.phoneItem .text {
  font-size: 12px;
  line-height: 150%;
}
header .gnavList_item.phoneItem .number {
  margin-top: 5px;
  font-size: 22px;
  line-height: 27px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
header .gnavList_item.phoneItem .number span {
  font-size: 17px;
  line-height: 20px;
}
@media screen and (max-width: 1219px) {
  header .gnavList_item.contactItem.pc {
    display: none;
  }
}
header .gnavList_item.contactItem .gnavList_link {
  padding: 0 62px;
  margin-left: 0;
  background-color: #073190;
  color: #fff;
  font-size: 16px;
}
header .gnavList_item.contactItem .gnavList_link > span {
  margin-right: 5px;
}

.link {
  display: flex;
}
.link_button {
  display: flex;
  align-items: end;
  font-size: 18px;
  position: relative;
  padding-left: 26px;
  letter-spacing: 0.05em;
  line-height: 100%;
}
.link_button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFE65D;
  display: block;
  width: 17px;
  height: 17px;
  transition: 0.2s;
  border-radius: 20px;
  transform: translateY(10%);
  transition: 0.2s;
}
.link_button .icon {
  background-color: #fff;
  border-radius: 30px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-20%);
}

main {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 50px;
  }
}

.contentContainer {
  max-width: 1200px;
  margin: auto;
}
.contentContainer_title {
  position: relative;
  z-index: 1;
  font-size: 65px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .contentContainer_title {
    margin-bottom: 10.667vw;
  }
}
.contentContainer_title .eng {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  line-height: 88px;
}
@media screen and (max-width: 767px) {
  .contentContainer_title .eng {
    font-size: 10.133vw;
    line-height: 13.333vw;
    letter-spacing: 0.1em;
  }
}
.contentContainer_title .jp {
  margin-top: 7px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .contentContainer_title .jp {
    margin-top: 0;
    font-size: 3.2vw;
    line-height: 4.533vw;
  }
}

footer {
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 0;
  }
}

.sliderSection {
  max-width: 1440px;
  margin: auto;
  position: relative;
}
.sliderSection .contentContainer {
  max-width: 100%;
  position: relative;
  padding: 0.1px;
}
@media screen and (min-width: 768px) {
  .sliderSection .contentContainer {
    min-height: 640px;
  }
}
.sliderSection .contentContainer .slider_top {
  width: 74.3%;
  min-width: 830px;
  max-height: calc(100vh - 80px);
  position: absolute;
  right: -5.55%;
  top: 0;
  z-index: 0;
}
.sliderSection .contentContainer .slider_top .slick-list {
  overflow: hidden;
}
.sliderSection .contentContainer .slider_top .slick-track {
  display: flex;
}
.sliderSection .contentContainer .slider_top .slick-slide {
  height: calc(100vh - 80px);
  min-height: 700px;
  display: flex;
  justify-content: flex-end;
  align-items: start;
}
.sliderSection .contentContainer .slider_top .slick-slide img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .sliderSection .contentContainer .slider_top {
    min-width: 0;
    width: 112.267vw;
    left: 5.333vw;
    height: 74.933vw;
  }
  .sliderSection .contentContainer .slider_top .slick-list,
  .sliderSection .contentContainer .slider_top .slick-track,
  .sliderSection .contentContainer .slider_top .slick-slide {
    height: 100%;
    min-height: 0;
  }
}
.sliderSection .contentContainer .catch {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 60px 0 0 50px;
  color: #fff;
  padding: 112px 119px 190px;
  width: 510px;
  background-image: url(../images/top/catch.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sliderSection .contentContainer .catch {
    margin-top: 59.467vw;
    margin-left: -5.333vw;
    width: 70.4vw;
    padding: 10.933vw 14.133vw 24.733vw;
  }
}
.sliderSection .contentContainer .catch::after {
  display: block;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 115px;
  height: 112px;
  background-image: url(../images/top/image_bg01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sliderSection .contentContainer .catch::after {
    width: 16vw;
    height: 15.467vw;
    transform: translateY(-50.4vw);
    right: -8.8vw;
    z-index: -1;
  }
}
.sliderSection .contentContainer .catch h1 {
  font-size: 35px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .sliderSection .contentContainer .catch h1 {
    font-size: 5.333vw;
  }
}
.sliderSection .contentContainer .catch h2 {
  font-size: 16px;
  line-height: 250%;
}
@media screen and (max-width: 767px) {
  .sliderSection .contentContainer .catch h2 {
    font-size: 3.2vw;
  }
}

.serviceSection {
  padding: 230px 0 180px;
  position: relative;
  max-width: 1200px;
  margin: 65px auto;
}
@media screen and (max-width: 767px) {
  .serviceSection {
    margin-top: -9.6vw;
    padding: 40.533vw 5.333vw 0;
    margin-bottom: 10.4vw;
  }
}
.serviceSection::after {
  z-index: 0;
  width: 64.5%;
  padding-bottom: 27.95%;
  right: 0;
  top: 0;
  transform: translateX(70px);
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/top/image_service.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .serviceSection::after {
    width: calc(100% - 10.667vw);
    right: 5.333vw;
    transform: translateX(0);
    background-position: center top;
    background-size: 100% auto;
    padding-bottom: 30.133vw;
  }
}
.serviceSection::before {
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  transform: translate(-50%, 0%);
  position: absolute;
  display: block;
  height: 100%;
  width: 73%;
  background-image: url(../images/top/bg_service.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .serviceSection::before {
    width: 142.667vw;
    height: 139.467vw;
    top: 35.467vw;
    left: 5.333vw;
    transform: translate(0%, 0%);
  }
}
.serviceSection .service {
  position: relative;
  z-index: 1;
}
.serviceSection .serviceList {
  display: flex;
}
@media screen and (max-width: 767px) {
  .serviceSection .serviceList {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.serviceSection .serviceList_item {
  width: 22.25%;
  margin-right: 6.3333333333%;
}
@media screen and (max-width: 767px) {
  .serviceSection .serviceList_item {
    width: calc((100% - 12vw) / 2);
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.serviceSection .serviceList_itemImage {
  display: block;
  height: 196px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .serviceSection .serviceList_itemImage {
    height: 30.933vw;
    margin-bottom: 10px;
  }
}
.serviceSection .serviceList_itemTitle {
  font-size: 25px;
  line-height: 36px;
  padding-left: 31px;
  font-weight: 500;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: right calc(100% - 13px);
  background-size: 49px auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .serviceSection .serviceList_itemTitle {
    padding-left: 0;
    font-size: 4vw;
    background-size: 7.733vw auto;
    line-height: 5.333vw;
    background-position: right calc(100% - 2.133vw);
  }
}
.serviceSection .serviceList_itemTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFE65D;
  display: block;
  width: 17px;
  height: 17px;
  transition: 0.2s;
  border-radius: 20px;
  transform: translateY(60%);
  opacity: 0;
  transition: 0.2s;
}
.serviceSection .serviceList_link {
  display: block;
}
.serviceSection .serviceList_link:hover .serviceList_itemTitle::before {
  opacity: 1;
}

.newsSection {
  padding-bottom: 141px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .newsSection {
    padding: 0 5.333vw 2.667vw;
  }
}
.newsSection::after {
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 137px;
  background-image: url(../images/top/image_news01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: -23px;
  left: 50%;
  transform: translateX(-70%);
}
@media screen and (max-width: 767px) {
  .newsSection::after {
    content: none;
  }
}
.newsSection .link {
  display: flex;
  justify-content: end;
}
.newsSection .newsList {
  border-top: 1px solid rgba(191, 202, 227, 0.9921568627);
  margin-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .newsSection .newsList {
    margin-bottom: 9.867vw;
  }
}
.newsSection .newsList_item {
  border-bottom: 1px solid #BFCAE3;
}
.newsSection .newsList_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .newsSection .newsList_link {
    padding: 4.667vw 0;
  }
}
.newsSection .newsList_link .date {
  font-size: 15px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .newsSection .newsList_link .date {
    font-size: 12px;
    width: auto;
    margin-right: 5.067vw;
  }
}
.newsSection .newsList_link .category {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  height: 30px;
  border-radius: 15px;
  background-color: #ccc;
  color: #fff;
  min-width: 120px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .newsSection .newsList_link .category {
    padding: 0.8vw 6.4vw;
    font-size: 3.467vw;
    height: auto;
    min-width: 0;
  }
}
@media screen and (min-width: 768px) {
  .newsSection .newsList_link .category + .title {
    margin-left: 45px;
  }
}
.newsSection .newsList_link .title {
  max-width: calc(100% - 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .newsSection .newsList_link .title {
    width: 100%;
    max-width: 100%;
    font-size: 3.733vw;
    margin-top: 3.467vw;
  }
}

.topBackButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
.topBackButton_link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/bg_topBackButton.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .aboutSection {
    padding: 21.333vw 5.333vw 98.667vw;
    position: relative;
  }
  .aboutSection::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 543.2vw;
    top: 0;
    left: 0;
    background-image: url(../images/top/bg_about2.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .aboutSection .about .link {
    justify-content: end;
  }
}
.aboutSection .aboutText {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutText {
    font-size: 15px;
    margin-bottom: 9.867vw;
  }
}
.aboutSection .aboutContents {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: -30px;
  padding-bottom: 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContents {
    margin-top: 11.467vw;
    flex-wrap: wrap;
  }
}
.aboutSection .aboutContents::after {
  content: "";
  display: block;
  position: absolute;
  width: 150%;
  height: 120%;
  bottom: 0;
  left: -15.833%;
  background-image: url(../images/top/bg_about.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContents::after {
    content: none;
  }
}
.aboutSection .aboutContents_image {
  width: 44%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin-top: 146px;
}
.aboutSection .aboutContents_image.comingsoon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(../images/comingsoon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContents_image {
    margin-top: 0;
    width: 100%;
  }
}
.aboutSection .aboutContents_image:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.aboutSection .aboutContents_image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aboutSection .aboutContentsList {
  width: 50%;
  counter-reset: count;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList {
    width: 100%;
    margin-top: 13.6vw;
  }
}
.aboutSection .aboutContentsList_item {
  padding-left: 173px;
  padding-bottom: 40px;
  border-bottom: 1px solid #BFCAE3;
  position: relative;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_item {
    padding-left: 18.267vw;
    margin-bottom: 9.333vw;
  }
}
.aboutSection .aboutContentsList_item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.aboutSection .aboutContentsList_item::before {
  counter-increment: count;
  content: "0" counter(count);
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 45px;
  position: absolute;
  left: 48px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_item::before {
    font-size: 35px;
    left: 0;
    top: 0;
  }
}
.aboutSection .aboutContentsList_itemTitle {
  font-size: 25px;
  line-height: 200%;
  font-weight: 500;
  margin-bottom: 17.5px;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_itemTitle {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    line-height: 6.933vw;
  }
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_itemText {
    font-size: 14px;
  }
}
.aboutSection .aboutContentsList_itemText .color_highlight {
  color: #F48A27;
  font-size: 20px;
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_itemText .color_highlight {
    font-size: 4vw;
    margin-top: 5.333vw;
  }
}
.aboutSection .aboutContentsList_itemText .link {
  justify-content: end;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .aboutSection .aboutContentsList_itemText .link a {
    font-size: 3.733vw;
  }
}

.reviewSection {
  padding-top: 190px;
  padding-bottom: 110px;
  background-image: url(../images/top/bg_review.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .reviewSection {
    padding: 0 5.333vw;
    background-image: none;
  }
}
.reviewSection.comingsoon {
  background-image: none;
}
.reviewSection.comingsoon .review_item {
  display: none;
}
.reviewSection.comingsoon .review::after {
  display: block;
  content: "";
  height: 276px;
  width: 100%;
  background-image: url(../images/comingsoon2.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .reviewSection.comingsoon .review::after {
    height: 52vw;
  }
}
.reviewSection .contentContainer_title {
  margin-bottom: 37px;
}
.reviewSection .review {
  margin-bottom: 148px;
}
@media screen and (max-width: 767px) {
  .reviewSection .review {
    margin-bottom: 18.267vw;
  }
}
.reviewSection .certification {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviewSection .certification img {
  display: block;
  height: 102px;
}
@media screen and (max-width: 767px) {
  .reviewSection .certification img {
    height: 20.533vw;
    margin-bottom: 21.333vw;
  }
}
.reviewSection .certification img + img {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .reviewSection .certification img + img {
    margin-left: 4vw;
  }
}

.review {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -35px;
}
.review_item {
  width: calc((100% - 90px) / 3);
  margin-right: 45px;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 35px;
}
.review_item:nth-of-type(3n) {
  margin-right: 0;
}
.review_itemHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.review_itemImage {
  width: 126px;
  height: 126px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.review_itemImage + div {
  width: calc(100% - 150px);
}
.review_itemComName {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background-color: #073190;
  border-radius: 15px;
  margin-bottom: 10px;
}
.review_itemJobTitle {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid #073190;
  border-radius: 15px;
  box-sizing: border-box;
}
.review_itemBody {
  font-size: 16px;
}

.footer {
  background-color: #073190;
  color: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 9.867vw 0 0;
  }
}
.footerHead, .footerBody, .footerBottom {
  max-width: 1200px;
  margin: auto;
}
.footerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footerHead {
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .footerHead {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.footerHead::after {
  content: "";
  width: 352px;
  height: 26px;
  display: block;
  background-image: url(../images/logo_footer2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .footerHead::after {
    height: 15px;
  }
}
.footerHead_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: calc(100% - 427px);
}
@media screen and (max-width: 767px) {
  .footerHead_logo {
    width: 100%;
    justify-content: center;
  }
}
.footerHead_logo img {
  display: block;
}
@media screen and (max-width: 767px) {
  .footerHead_logo img {
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .footerHead_logo img {
    width: 403px;
    margin-right: 35px;
  }
}
.footerHead_text {
  font-size: 12px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .footerHead_text {
    margin: 4.267vw auto 11.2vw;
  }
}
.footerBody {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footerBody {
    display: none;
  }
}
.footerBody_contents {
  margin-right: 50px;
}
.footerBody_contents:last-of-type {
  margin-right: 0;
}
.footerBody_contentsTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 23px;
}
.footerBody_contentsTitle > a {
  color: #fff;
}
.footerBody_contentsListItem {
  margin-top: 15px;
}
.footerBody_contentsListLink {
  display: block;
  color: #BFCAE3;
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}
.footerBody_contentsListLink::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footerBottom {
  margin-top: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footerBottom {
    margin-top: 0;
    flex-direction: column;
  }
}
.footerBottom_contact {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .footerBottom_contact {
    display: none;
  }
}
.footerBottom_contactPhone {
  font-size: 33px;
  color: #FFE65D;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  line-height: 110%;
}
.footerBottom_contactPhone span {
  font-size: 19px;
}
.footerBottom_contactPhone img {
  display: block;
}
.footerBottom_contactLink {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #073190;
  padding: 0 77px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
  margin-left: 46px;
}
.footerBottom_contactLink span {
  margin-right: 5px;
}
.footerBottom_contactSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footerBottom_contactSp {
    display: flex;
    width: 100%;
  }
  .footerBottom_contactSpLink {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 3.2vw;
    padding: 4.267vw 0;
  }
  .footerBottom_contactSp .link01 {
    background-color: #FFE65D;
    color: #073190;
  }
  .footerBottom_contactSp .link02 {
    background-color: #fff;
    color: #073190;
  }
}
.footerBottom_copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footerBottom_copy {
    font-size: 10px;
    width: 100%;
    padding: 11.2vw 4.267vw 4.267vw;
  }
}

.page {
  background-color: #F1F3F9;
}
.pageHead {
  padding-top: 320px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 320px;
}
@media screen and (max-width: 767px) {
  .pageHead {
    padding-top: 18.667vw;
    background-size: auto 18.667vw;
  }
}
.pageHead_title {
  margin: 80px auto 120px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pageHead_title {
    margin: 14px auto 34px;
  }
}
.pageHead_title .jp {
  position: relative;
  z-index: 1;
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.pageHead_title .eng {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  font-size: 156px;
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  letter-spacing: -0.06em;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .pageHead_title .eng {
    font-size: 8.533vw;
    letter-spacing: 0;
    transform: translate(-50%, -25%);
  }
}

.payrollSection {
  padding: 0 5.333vw;
}
.payrollSection .firstSentence {
  text-align: center;
  margin-bottom: 100px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .payrollSection .firstSentence {
    font-size: 4vw;
    text-align: left;
    margin-bottom: 10.667vw;
  }
}
.payrollSection .payroll.pb01 {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll p {
    font-size: 3.733vw;
  }
}
.payrollSection .payroll > p {
  font-weight: 500;
}
.payrollSection .payroll > p + .payroll_contents {
  margin-top: 40px;
}
.payrollSection .payroll_title {
  background-color: #fff;
  padding: 28px 28px 28px 56px;
  border-radius: 20px;
  font-size: 30px;
  line-height: 150%;
  position: relative;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_title {
    padding: 4.533vw 6.4vw;
    font-size: 4.267vw;
    border-radius: 2.667vw;
    margin-bottom: 8vw;
  }
}
.payrollSection .payroll_title::before {
  position: absolute;
  content: "";
  height: calc(100% - 30px);
  width: 15px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 14px;
  top: 15px;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_title::before {
    width: 1.6vw;
    left: 2.133vw;
  }
}
.payrollSection .payroll_titleSub {
  padding-left: 56px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_titleSub {
    padding-left: 3.733vw;
    font-size: 4vw;
    line-height: 6.4vw;
    margin-bottom: 6.667vw;
  }
}
.payrollSection .payroll_titleSub::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 9px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_titleSub::before {
    left: 0;
    width: 1.067vw;
  }
}
.payrollSection .payroll_title + p + h3 {
  margin-top: 52px;
}
.payrollSection .payroll_contents {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .payrollSection .payroll_contents {
    padding-left: 240px;
  }
}
.payrollSection .payroll_contents > p + .payroll_contentsList {
  margin-top: 60px;
}
.payrollSection .payroll_contents::after {
  content: "";
  display: block;
  clear: both;
}
.payrollSection .payroll_contentsTitle {
  font-size: 23px;
  line-height: 34px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid #8398C7;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_contentsTitle {
    font-size: 3.733vw;
    line-height: 5.333vw;
    white-space: nowrap;
    padding-bottom: 4px;
    margin-bottom: 6.667vw;
  }
}
.payrollSection .payroll_contentsList + .note {
  margin-top: 50px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_contentsList + .note {
    margin-top: 6.667vw;
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_contentsListItem {
    font-size: 3.733vw;
  }
}
.payrollSection .payroll_contentsListItemTitle {
  font-size: 20px;
  line-height: 200%;
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .payrollSection .payroll_contentsListItemTitle {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_contentsListItemTitle {
    margin-bottom: 6.667vw;
    font-size: 3.733vw;
  }
}
.payrollSection .payroll_contentsListItemTitle::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #F48A27;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.payrollSection .payroll_contentsListItemTitle .color_highlight {
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .payrollSection .payroll_contentsListItemTitle .color_highlight {
    display: inline;
  }
}
.payrollSection .payroll .color_highlight {
  color: #F48A27;
}
.payrollSection + .contactSection {
  background-color: #F1F3F9;
}
.payrollSection + .contactSection .contact {
  background-color: #fff;
}
.payrollSection.comingsoon {
  background-image: none;
}
.payrollSection.comingsoon .payroll p {
  display: none;
}
.payrollSection.comingsoon .payroll::after {
  display: block;
  content: "";
  height: 276px;
  width: 100%;
  background-image: url(../images/comingsoon2.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .payrollSection.comingsoon .payroll::after {
    height: 52vw;
  }
}

.tabTrigger {
  display: flex;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .tabTrigger {
    width: calc(100% + 5.333vw);
    margin: auto -2.667vw;
  }
}
.tabTrigger_item {
  width: calc((100% - 39px) / 4);
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  background-color: #F48A27;
  color: #fff;
  border-radius: 20px 20px 0 0;
  margin-right: 13px;
  padding: 14px 0 31px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tabTrigger_item {
    width: 25%;
    margin-right: 0;
    font-size: 12px;
  }
}
.tabTrigger_item::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  background-image: url(../images/icon_arrow_bottom01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.tabTrigger_item:nth-of-type(4n) {
  margin-right: 0;
}
.tabTrigger_item.active {
  background-color: #fff;
  border-bottom: none;
  color: #073190;
}
@media screen and (min-width: 768px) {
  .tabTrigger_item.active {
    border: #BFCAE3 3px solid;
    padding: 23px 0 36px;
    transform: translateY(3px);
  }
}
.tabTrigger_item.active::after {
  background-image: url(../images/icon_arrow_bottom02.svg);
}
.tabContents {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding-top: 110px;
  padding-bottom: 68px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .tabContents {
    border-top: 3px solid #BFCAE3;
  }
}
@media screen and (max-width: 767px) {
  .tabContents {
    padding: 12vw 5.333vw;
  }
}
.tabContents_item {
  max-width: 1200px;
  margin: auto;
  counter-reset: count;
  padding-bottom: 0.1px;
  display: none !important;
}
.tabContents_item.active {
  display: block !important;
}
.tabContents_item * + .payroll_titleSub {
  margin-top: 76px;
}
.tabContents_item .payroll_title {
  background-color: #F1F3F9;
}
.tabContents_item .boxColor01 {
  margin-top: 80px;
  background-color: #FEF8F3;
  border-radius: 20px;
  padding: 88px 75px 45px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxColor01 {
    margin-top: 8vw;
    padding: 6.667vw;
    display: block;
  }
}
.tabContents_item .boxColor01 + .boxColor01 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .tabContents_item .boxColor01 p {
    width: calc(100% - 430px);
    line-height: 200%;
  }
}
.tabContents_item .boxColor01 .payroll_titleSub {
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxColor01 .payroll_titleSub {
    margin-top: 7.2vw;
    padding-left: 4.267vw;
  }
}
.tabContents_item .boxColor01 .payroll_titleSub::before {
  background-color: #F48A27;
  left: 0;
}
.tabContents_item .boxColor01 .merit01 {
  position: relative;
}
.tabContents_item .boxColor01 .merit01::after {
  content: "";
  counter-increment: count;
  content: "メリット" counter(count, decimal-leading-zero);
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  font-size: 18px;
  font-weight: 600;
  color: #F48A27;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxColor01 .merit01::after {
    bottom: calc(100% + 2.667vw);
    white-space: nowrap;
    font-size: 3.2vw;
  }
}
.tabContents_item .boxColor01 .point01 {
  position: relative;
}
.tabContents_item .boxColor01 .point01::after {
  content: "";
  counter-increment: count;
  content: "ポイント" counter(count, decimal-leading-zero);
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  font-size: 18px;
  font-weight: 600;
  color: #F48A27;
  line-height: 150%;
}
.tabContents_item .boxRow {
  display: flex;
  flex-wrap: wrap;
}
.tabContents_item .boxRow_item {
  width: 50%;
  padding: 14px;
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxRow_item {
    width: 100%;
    font-size: 3.733vw;
  }
}
.tabContents_item .boxRow_item .taskList {
  counter-reset: count;
}
@media screen and (min-width: 768px) {
  .tabContents_item .boxRow_item .taskList {
    margin-top: 52px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxRow_item .taskList {
    margin-top: 5.333vw;
  }
}
.tabContents_item .boxRow_item .taskList + .note {
  margin-top: 25px;
}
.tabContents_item .boxRow_item .taskList_item {
  padding-left: 28px;
  position: relative;
}
.tabContents_item .boxRow_item .taskList_item + li {
  margin-top: 5px;
}
.tabContents_item .boxRow_item .taskList_item::before {
  position: absolute;
  left: 0;
  top: 7px;
  counter-increment: count;
  content: counter(count);
  width: 20px;
  height: 20px;
  background-color: #073190;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tabContents_item .boxRow_item .taskList_item::before {
    font-size: 3.733vw;
    top: 0.8vw;
  }
}
@media screen and (min-width: 768px) {
  .tabContents_item .support {
    padding-left: 223px;
    padding-bottom: 1px;
  }
}
.tabContents_item .support p {
  font-weight: 500;
}
.tabContents_item .support p + .note {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .tabContents_item .support p + .note {
    margin-top: 4vw;
  }
}
.tabContents_item .support .note {
  font-size: 16px;
  line-height: 200%;
}
.tabContents_item .support .note + p {
  margin-top: 20px;
}
.tabContents_item .support .salary {
  margin: 35px 0;
}
@media screen and (min-width: 768px) {
  .tabContents_item .support .salary {
    min-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .tabContents_item .support .salary {
    width: 100%;
  }
}
.tabContents_item .support .salary tr th, .tabContents_item .support .salary tr td {
  padding: 9px 29px;
  font-weight: 500;
  line-height: 220%;
  background-color: #F1F3F9;
}
@media screen and (max-width: 767px) {
  .tabContents_item .support .salary tr th, .tabContents_item .support .salary tr td {
    padding: 1.867vw 5.333vw;
    font-size: 3.733vw;
  }
}
.tabContents_item .support .salary tr th {
  background-color: #073190;
  color: #fff;
}
.tabContents_item .support .salary .bgColor01 {
  background-color: #6A83BC;
  color: #fff;
}
.tabContents_item .review_item {
  background-color: #F1F3F9;
}
.tabContents_item .review.comingsoon li {
  display: none;
}
.tabContents_item .review.comingsoon::after {
  display: block;
  content: "";
  height: 276px;
  width: 100%;
  background-image: url(../images/comingsoon2.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .tabContents_item .review.comingsoon::after {
    height: 52vw;
  }
}

.contactSection {
  background-color: #fff;
  padding: 1px 0;
}
.contactSection .contact {
  margin: 80px auto 100px;
  max-width: 1200px;
  background-color: #F1F3F9;
  border-radius: 20px;
  padding: 50px 50px 64px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contactSection .contact {
    margin: 0 5.333vw 5.333vw;
    padding: 9.333vw 6.667vw;
  }
}
.contactSection .contact_title {
  font-size: 30px;
  line-height: 150%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contactSection .contact_title {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
}
.contactSection .contact p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 33px;
}
.contactSection .contact_phone {
  font-size: 43px;
  color: #F48A27;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  line-height: 110%;
  margin-bottom: 5px;
}
.contactSection .contact_phone span {
  font-size: 26px;
}
.contactSection .contact_time {
  font-size: 12px;
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .contactSection .contact_time {
    margin: 10px auto 35px;
  }
}
.contactSection .contact_link {
  display: flex;
  justify-content: center;
}
.contactSection .contact_linkButton {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #073190;
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 28px;
}
.contactSection.contactSection2 {
  background-color: #F1F3F9;
}
.contactSection.contactSection2 .contact {
  background-color: #fff;
}
.contactSection .banner_contactSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .contactSection .banner_contactSp {
    display: block;
  }
  .contactSection .banner_contactSpLink {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 4.267vw;
    padding: 4.267vw 0;
    border-radius: 5.333vw;
  }
  .contactSection .banner_contactSp .link01 {
    background-color: #FFE65D;
    color: #073190;
  }
  .contactSection .banner_contactSp .link02 {
    background-color: #073190;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .payrollSection + .contactSection {
    background-color: #F1F3F9;
    margin-top: 60px;
  }
  .payrollSection + .contactSection .contact {
    background-color: #fff;
  }
}

.documents {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #F1F3F9;
  border-radius: 20px;
  padding: 40px 0px 40px 40px;
  margin-top: 24px;
  float: left;
}
@media screen and (max-width: 767px) {
  .documents {
    padding: 5.333vw 2.667vw;
    margin-top: 5.333vw;
  }
}
.documents_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  width: 147px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .documents_title {
    font-size: 4vw;
  }
}
.documentsList {
  margin-right: 40px;
}
.documentsList_item {
  max-width: 350px;
  padding-left: 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .documentsList_item {
    font-size: 3.733vw;
  }
}
.documentsList_item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 7px;
  line-height: 100%;
}

.typeTable {
  width: 100%;
  margin: 60px 0 32px;
}
.typeTable tr th, .typeTable tr td {
  padding: 10px 29px;
  vertical-align: middle;
  font-size: 18px;
  line-height: 180%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .typeTable tr th, .typeTable tr td {
    padding: 7.999px;
    font-size: 3.733vw;
  }
}
.typeTable tr th {
  background-color: #073190;
  color: #fff;
  text-align: left;
}
.typeTable tr td {
  text-align: center;
}
.typeTable thead tr td {
  background-color: #6A83BC;
  color: #fff;
}
.typeTable tbody tr td {
  background-color: #fff;
}
.typeTable tbody tr td.bgColor02 {
  background-color: #E3E7F3;
}

.typeTable2 tr th {
  white-space: nowrap;
  text-align: center;
}
.typeTable2 tbody tr th {
  background-color: #6A83BC;
}
@media screen and (max-width: 767px) {
  .typeTable2 tbody tr th {
    writing-mode: vertical-rl;
  }
}
.typeTable2 tbody tr:nth-of-type(even) td {
  background-color: #E3E7F3;
}

.image_table {
  width: 100%;
}

.caption {
  border: 1px solid #073190;
  padding: 25px;
  font-size: 16px;
  line-height: 200%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  max-width: 537px;
}
.caption .title2 {
  width: 100%;
}
.caption .title {
  width: 14% !important;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 767px) {
  .caption .title {
    width: 24% !important;
  }
}
.caption > div {
  width: calc((86% - 20px) / 2);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .caption > div {
    width: 76%;
    margin-right: 0 !important;
  }
}
.caption > div.first {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .caption > div.first + div {
    margin-left: 24%;
  }
}
.caption > div.wFull {
  width: 100%;
  justify-content: start;
}
.caption > div.wFull div {
  width: calc((86% - 20px) / 2);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .caption > div.wFull div {
    width: 76%;
  }
}
.caption > div span {
  margin-left: 10px;
}

.space_bottom01 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .space_bottom01 {
    font-size: 14px;
  }
}

.coachingSection {
  margin-top: 80px;
  padding: 0.1px 0 100px;
  background-color: #fff;
}
.coachingSection .coaching {
  max-width: 1200px;
  margin: auto;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching {
    padding: 0 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_text {
    font-size: 3.733vw;
  }
}
.coachingSection .coaching_text .color_highlight {
  font-size: 22px;
  color: #F48A27;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_text .color_highlight {
    font-size: 3.733vw;
  }
}
.coachingSection .coaching_title {
  background-color: #F1F3F9;
  padding: 28px 28px 28px 56px;
  border-radius: 20px;
  font-size: 30px;
  line-height: 150%;
  position: relative;
  margin-bottom: 50px;
  font-weight: 500;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_title {
    font-size: 4.267vw;
    padding: 4.533vw 6.4vw;
    border-radius: 2.667vw;
    margin-top: 10.667vw;
    margin-bottom: 8vw;
  }
}
.coachingSection .coaching_title::before {
  position: absolute;
  content: "";
  height: calc(100% - 30px);
  width: 15px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 14px;
  top: 15px;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_title::before {
    left: 8px;
    width: 6px;
  }
}
.coachingSection .coaching_titleSub {
  padding-left: 56px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  margin-top: 73px;
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_titleSub {
    font-size: 4.267vw;
    padding: 0 6.4vw;
    border-radius: 2.667vw;
    margin-top: 10.667vw;
    margin-bottom: 8vw;
  }
}
.coachingSection .coaching_titleSub::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 9px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_titleSub::before {
    left: 8px;
    width: 6px;
  }
}
@media screen and (min-width: 768px) {
  .coachingSection .coaching_contents {
    padding-left: 240px;
    display: flex;
  }
}
.coachingSection .coaching_contentsList {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_contentsList {
    margin-right: 0;
    margin-bottom: 2.933vw;
  }
}
.coachingSection .coaching_contentsListItem {
  font-size: 20px;
  padding-left: 22px;
  position: relative;
  line-height: 150%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_contentsListItem {
    font-size: 3.733vw;
  }
}
.coachingSection .coaching_contentsListItem::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #F48A27;
}
.coachingSection .coaching_contentsListItem + li {
  margin-top: 15px;
}
.coachingSection .coaching_list {
  margin-top: 60px;
}
.coachingSection .coaching_listItem {
  font-size: 20px;
  padding-left: 22px;
  position: relative;
  line-height: 150%;
  white-space: nowrap;
  color: #F48A27;
}
@media screen and (max-width: 767px) {
  .coachingSection .coaching_listItem {
    font-size: 14px;
  }
}
.coachingSection .coaching_listItem::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #F48A27;
}
.coachingSection .coaching_listItem + li {
  margin-top: 15px;
}
.coachingSection .prof {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .coachingSection .prof {
    justify-content: space-between;
  }
}
.coachingSection .prof_image {
  width: 243px;
  margin-right: 37px;
}
@media screen and (max-width: 767px) {
  .coachingSection .prof_image {
    width: 38.133vw;
    margin-right: 0;
  }
}
.coachingSection .prof_career {
  font-size: 16px;
  font-weight: 400;
  margin-right: 42px;
}
@media screen and (max-width: 767px) {
  .coachingSection .prof_career {
    margin-right: 0;
  }
}
.coachingSection .prof_careerTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}
.coachingSection .prof_note {
  padding: 46px;
  border-radius: 20px;
  background-color: #F1F3F9;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .coachingSection .prof_note {
    width: calc(100% - 704px);
  }
}
@media screen and (max-width: 767px) {
  .coachingSection .prof_note {
    margin-top: 31px;
    padding: 6.933vw;
    font-size: 3.733vw;
  }
}
.coachingSection .prof_note img {
  display: block;
  margin-top: 34px;
}

.anchorList {
  display: flex;
  justify-content: center;
  margin: -30px auto 70px;
}
.anchorList_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #F48A27;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .anchorList_item {
    height: 74px;
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .anchorList_item {
    font-size: 3.2vw;
    border-radius: 2.667vw;
    padding: 3.2vw;
  }
}
.anchorList_item::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_bottom01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 7px;
  margin-top: 5px;
}
.anchorList_item + a {
  margin-left: 13px;
}
@media screen and (max-width: 767px) {
  .anchorList_item + a {
    margin-left: 1.067vw;
  }
}

.aboutusSection {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 0.1px;
}
@media screen and (max-width: 767px) {
  .aboutusSection {
    padding: 8vw 5.333vw 0.1px;
  }
}
.aboutusSection .aboutus {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus p {
    font-size: 3.733vw;
  }
}
.aboutusSection .aboutus_title {
  background-color: #F1F3F9;
  padding: 28px 28px 28px 56px;
  border-radius: 20px;
  font-size: 30px;
  line-height: 150%;
  position: relative;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_title {
    font-size: 4.267vw;
    padding: 4.533vw 6.4vw;
    border-radius: 2.667vw;
    margin-bottom: 6.667vw;
  }
}
.aboutusSection .aboutus_title::before {
  position: absolute;
  content: "";
  height: calc(100% - 30px);
  width: 15px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 14px;
  top: 15px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_title::before {
    left: 2.133vw;
    width: 1.6vw;
  }
}
.aboutusSection .aboutus_titleSub {
  padding-left: 56px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_titleSub {
    padding-left: 3.733vw;
    font-size: 4vw;
    line-height: 6.4vw;
    margin-bottom: 6.667vw;
  }
}
.aboutusSection .aboutus_titleSub::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 9px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_titleSub::before {
    left: 0;
    width: 1.067vw;
  }
}
.aboutusSection .aboutus .security_declaration {
  margin-bottom: 64px;
}
.aboutusSection .aboutus_prof {
  margin-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .aboutusSection .aboutus_prof {
    display: flex;
    justify-content: space-between;
  }
}
.aboutusSection .aboutus_profText {
  font-size: 16px;
  width: calc(100% - 425px);
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_profText {
    font-size: 14px;
    width: 100%;
  }
}
.aboutusSection .aboutus_profImage {
  width: 380px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_profImage {
    width: 100%;
  }
}
.aboutusSection .aboutus_profImage img {
  display: block;
  width: calc(100% - 26.5px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_profImage img {
    width: 52.267vw;
    margin-left: auto;
  }
}
.aboutusSection .aboutus_profSignature {
  position: absolute;
  z-index: 0;
  width: 229px;
  height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/top/bg_service.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 190%;
  right: 0;
  top: 292px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_profSignature {
    top: 21.333vw;
    width: 44.8vw;
    height: 43.733vw;
    font-size: 3.733vw;
    right: auto;
    left: 0;
  }
}
.aboutusSection .aboutus .credo {
  margin-top: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo {
    margin-top: 24.8vw;
  }
}
.aboutusSection .aboutus .credo_item {
  padding: 40px;
  border-radius: 20px;
  background-color: #FEF8F3;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_item {
    padding: 20.8vw 4.8vw 6.4vw;
    position: relative;
  }
}
.aboutusSection .aboutus .credo_item img {
  display: block;
  width: 220px;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_item img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 34.4vw;
  }
}
.aboutusSection .aboutus .credo_item + .credo_item {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_item + .credo_item {
    margin-top: 20.8vw;
  }
}
.aboutusSection .aboutus .credo_itemText {
  font-size: 28px;
  font-weight: 600;
  min-height: 215px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_itemText {
    font-size: 4vw;
    text-align: center;
    min-height: 0;
  }
}
.aboutusSection .aboutus .credo_item.bg_credo {
  position: relative;
}
.aboutusSection .aboutus .credo_item.bg_credo::after {
  content: "";
  display: block;
  right: 39px;
  bottom: 0;
  position: absolute;
  background-image: url(../images/pages/image_vision02.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  width: 186px;
  height: 199px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_item.bg_credo::after {
    width: 22.4vw;
    height: 24vw;
    right: 12vw;
    top: -7.2vw;
  }
}
.aboutusSection .aboutus .credo_contents {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .aboutusSection .aboutus .credo_contents {
    justify-content: space-between;
    width: calc(100% - 280px);
    margin-top: 68px;
  }
}
@media screen and (min-width: 768px) {
  .aboutusSection .aboutus .credo_contentsItem {
    width: calc((100% - 40px) / 2);
    margin-bottom: 70px;
  }
}
.aboutusSection .aboutus .credo_contentsItemTitle {
  background-color: #073190;
  color: #fff;
  font-weight: 500;
  font-size: 27px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_contentsItemTitle {
    font-size: 4.267vw;
    height: 10.667vw;
    margin-bottom: 4vw;
  }
}
.aboutusSection .aboutus .credo_contentsItemBlock {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_contentsItemBlock {
    font-size: 3.733vw;
    margin-bottom: 5.333vw;
  }
}
.aboutusSection .aboutus .credo_contentsItemBlockTitle {
  font-size: 22px;
  color: #F48A27;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus .credo_contentsItemBlockTitle {
    font-size: 4.267vw;
  }
}
.aboutusSection .aboutus_contents {
  padding-left: 240px;
  letter-spacing: 0.05em;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_contents {
    padding: 0;
    margin-bottom: 8vw;
  }
}
.aboutusSection .aboutus_contents .color_highlight2 {
  color: #F48A27;
  font-size: 30px;
  font-family: serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_contents .color_highlight2 {
    font-size: 5.333vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .aboutusSection .aboutus_contents .color_highlight2 {
    margin-left: -220px;
  }
}
.aboutusSection .aboutus_contents .policyList {
  margin-top: 64px;
  counter-reset: count;
}
.aboutusSection .aboutus_contents .policyList_item {
  padding-left: 100px;
  position: relative;
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .aboutusSection .aboutus_contents .policyList_item {
    padding-left: 20.533vw;
  }
}
.aboutusSection .aboutus_contents .policyList_item + li {
  margin-top: 30px;
}
.aboutusSection .aboutus_contents .policyList_item::after {
  content: "";
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  color: #007CC5;
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: 200;
}

.signature {
  text-align: right;
  font-size: 16px;
}
.signature .date {
  margin-bottom: 47px;
}
.signature .name {
  margin-bottom: 30px;
}
.signature .name span {
  font-family: serif;
  font-size: 25px;
}
.signature .other {
  display: flex;
  text-align: left;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .signature .other {
    margin-bottom: 12vw;
  }
}

.officeSection {
  background-image: url(../images/top/bg_review.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fff;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .officeSection {
    padding: 0 5.333vw;
    background-position: center 191%;
  }
}
.officeSection .officeList {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.officeSection .officeList_item {
  box-shadow: 0 5px 20px #C8CDDE;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .officeSection .officeList_item {
    width: calc((100% - 42px) / 2);
    margin-bottom: 50px;
  }
}
.officeSection .officeList_itemTitle {
  padding: 26px 38px;
  background: #007CC5;
  color: #fff;
  padding-left: 61px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .officeSection .officeList_itemTitle {
    padding: 4vw 7.733vw;
    font-size: 4vw;
  }
}
.officeSection .officeList_itemTitle::before {
  position: absolute;
  content: "";
  height: calc(100% - 52px);
  width: 9px;
  border-radius: 20px;
  background-color: #fff;
  display: block;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .officeSection .officeList_itemTitle::before {
    left: 4vw;
    width: 1.067vw;
  }
}
.officeSection .officeList_itemContents {
  padding: 38px;
  font-size: 16px;
}
.officeSection .officeList_itemContents .flex_item.item01 {
  width: 85px;
}
.officeSection .officeList_itemContents .flex_item.item02 {
  width: calc(100% - 85px);
}
@media screen and (max-width: 767px) {
  .officeSection .officeList_itemContents {
    padding: 4vw;
    font-size: 3.733vw;
  }
}
.officeSection .officeList_itemContents iframe {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .officeSection .officeList_itemContents iframe {
    margin-top: 4vw;
  }
}

.summary {
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .summary {
    margin-bottom: 10.667vw;
  }
}
.summary tr th, .summary tr td {
  padding: 9px 29px;
  font-weight: 500;
  line-height: 150%;
  background-color: #F1F3F9;
}
@media screen and (max-width: 767px) {
  .summary tr th, .summary tr td {
    padding: 2.133vw;
    font-size: 3.733vw;
  }
}
.summary tr th {
  background-color: #073190;
  color: #fff;
  text-align: left;
}

.single .pageHead_single {
  height: 239px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single .pageHead_single {
    height: 22.133vw;
    background-size: auto 100%;
  }
}
.single .pageHead_singleTitle {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .single .pageHead_singleTitle {
    font-size: 4.8vw;
  }
}
.single .pageHead_single .bg_word {
  position: absolute;
  font-size: 156px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  opacity: 0.15;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .single .pageHead_single .bg_word {
    font-size: 16vw;
  }
}
.single .officesSection {
  margin: 40px auto auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .single .officesSection {
    padding: 0 5.333vw;
  }
}
.single .officesSection .offices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices {
    flex-wrap: wrap;
    margin-bottom: 16vw;
  }
}
.single .officesSection .offices_image {
  height: 356px;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_image {
    width: 100%;
    height: 53.333vw;
    margin-bottom: 20px;
  }
}
.single .officesSection .offices_summary {
  width: calc(50% - 80px);
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_summary {
    width: 100%;
  }
}
.single .officesSection .offices_summary .table_summary {
  width: 100%;
}
.single .officesSection .offices_summary .table_summary tr th, .single .officesSection .offices_summary .table_summary tr td {
  padding: 10px 18px;
  vertical-align: middle;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_summary .table_summary tr th, .single .officesSection .offices_summary .table_summary tr td {
    padding: 2.133vw;
    font-size: 3.733vw;
  }
}
.single .officesSection .offices_summary .table_summary tr th {
  background-color: #073190;
  color: #fff;
  white-space: nowrap;
}
.single .officesSection .offices_summary .table_summary tr td {
  background-color: #F1F3F9;
}
.single .officesSection .offices_summary .table_summary tr td a.map2 {
  display: flex;
  align-items: end;
  float: right;
  margin-top: 15px;
  line-height: 100%;
  margin-bottom: 8px;
}
.single .officesSection .offices_summary .table_summary tr td a.map2::after {
  content: "";
  display: block;
  width: 35px;
  height: 10px;
  background-image: url(../images/icon_arrow_right01.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  margin-left: 10px;
}
.single .officesSection .offices_title {
  position: relative;
  z-index: 1;
  font-size: 65px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_title {
    margin-bottom: 10.667vw;
  }
}
.single .officesSection .offices_title .eng {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  line-height: 88px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_title .eng {
    font-size: 10.133vw;
    line-height: 12.533vw;
  }
}
.single .officesSection .offices_title .jp {
  margin-top: 7px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_title .jp {
    font-size: 3.2vw;
    margin-top: 0;
  }
}
.single .officesSection .offices_titleSub {
  padding-left: 56px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_titleSub {
    font-size: 4vw;
    padding-left: 14px;
    line-height: 24px;
  }
}
.single .officesSection .offices_titleSub::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 9px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .single .officesSection .offices_titleSub::before {
    left: 0;
    width: 4px;
  }
}
.single .officesSection .officesNews {
  border-top: 1px solid rgba(191, 202, 227, 0.9921568627);
  margin-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .officesNews {
    margin-bottom: 9.867vw;
  }
}
.single .officesSection .officesNews_item {
  border-bottom: 1px solid #BFCAE3;
}
.single .officesSection .officesNews_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .single .officesSection .officesNews_link {
    padding: 4.667vw 0;
  }
}
.single .officesSection .officesNews_link .date {
  font-size: 15px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .officesNews_link .date {
    font-size: 12px;
    width: auto;
    margin-right: 5.067vw;
  }
}
.single .officesSection .officesNews_link .category {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  height: 30px;
  border-radius: 15px;
  background-color: #ccc;
  color: #fff;
  min-width: 120px;
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .officesNews_link .category {
    padding: 0.8vw 6.4vw;
    font-size: 3.467vw;
    height: auto;
    min-width: 0;
  }
}
@media screen and (min-width: 768px) {
  .single .officesSection .officesNews_link .category + .title {
    margin-left: 45px;
  }
}
.single .officesSection .officesNews_link .title {
  max-width: calc(100% - 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .single .officesSection .officesNews_link .title {
    width: 100%;
    max-width: 100%;
    font-size: 3.733vw;
    margin-top: 3.467vw;
  }
}
.single .officesSection .link {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .single .officesSection .priceWrapper {
    max-width: 100%;
    overflow: auto;
  }
}
.single .officesSection table.price {
  width: 100%;
  margin-bottom: 60px;
}
.single .officesSection table.price tr th, .single .officesSection table.price tr td {
  padding: 13px 25px;
}
@media screen and (max-width: 767px) {
  .single .officesSection table.price tr th, .single .officesSection table.price tr td {
    padding: 2.133vw;
    font-size: 3.733vw;
  }
}
.single .officesSection table.price thead tr th {
  background-color: #073190;
  padding: 13px 25px;
  vertical-align: middle;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single .officesSection table.price thead tr th {
    padding: 2.133vw;
    font-size: 3.733vw;
    white-space: nowrap;
  }
}
.single .officesSection table.price thead tr th:nth-of-type(1) {
  border-right: 4px solid #fff;
}
.single .officesSection table.price thead tr th:nth-of-type(2) {
  background-color: #5E803F;
}
.single .officesSection table.price thead tr th:nth-of-type(3) {
  background-color: #4F739C;
}
.single .officesSection table.price thead tr th:nth-of-type(4) {
  background-color: #B8912F;
}
.single .officesSection table.price thead tr th:nth-of-type(5) {
  background-color: #A66232;
}
.single .officesSection table.price thead tr th:nth-of-type(6) {
  background-color: #3A548E;
}
.single .officesSection table.price thead tr th:nth-of-type(7) {
  background-color: #353E4E;
}
.single .officesSection table.price tbody tr td {
  background-color: #F1F3F9;
  text-align: center;
}
.single .officesSection table.price tbody tr td:nth-of-type(1) {
  border-right: 4px solid #fff;
}
.single .officesSection table.price tbody tr td:nth-of-type(2) {
  background-color: #E6ECE1;
}
.single .officesSection table.price tbody tr td:nth-of-type(3) {
  background-color: #E4E9F0;
}
.single .officesSection table.price tbody tr td:nth-of-type(4) {
  background-color: #F4EEDF;
}
.single .officesSection table.price tbody tr td:nth-of-type(5) {
  background-color: #F1E7DF;
}
.single .officesSection table.price tbody tr td:nth-of-type(6) {
  background-color: #E1E5EE;
}
.single .officesSection table.price tbody tr td:nth-of-type(7) {
  background-color: #E0E1E4;
}
.single .officesSection table.service,
.single .officesSection table.other {
  margin-bottom: 60px;
}
.single .officesSection table.service tr th, .single .officesSection table.service tr td,
.single .officesSection table.other tr th,
.single .officesSection table.other tr td {
  padding: 13px 25px;
}
@media screen and (max-width: 767px) {
  .single .officesSection table.service tr th, .single .officesSection table.service tr td,
  .single .officesSection table.other tr th,
  .single .officesSection table.other tr td {
    padding: 2.133vw;
    font-size: 3.733vw;
  }
}
.single .officesSection table.service thead th,
.single .officesSection table.other thead th {
  background-color: #073190;
  padding: 13px 25px;
  vertical-align: middle;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single .officesSection table.service thead th,
  .single .officesSection table.other thead th {
    padding: 2.133vw;
    font-size: 3.733vw;
  }
}
.single .officesSection table.service tbody td,
.single .officesSection table.other tbody td {
  background-color: #F1F3F9;
}
.single .officesSection table.service tbody td:nth-of-type(1),
.single .officesSection table.other tbody td:nth-of-type(1) {
  font-weight: 500;
  text-align: center;
}
.single .officesSection .accessList {
  margin-bottom: 40px;
}
.single .officesSection .accessList_item {
  display: flex;
  align-items: flex-start;
  letter-spacing: 0.05em;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single .officesSection .accessList_item {
    flex-wrap: wrap;
  }
}
.single .officesSection .accessList_item .access_title {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .single .officesSection .accessList_item .access_title {
    width: 100%;
  }
}
.single .officesSection .accessList_item .access_title span {
  color: #007CC5;
}
.single .officesSection .accessList_item .access_title img {
  display: block;
  margin-right: 10px;
}
.single .officesSection .accessList_item .access_contents {
  width: calc(100% - 260px);
}
@media screen and (max-width: 767px) {
  .single .officesSection .accessList_item .access_contents {
    width: 100%;
    font-size: 14px;
    margin-bottom: 6.667vw;
  }
}

.map {
  width: 100%;
}
.map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.securitySection .firstSentence {
  text-align: center;
  margin-bottom: 100px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.securitySection .security {
  padding-bottom: 50px;
}
.securitySection .security.pb01 {
  padding-bottom: 100px;
}
.securitySection .security > p {
  font-weight: 500;
}
.securitySection .security > p + .security_contents {
  margin-top: 40px;
}
.securitySection .security_title {
  background-color: #fff;
  padding: 28px 28px 28px 56px;
  border-radius: 20px;
  font-size: 30px;
  line-height: 150%;
  position: relative;
  margin-bottom: 50px;
  font-weight: 500;
}
.securitySection .security_title::before {
  position: absolute;
  content: "";
  height: calc(100% - 30px);
  width: 15px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 14px;
  top: 15px;
}
.securitySection .security_titleSub {
  padding-left: 56px;
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .securitySection .security_titleSub {
    padding-left: 3.733vw;
    font-size: 4vw;
  }
}
.securitySection .security_titleSub::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 9px;
  border-radius: 20px;
  background-color: #073190;
  display: block;
  left: 17px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .securitySection .security_titleSub::before {
    left: 0;
    width: 1.067vw;
  }
}
.securitySection .security_title + p + h3 {
  margin-top: 52px;
}
.securitySection .security_contents {
  padding-left: 240px;
  letter-spacing: 0.05em;
  margin-bottom: 68px;
}
.securitySection .security_contents > p + .payroll_contentsList {
  margin-top: 60px;
}
.securitySection .security_contents::after {
  content: "";
  display: block;
  clear: both;
}
.securitySection .security_contentsTitle {
  font-size: 23px;
  line-height: 34px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid #8398C7;
  margin-bottom: 35px;
}
.securitySection .securityList {
  margin-top: 64px;
  counter-reset: count;
}
.securitySection .securityList_item {
  padding-left: 100px;
  position: relative;
  font-size: 16px;
  line-height: 200%;
}
.securitySection .securityList_item + li {
  margin-top: 30px;
}
.securitySection .securityList_item::after {
  content: "";
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  color: #007CC5;
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: 200;
}
.securitySection .security .color_highlight {
  color: #F48A27;
}
.securitySection .security .color_highlight02 {
  color: #F48A27;
  font-family: serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 68px;
}

@media screen and (max-width: 767px) {
  .newsListSection {
    padding: 0 5.333vw;
  }
}
.newsListSection .newsListTab {
  display: flex;
  justify-content: center;
  margin-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .newsListSection .newsListTab {
    margin-bottom: 9.867vw;
  }
}
.newsListSection .newsListTab_item {
  text-align: center;
  width: 200px;
  padding-bottom: 20px;
  font-size: 22px;
  line-height: 32px;
  border-bottom: 3px solid #BFCAE3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .newsListSection .newsListTab_item {
    font-size: 3.733vw;
    padding-bottom: 2.133vw;
  }
}
.newsListSection .newsListTab_item::after {
  content: "";
  display: block;
  position: absolute;
  border-right: 14px solid transparent;
  border-top: 14px solid #BFCAE3;
  border-left: 14px solid transparent;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .newsListSection .newsListTab_item::after {
    border-right: 1.867vw solid transparent;
    border-top: 1.867vw solid #BFCAE3;
    border-left: 1.867vw solid transparent;
  }
}
.newsListSection .newsListTab_item.active {
  font-weight: bold;
  border-bottom: 3px solid;
}
.newsListSection .newsListTab_item.active::after {
  border-top: 14px solid;
}
@media screen and (max-width: 767px) {
  .newsListSection .newsListTab_item.active::after {
    border-top: 1.867vw solid;
  }
}
.newsListSection .newsList {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.newsListSection .newsList_item {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 5px 20px #C8CDDE;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .newsListSection .newsList_item {
    padding: 5.333vw;
  }
}
@media screen and (min-width: 768px) {
  .newsListSection .newsList_item {
    width: calc((100% - 90px) / 3);
    margin-right: 45px;
  }
  .newsListSection .newsList_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.newsListSection .newsList_link .date {
  font-size: 15px;
  line-height: 32px;
  margin-bottom: 15px;
}
.newsListSection .newsList_link .title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}
.newsListSection .newsList_link .title + .body {
  margin-top: 14px;
  border-top: 1px solid #F1F3F9;
  padding-top: 17px;
}
.newsListSection .newsList_link .body {
  display: block;
  font-size: 16px;
  line-height: 32px;
}
.newsListSection .newsList_link .body + .link {
  margin-top: 26px;
}
.newsListSection .newsList_link .link {
  display: flex;
  justify-content: end;
}
.newsListSection .newsList_link .link_button::before {
  opacity: 0;
  transition: 0.2s;
}
.newsListSection .newsList_link:hover .link_button::before {
  opacity: 1;
}
.newsListSection .catList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.newsListSection .catList .post_cat,
.newsListSection .catList .category {
  padding: 0 27px 2px;
  font-size: 16px;
  line-height: 100%;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}
.newsListSection .catList .post_cat {
  color: #fff;
}
.newsListSection .catList .category {
  border: 1px solid;
  background-color: #fff;
}
.newsListSection .newsList_pagenavi {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.newsListSection .newsList_pagenavi > span, .newsListSection .newsList_pagenavi > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 30px;
  background-color: #fff;
}
.newsListSection .newsList_pagenavi > span + *, .newsListSection .newsList_pagenavi > a + * {
  margin-left: 10px;
}
.newsListSection .newsList_pagenavi > span.current, .newsListSection .newsList_pagenavi > a.current {
  background-color: #073190;
  color: #fff;
}
.newsListSection .single-head,
.newsListSection .single-body {
  max-width: 1200px;
  margin: auto auto 100px;
}
.newsListSection .single-headTitle,
.newsListSection .single-bodyTitle {
  font-size: 28px;
  line-height: 50px;
  font-weight: 500;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-headTitle,
  .newsListSection .single-bodyTitle {
    font-size: 4vw;
  }
}
.newsListSection .single-head .date,
.newsListSection .single-body .date {
  display: flex;
  justify-content: center;
  margin: 30px auto 70px;
}
.newsListSection .single-head .link,
.newsListSection .single-body .link {
  justify-content: end;
  margin-top: 50px;
}
.newsListSection .single-head .link_button::before,
.newsListSection .single-body .link_button::before {
  opacity: 0;
  transition: 0.2s;
}
.newsListSection .single-head .link_button:hover::before,
.newsListSection .single-body .link_button:hover::before {
  opacity: 1;
}
.newsListSection .single-body__content {
  font-size: 16px;
  color: #1E324A;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content {
    margin: 0 5.333vw;
    font-size: 3.733vw;
    line-height: 200%;
  }
}
.newsListSection .single-body__content * {
  line-height: 200%;
  letter-spacing: 0.05em;
}
.newsListSection .single-body__content > p + * {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content > p + * {
    margin-top: 5.333vw;
  }
}
.newsListSection .single-body__content h1 {
  font-size: 26px;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #073190;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content h1 {
    font-size: 5.333vw;
  }
}
.newsListSection .single-body__content h2 {
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #1E324A;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFEE94;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content h2 {
    font-size: 5.333vw;
  }
}
.newsListSection .single-body__content h3 {
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content h3 {
    font-size: 4.8vw;
  }
}
.newsListSection .single-body__content h3::before {
  content: "●";
  color: #073190;
  margin-right: 5px;
}
.newsListSection .single-body__content h4 {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.05em;
  background: #FFEE94;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content h4 {
    font-size: 4.267vw;
  }
}
.newsListSection .single-body__content ol, .newsListSection .single-body__content ul {
  counter-reset: count;
}
.newsListSection .single-body__content ol + *, .newsListSection .single-body__content ul + * {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content ol + *, .newsListSection .single-body__content ul + * {
    margin-top: 5.333vw;
  }
}
.newsListSection .single-body__content ol li, .newsListSection .single-body__content ul li {
  position: relative;
  padding-left: 20px;
}
.newsListSection .single-body__content ol li::before, .newsListSection .single-body__content ul li::before {
  left: 0;
  top: 0;
  position: absolute;
  counter-increment: count;
  color: #073190;
}
.newsListSection .single-body__content ol li::before {
  content: counter(count) ".";
  margin-right: 5px;
}
.newsListSection .single-body__content ul li::before {
  content: "・";
  margin-right: 5px;
  font-weight: bold;
}
.newsListSection .single-body__content a {
  color: #073190;
  text-decoration: underline;
}
.newsListSection .single-body__content blockquote {
  background: #F1FCFF;
  border-radius: 4px;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .newsListSection .single-body__content blockquote {
    padding: 5.333vw 8vw;
  }
}
.newsListSection .single-body__content blockquote cite {
  display: block;
  text-align: right;
}

.page404 {
  padding: 90px 0 100px;
}
.page404 .contentContainer_title {
  text-align: center;
  font-size: 20px;
  line-height: 200%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page404 .contentContainer_title {
    font-size: 3.733vw;
  }
}
.page404 .contentContainer_title .eng {
  display: block;
  font-size: 76px;
  color: transparent;
  text-shadow: 0 0 2px rgba(7, 49, 144, 0.26);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page404 .contentContainer_title .eng {
    font-size: 12vw;
    letter-spacing: 0;
  }
}
.page404_link {
  margin: auto;
  max-width: 309px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background-color: #F48A27;
  border-radius: 20px;
}

.slider {
  margin: auto;
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slider .slick-track,
.slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slider .slick-list:focus {
  outline: none;
}
.slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slider .slick-list .slick-slide {
  padding: 0;
  float: left;
  height: 100%;
  min-height: 1px;
}
@media screen and (max-width: 767px) {
  .slider .slick-list .slick-slide {
    padding: 0;
  }
}
.slider .slick-list .slick-slide a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slider .slick-prev,
.slider .slick-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border-top: 2px solid #ac9e6d;
  border-left: 2px solid #ac9e6d;
}
@media screen and (max-width: 767px) {
  .slider .slick-prev,
  .slider .slick-next {
    display: none !important;
  }
}
.slider .slick-prev {
  left: 9rem;
  transform: rotate(-45deg);
}
.slider .slick-next {
  right: 9rem;
  transform: rotate(135deg);
}
.slider .slide-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  z-index: 1;
  transform: translate(-50%, 3rem);
}
.slider .slide-dots li {
  padding: 0;
  position: relative;
  background: none;
  margin: 0 0.5rem;
}
.slider .slide-dots li button {
  background: none;
}
.slider .slide-dots li::after {
  content: "";
  position: absolute;
  height: 1.2rem;
  width: 1.2rem;
  background: #d5d5d5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.2rem;
}
.slider .slide-dots li.slick-active::after {
  background: #e5a53d;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}/*# sourceMappingURL=application.css.map */