@charset "UTF-8";
.shutter {
  background: #fff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

body.is_closed {
  overflow: hidden;
}

.fade-item {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1.2s, visibility 1.2s, transform 1.2s;
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.front_page .hero {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .front_page .hero {
    padding: 15px 0 0 0;
  }
  .front_page .hero .catch {
    width: min(88vw, 580px);
    position: absolute;
    top: clamp(80px, 20vw, 150px);
    right: 4vw;
  }
  .front_page .hero .image {
    width: min(80vw, 568px);
  }
  .front_page .hero .image_pc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .front_page .hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
  .front_page .hero .catch {
    width: min(55vw, 600px);
    position: absolute;
    top: min(12vw, 180px);
    left: min(37vw, 800px);
  }
  .front_page .hero .image {
    width: min(70vw, 910px);
  }
  .front_page .hero .image_sp {
    display: none;
  }
}

.scroll_hint {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  .scroll_hint {
    left: min(80vw, 568px);
  }
}
@media screen and (min-width: 1025px) {
  .scroll_hint {
    left: min(70vw, 910px);
  }
}
.scroll_hint span {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-size: 10px;
  font-family: var(--font-opensans);
  color: var(--color-gray);
  line-height: 1;
  position: absolute;
  top: -45px;
  left: 16px;
}

.scroll_hint::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 0.5px;
  height: 30px;
  background: var(--color-gray);
  animation: pathmove 1.8s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.whats {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .whats {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .whats {
    margin-top: 90px;
    margin-bottom: 80px;
  }
}
.whats .catch {
  font-family: var(--font-notosans);
}
@media screen and (max-width: 1024px) {
  .whats .catch {
    margin-bottom: 30px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1025px) {
  .whats .catch {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 45px;
  }
}
.whats .catch .catch_01 {
  max-width: 472px;
}
@media screen and (max-width: 1024px) {
  .whats .catch .catch_01 {
    margin: 0 auto;
    padding: 0 20px;
  }
}
.whats .catch .catch_02 {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .whats .catch .catch_02 {
    font-size: 18px;
    margin-top: 1em;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .whats .catch .catch_02 {
    font-size: 20px;
    margin-left: -2.5em;
  }
}
.whats .text {
  font-family: var(--font-notosans);
  max-width: 580px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .whats .text {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .whats .text {
    font-size: 17px;
    text-align: center;
  }
}
.whats .bg_right {
  position: absolute;
  top: -20px;
  right: min(3vw, 30px);
  z-index: -1;
  width: min(20vw, 200px);
}
.whats .bg_left {
  position: absolute;
  bottom: min(-3vw, -90px);
  left: min(2vw, 20px);
  z-index: -1;
  width: min(20vw, 200px);
}
@media screen and (max-width: 1024px) {
  .whats .link_btn {
    max-width: 240px;
    margin: 25px auto 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .whats .link_btn {
    max-width: 280px;
    margin: 30px auto 0 auto;
  }
}

.front_banners {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  /* slick のカスタマイズ部分 */
}
.front_banners .banner {
  max-width: 1024px;
}
.front_banners .banner a {
  transition: 0.3s;
}
.front_banners .banner a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.front_banners .banner img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .front_banners {
    margin-bottom: 60px;
  }
  .front_banners .banner {
    margin: 0 0 20px 0;
  }
}
@media screen and (min-width: 1025px) {
  .front_banners {
    margin-bottom: 90px;
  }
  .front_banners .banner {
    margin: 0 10px 30px 10px;
  }
}
.front_banners .slick-dots li.slick-active button:before,
.front_banners .slick-dots li button:before {
  color: var(--primary-color);
}
.front_banners button.slider_arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 100px;
  height: 250px;
  z-index: 100;
  cursor: pointer;
}
.front_banners button.slider_arrow_prev {
  left: 0;
}
.front_banners button.slider_arrow_next {
  right: 0;
}

.front_news {
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-notosans);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .front_news {
    padding-top: 40px;
    padding-right: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .front_news {
    padding-top: 90px;
    padding-left: min(22vw, 300px);
    padding-right: 90px;
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
.front_news > .title {
  font-weight: 500;
  font-family: var(--font-notosans);
  line-height: 1;
}
.front_news > .title span {
  color: var(--primary-color);
}
@media screen and (max-width: 1024px) {
  .front_news > .title {
    font-size: 38px;
    padding-left: min(15vw, 150px);
  }
}
@media screen and (min-width: 1025px) {
  .front_news > .title {
    font-size: 52px;
  }
}
@media screen and (max-width: 549px) {
  .front_news .front_news_list {
    margin-top: 20px;
    padding-left: min(15vw, 150px);
  }
}
@media screen and (min-width: 550px) and (max-width: 1024px) {
  .front_news .front_news_list {
    margin-top: 20px;
    padding-left: clamp(80px, 28vw, 260px);
  }
}
@media screen and (min-width: 1025px) {
  .front_news .front_news_list {
    margin-top: 30px;
    padding-left: 150px;
  }
}
.front_news .front_news_list .item {
  padding: 20px 0;
  border-bottom: solid 1px var(--border-basic);
}
@media screen and (min-width: 1025px) {
  .front_news .front_news_list .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
}
.front_news .front_news_list .item .meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.front_news .front_news_list .item .meta .date {
  color: var(--primary-color);
  font-family: var(--font-opensans);
  font-size: 16px;
  margin-right: 10px;
  white-space: nowrap;
}


@media screen and (min-width: 1024px) {
  .front_news .front_news_list .item .meta .category_icons {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .front_news .front_news_list .item .meta {
    padding-bottom: 6px;
  }
}
.front_news .front_news_list .item .title {
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 2px;
}
.front_news .front_news_list .item .title a:link {
  text-decoration: none;
}
.front_news .front_news_list .item .title a:visited {
  text-decoration: none;
}
.front_news .front_news_list .item .title a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .front_news .link_btn {
    max-width: 220px;
    margin: 25px auto 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .front_news .link_btn {
    max-width: 240px;
    margin: 30px auto 0 auto;
  }
}
.front_news .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .front_news .bg {
    width: min(25vw, 200px);
  }
}
@media screen and (min-width: 1025px) {
  .front_news .bg {
    width: min(30vw, 400px);
  }
}

@media screen and (max-width: 1024px) {
  .front_reason {
    max-width: 740px;
    margin: 0 auto;
    margin-top: 90px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  .front_reason {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 150px;
    padding: 0 30px;
  }
}
.front_reason .title {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .front_reason .title {
    max-width: min(85vw, 480px);
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1024px) {
  .front_reason .title {
    max-width: 580px;
    margin-bottom: 60px;
  }
}
.front_reason .item {
  border-top: solid 1px #e5e5e5;
}
@media screen and (max-width: 1024px) {
  .front_reason .item {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1024px) {
  .front_reason .item {
    display: grid;
    gap: 40px;
    grid-template-columns: 40% 1fr;
    padding: 60px 0;
  }
}
@media screen and (max-width: 1024px) {
  .front_reason .item .item_header {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .front_reason .item .item_header {
    padding-left: 100px;
  }
}
.front_reason .item .item_header .icon {
  display: block;
  margin: 0 0 10px 0;
}
.front_reason .item .item_header .copy {
  font-weight: 500;
  font-size: 26px;
}
.front_reason .item .item_header .copy span {
  color: var(--primary-color);
}
.front_reason .item .bodycopy {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  .front_reason .item .bodycopy {
    padding-right: 100px;
  }
}
.front_reason .item .bodycopy strong {
  font-weight: 500;
  background: #fee9f0;
}
.front_reason .item:last-child {
  border-bottom: solid 1px #e5e5e5;
}

@media screen and (max-width: 579px) {
  .front_program_list {
    padding: 60px 20px 45px 20px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list {
    padding: 90px 30px 60px 30px;
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list {
    padding: 150px 30px 30px 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.front_program_list > .title {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .front_program_list > .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list > .title {
    margin-bottom: 30px;
    font-size: 34px;
  }
}
.front_program_list > .title span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 1.2em;
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.front_program_list .item {
  position: relative;
  border-top: solid 1px var(--border-basic);
}
@media screen and (max-width: 579px) {
  .front_program_list .item {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .item {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .item {
    padding: 30px 10px;
  }
}
.front_program_list .item .stack {
  position: relative;
}
.front_program_list .item .title {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 579px) {
  .front_program_list .item .title {
    padding: 0 10px;
    bottom: -20px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .item .title {
    padding: 0 10px;
    bottom: -20px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .item .title {
    padding: 0 10px;
    bottom: -25px;
  }
}
.front_program_list .item .title img {
  display: inline-block;
  background: #ffffff;
}
@media screen and (max-width: 579px) {
  .front_program_list .item .title img {
    padding: 6px 10px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .item .title img {
    padding: 6px 10px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .item .title img {
    padding: 10px 15px;
  }
}
.front_program_list .item .en {
  position: absolute;
  z-index: 2;
  padding-right: 20px;
}
@media screen and (max-width: 579px) {
  .front_program_list .item .en {
    left: 20px;
    bottom: 30px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .item .en {
    left: 20px;
    bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .item .en {
    left: 20px;
    bottom: 40px;
  }
}
.front_program_list .item .image {
  position: relative;
  width: 100%;
  padding-top: 81.25%;
  overflow: hidden;
}
.front_program_list .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.front_program_list .item a:hover .image img {
  opacity: 0.8;
  transform: scale(1.05);
}
.front_program_list .item .btn {
  margin-top: 30px;
  text-align: right;
}
.front_program_list .item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 70px;
  height: 1px;
  background: var(--primary-color);
}
.front_program_list .item_childcare::after {
  background: var(--childcare-border);
}
.front_program_list .item_medical::after {
  background: var(--medical-border);
}
.front_program_list .item_automobile::after {
  background: var(--automobile-border);
}
.front_program_list .item_building::after {
  background: var(--building-border);
}
.front_program_list .item_it::after {
  background: var(--it-border);
}
.front_program_list .item_public::after {
  background: var(--public-border);
}
@media screen and (max-width: 579px) {
  .front_program_list .item_public {
    border-bottom: solid 1px var(--border-basic);
  }
}
@media screen and (min-width: 580px) and (max-width: 1024px) {
  .front_program_list .item_it, .front_program_list .item_public {
    border-bottom: solid 1px var(--border-basic);
  }
}
@media screen and (min-width: 1025px) {
  .front_program_list .item_building, .front_program_list .item_it, .front_program_list .item_public {
    border-bottom: solid 1px var(--border-basic);
  }
}

.front_recruit {
  font-weight: 500;
  font-family: var(--font-notosans);
  background: url("../image/front/recruit_bg.png");
  background-size: cover;
  word-wrap: break-word;
}
@media screen and (max-width: 1024px) {
  .front_recruit {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.front_recruit .filter {
  background: url("../image/front/recruit_filter.png") repeat;
}
@media screen and (max-width: 1024px) {
  .front_recruit .wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit .wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 65px;
  }
}
.front_recruit .title_01 {
  font-weight: 400;
  line-height: 1;
  color: #b70035;
  mix-blend-mode: color-dodge;
  font-family: var(--font-opensans);
}
@media screen and (max-width: 1024px) {
  .front_recruit .title_01 {
    font-size: 10vw;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit .title_01 {
    font-size: 102px;
    margin-bottom: 45px;
  }
}
.front_recruit .title_02 {
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .front_recruit .title_02 {
    font-size: 5.5vw;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit .title_02 {
    font-size: 54px;
    margin-bottom: 20px;
  }
}
.front_recruit .text {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .front_recruit .text {
    font-size: max(2.4vw, 15px);
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit .text {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.front_recruit .btn {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .front_recruit .btn {
    width: 220px;
  }
}
@media screen and (min-width: 1025px) {
  .front_recruit .btn {
    width: 280px;
  }
}

.front_campuslife {
  font-weight: 500;
  font-family: var(--font-notosans);
}
@media screen and (max-width: 1024px) {
  .front_campuslife {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .front_campuslife .contents_pc {
    display: none;
  }
  .front_campuslife .contents_sp {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  .front_campuslife .contents_sp .stack {
    text-align: center;
  }
  .front_campuslife .contents_sp .stack .text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .front_campuslife .contents_sp .stack .btn {
    width: 200px;
    margin: 30px auto 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .front_campuslife {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .front_campuslife .contents_sp {
    display: none;
  }
  .front_campuslife .contents_pc {
    width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .front_campuslife .contents_pc .stack {
    position: absolute;
    bottom: 240px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .front_campuslife .contents_pc .stack .text {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .front_campuslife .contents_pc .stack .btn {
    width: 240px;
    margin: 30px auto 0 auto;
  }
}

.front_visitor_menu {
  background: #f7f7f7;
}
@media screen and (max-width: 1024px) {
  .front_visitor_menu {
    padding: 45px 15px 45px 15px;
  }
}
@media screen and (min-width: 1025px) {
  .front_visitor_menu {
    padding: 60px 30px 60px 30px;
  }
}
.front_visitor_menu > .title {
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .front_visitor_menu > .title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .front_visitor_menu > .title {
    font-size: 34px;
    margin-bottom: 45px;
  }
}
.front_visitor_menu > .title span {
  font-weight: 400;
  font-family: var(--font-opensans);
  display: block;
  font-size: 14px;
}
.front_visitor_menu .items {
  display: grid;
}
@media screen and (max-width: 1024px) {
  .front_visitor_menu .items {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .front_visitor_menu .items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.front_visitor_menu .items .item {
  background: #ffffff;
  border-top: solid 1px var(--primary-color);
}
.front_visitor_menu .items .item .head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .front_visitor_menu .items .item .head {
    padding: 15px 10px 15px 10px;
  }
}
@media screen and (min-width: 1025px) {
  .front_visitor_menu .items .item .head {
    padding: 15px 20px 15px 20px;
  }
}
.front_visitor_menu .items .item .head .category {
  font-weight: 500;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .front_visitor_menu .items .item .head .category {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .front_visitor_menu .items .item .head .category {
    font-size: 15px;
  }
}
.front_visitor_menu .items .item .head .arrow {
  position: relative;
  width: 30px;
  height: 23px;
  margin-left: auto;
}
.front_visitor_menu .items .item .head .arrow::before {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 18px;
  height: 1px;
  background: var(--primary-color);
}
.front_visitor_menu .items .item .head .arrow::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 8px;
  height: 1px;
  background: var(--primary-color);
  transform: rotate(35deg);
  transform-origin: top right;
}
.front_visitor_menu .items .item .image {
  position: relative;
  width: 100%;
  padding-top: 57%;
  overflow: hidden;
}
.front_visitor_menu .items .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.front_visitor_menu .items .item a:hover .head .category {
  color: var(--primary-color);
}
.front_visitor_menu .items .item a:hover .image img {
  opacity: 0.8;
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .front_access {
    padding-top: 45px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .front_access {
    padding-top: 60px;
  }
}
.front_access > .title {
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .front_access > .title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .front_access > .title {
    font-size: 34px;
    margin-bottom: 45px;
  }
}
.front_access > .title span {
  font-weight: 400;
  font-family: var(--font-opensans);
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .front_access .google_map {
    margin: 0 0 30px 0;
  }
}
@media screen and (min-width: 1025px) {
  .front_access .google_map {
    max-width: 1170px;
    margin: 0 auto 30px auto;
  }
}
@media screen and (max-width: 1024px) {
  .front_access .google_map iframe {
    max-height: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .front_access .access_info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 45px auto 45px auto;
  }
}
.front_access .access_info .address {
  font-weight: 300;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .front_access .access_info .address {
    margin: 30px 20px 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .front_access .access_info .info {
    margin: 30px 20px 30px 20px;
  }
}
.front_access .access_info .info h3:first-child {
  margin-top: 0;
}
.front_access .access_info .info h3 {
  position: relative;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .front_access .access_info .info h3 {
    font-size: 18px;
    padding-left: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .front_access .access_info .info h3::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--primary-color);
  }
}
@media screen and (min-width: 1025px) {
  .front_access .access_info .info h3 {
    font-size: 20px;
    padding-left: 18px;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .front_access .access_info .info h3::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--primary-color);
  }
}
.front_access .access_info .info p {
  font-weight: 300;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .front_access .access_info .info p {
    margin-bottom: 1.4em;
  }
}
@media screen and (min-width: 1025px) {
  .front_access .access_info .info p {
    margin-bottom: 1.5em;
  }
}
.front_access .access_info .info a:link {
  color: var(--primary-color);
}
.front_access .access_info .info a:visited {
  color: var(--primary-color);
}
.front_access .access_info .info a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@media screen and (max-width: 499px) {
  .text_banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px;
    max-width: 680px;
    margin: 30px auto 45px auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) {
  .text_banners {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 0 20px;
    max-width: 680px;
    margin: 30px auto 45px auto;
  }
}
@media screen and (min-width: 1025px) {
  .text_banners {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 680px;
    margin: 60px auto;
  }
}
.text_banners .text_banner {
  display: flex;
  align-items: center;
  border: solid 1px var(--color-gray);
  border-radius: 2px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .text_banners .text_banner {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 15px 12px 15px;
  }
}
@media screen and (min-width: 1025px) {
  .text_banners .text_banner {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    padding: 10px 15px 12px 15px;
  }
}
.text_banners .text_banner span {
  font-size: 0.8em;
}
.text_banners a:link {
  color: #000000;
  text-decoration: none;
}
.text_banners a:visited {
  color: #000000;
  text-decoration: none;
}
.text_banners a:hover {
  color: #000000;
  text-decoration: underline;
}

/*# sourceMappingURL=front.css.map */