@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;700&display=swap");
/* Sass Document */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  min-width: 1070px;
}
@media screen and (max-width: 640px) {
  html {
    width: 100%;
    min-width: inherit;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  color: #3c5c86;
  letter-spacing: 0.11em;
}

* {
  box-sizing: border-box;
  line-break: normal;
  overflow-wrap: break-word;
  word-break: normal;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

p,
li,
dt,
dd,
th,
td,
form {
  font-size: 1.4rem;
  line-height: 2;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure,
picture {
  display: block;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------------------------------------------------------------
*	モジュール
* --------------------------------------------------------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
.content-inner {
  width: 1070px;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .content-inner {
    width: 100%;
    padding: 0 40px;
  }
}

.content-heading * {
  text-align: center;
}

.content__title {
  font-size: 5.2rem;
}
@media screen and (max-width: 640px) {
  .content__title {
    font-size: 3rem;
  }
}

.content__title-jp {
  font-size: 2.4rem;
}
@media screen and (max-width: 640px) {
  .content__title-jp {
    font-size: 1.4rem;
  }
}

.text {
  font-size: 1.4rem;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  .text {
    font-size: 1.2rem;
    font-weight: normal !important;
    line-height: 1.6;
  }
}

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  outline: 2px solid #3c5c86;
  /* ボーダーの色と太さ */
  outline-offset: -2px;
  padding: 10px 30px;
  text-align: center;
  /* outline: none; */
  /*アニメーションの指定*/
  transition: ease 0.2s;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 640px) {
  .btn {
    outline: 1px solid #3c5c86;
    /* ボーダーの色と太さ */
    outline-offset: -1px;
    height: 30px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 52%;
  background: url(../img/arrow_b.png) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  right: 13px;
  transform: translateY(-50%);
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover::after {
    background-image: url(../img/arrow_w.png);
  }
}

/*ボタン内spanの形状*/
.btn span {
  font-size: 1.4rem;
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #3c5c86;
  letter-spacing: normal !important;
}
@media screen and (max-width: 640px) {
  .btn span {
    font-size: 1rem;
  }
}

.btn svg {
  position: absolute;
  right: 22px;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  fill: #3c5c86;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover span {
    color: #fff;
  }
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #3c5c86;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
@media (hover: hover) and (pointer: fine) {
  .bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.btn-viewplan {
  padding: 40px 0 10px;
}
.btn-viewplan .btn {
  background-color: #3c5c86;
  width: 300px;
  margin: 0 auto;
  position: relative;
  border: none;
}
@media screen and (max-width: 640px) {
  .btn-viewplan .btn {
    width: 83%;
  }
}
.btn-viewplan .btn::after {
  background-image: url(../img/arrow_w.png);
}
.btn-viewplan .btn span {
  color: #fff;
}
.btn-viewplan .btn svg {
  fill: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btn-viewplan .btn:hover::after {
    background-image: url(../img/arrow_b.png);
  }
  .btn-viewplan .btn:hover span {
    color: #3c5c86;
  }
  .btn-viewplan .btn:hover svg {
    fill: #3c5c86;
  }
}
.btn-viewplan .btn.bgleft:before {
  background: #fff;
}

.btn-top {
  position: fixed;
  bottom: 40px;
  right: 80px;
  transition: 0.3s;
  transform: translateY(0);
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .btn-top {
    width: 20%;
    height: auto;
    bottom: 20px;
    right: 20px;
  }
}
.btn-top img {
  transition: 0.3s;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .btn-top:hover img {
    transform: scale(1.1, 1.1);
  }
}
.btn-top.is-hide {
  transform: translateY(300%);
}

/* ----------------------------------------------------------------------------------------------------
*	bnner
* --------------------------------------------------------------------------------------------------*/
.banner {
  margin: 58px auto 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .banner {
    margin-top: 40px;
    padding: 0 40px;
  }
}
.banner .text {
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.11em;
  margin-bottom: 7px;
}
@media screen and (max-width: 640px) {
  .banner .text {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .banner a {
    transition: 0.3s;
  }
  .banner a:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	ヘッダー
* --------------------------------------------------------------------------------------------------*/
.header-inner {
  height: 60px;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .header-inner {
    height: auto;
    padding: 10px 0;
  }
}
@media screen and (max-width: 640px) {
  .header-inner .logo {
    width: 24%;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	フッター
* --------------------------------------------------------------------------------------------------*/
.footer-inner {
  height: 30px;
  background-color: #3c5c86;
}

.copyright {
  text-align: center;
  color: #fff;
  padding-top: 2px;
}
@media screen and (max-width: 640px) {
  .copyright {
    padding-top: 4px;
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	MV
* --------------------------------------------------------------------------------------------------*/
.main-visual img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------------------------------
*	about
* --------------------------------------------------------------------------------------------------*/
.about {
  background: url(../img/bg_pc_about.jpg) #ccdcf2 no-repeat bottom center/100% auto;
  padding-top: 15px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .about {
    background-image: url(../img/bg_sp_about.jpg);
    background-position: center 60%;
  }
}
.about .content-heading {
  padding-bottom: 67px;
}
@media screen and (max-width: 640px) {
  .about .content-heading {
    padding-bottom: 33px;
  }
}
.about .content-heading .content__title-jp {
  margin-top: 4px;
}
.about .content-heading .text {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .about .content-heading .text {
    margin-top: 15px;
  }
}

.about-media {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 640px) {
  .about-media {
    display: block;
  }
}
.about-media .bg-croud {
  position: absolute;
  top: -137px;
  left: -210px;
  width: 954px;
}
@media screen and (max-width: 640px) {
  .about-media .bg-croud {
    top: -100px;
    right: 0;
    width: 190%;
    left: -192px;
  }
}
.about-media.reverse {
  flex-direction: row-reverse;
}
.about-media.reverse .about-media__img-wrapper {
  margin-left: 0;
  margin-right: -20px;
}
@media screen and (max-width: 640px) {
  .about-media.reverse .about-media__img-wrapper {
    margin: 0 auto;
  }
}
.about-media.reverse .about-media__body {
  padding: 70px 80px 0 0;
}
@media screen and (max-width: 640px) {
  .about-media.reverse .about-media__body {
    padding: 15px 0 0 0;
  }
}
.about-media.reverse .bg-croud {
  top: -105px;
  left: -340px;
}
@media screen and (max-width: 640px) {
  .about-media.reverse .bg-croud {
    top: -100px;
    left: -200px;
    width: 188%;
  }
}
.about-media__img-wrapper {
  margin-left: -20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-media__img-wrapper {
    width: 84.7457627119%;
    margin: 0 auto;
  }
}
.about-media__body {
  padding: 40px 0 0 80px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .about-media__body {
    padding: 15px 0 0 0;
  }
}
.about-media__title {
  font-size: 5.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-media__title {
    font-size: 2.6rem;
  }
}
.about-media__title .eg {
  padding-left: 10px;
  font-size: 2.4rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 640px) {
  .about-media__title .eg {
    font-size: 1.2rem;
  }
}
.about-media__title-jp {
  font-size: 2.4rem;
  margin-top: 20px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-media__title-jp {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.about-media__text {
  margin-top: 6px;
  line-height: 2.19;
  letter-spacing: normal !important;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-media__text {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.6;
    margin-top: 10px;
  }
}

.about-media + .about-media {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .about-media + .about-media {
    margin-top: 30px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	area
* --------------------------------------------------------------------------------------------------*/
.area {
  background: url(../img/bg_area.jpg) no-repeat top center/100% auto;
  padding: 144px 0 0;
}
@media screen and (max-width: 640px) {
  .area {
    background-image: url(../img/bg_sp_area.jpg);
    padding-top: 70px;
  }
}
.area .content-inner {
  position: relative;
}
.area .content-heading {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}
@media screen and (max-width: 640px) {
  .area .content-heading {
    padding-top: 0;
  }
}
.area .map {
  position: absolute;
  top: 38px;
  right: 50%;
  width: 623px;
}
@media screen and (max-width: 640px) {
  .area .map {
    position: relative;
    right: 0;
    left: -20px;
    width: 110%;
    top: -26px;
    width: auto;
  }
}
.area__text-wrapper {
  width: 50%;
  margin-left: auto;
  padding: 33px 0 0 36px;
}
@media screen and (max-width: 640px) {
  .area__text-wrapper {
    width: 100%;
    padding: 0;
    margin-top: -14px;
  }
}
.area .area__text {
  line-height: 2.19;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  .area .area__text {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.6;
  }
}
.area .area__text + .area__text {
  margin-top: 2.15em;
}

/* ----------------------------------------------------------------------------------------------------
*	スライダー
* --------------------------------------------------------------------------------------------------*/
.loopslider {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin: 80px 0 -80px;
}
@media screen and (max-width: 640px) {
  .loopslider {
    margin: 40px 0 -40px;
  }
}
.loopslider ul {
  display: flex;
  flex-shrink: 0;
}
.loopslider ul.is-animation:first-child {
  -webkit-animation: slide1 120s -60s linear infinite;
          animation: slide1 120s -60s linear infinite;
}
.loopslider ul.is-animation:last-child {
  -webkit-animation: slide2 120s linear infinite;
          animation: slide2 120s linear infinite;
}
.loopslider ul li {
  margin: 0 10px;
}
@media screen and (max-width: 640px) {
  .loopslider ul li {
    width: 95px;
    height: 95px;
    margin: 0 1px;
  }
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ----------------------------------------------------------------------------------------------------
*	plan
* --------------------------------------------------------------------------------------------------*/
.plan {
  background: url(../img/bg_plan.jpg) #e4eefc no-repeat top center/100% auto;
  padding: 223px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .plan {
    background-image: url(../img/bg_sp_plan.jpg);
    padding-top: 72px;
  }
}
.plan .content__title.text-middle {
  font-size: 4.8rem;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  .plan .content__title.text-middle {
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.plan .content-inner {
  position: relative;
}
.plan .bg {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: calc(100% - 80px);
  margin-right: 15px;
  background: url(../img/bg_plan.png) no-repeat top right/cover;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 640px) {
  .plan .bg {
    top: 20px;
    width: calc(100% - 20px);
    margin-right: 0;
    height: 100%;
    background-image: url(../img/bg_sp_plan.png);
  }
}
@media screen and (max-width: 1070px) {
  .plan .bg {
    margin-left: 0;
  }
}
.plan .bg.reverse {
  margin-left: 15px;
  margin-right: calc(50% - 50vw);
  background-image: url(../img/bg_plan2.png);
  background-position: top left;
}
@media screen and (max-width: 640px) {
  .plan .bg.reverse {
    margin-right: 0;
    width: calc(100% - 20px);
    margin-left: auto;
    background-image: url(../img/bg_sp_plan2.png);
  }
}
@media screen and (max-width: 1070px) {
  .plan .bg.reverse {
    margin-right: 0;
  }
}
.plan .bg.bg-3 {
  background-image: url(../img/bg_plan3.png);
  top: 50px;
  height: calc(100% - 50px);
}
@media screen and (max-width: 640px) {
  .plan .bg.bg-3 {
    top: 20px;
    height: 100%;
    background-image: url(../img/bg_sp_plan3.png);
  }
}
.plan .grid {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  padding: 0 40px 40px;
  gap: 30px;
}
@media screen and (max-width: 640px) {
  .plan .grid {
    display: block;
    padding: 0;
  }
}
.plan .grid01 {
  grid-column: 1/4;
  grid-row: 1/2;
}
.plan .grid02 {
  grid-column: 1/4;
  grid-row: 2/3;
}
@media screen and (max-width: 640px) {
  .plan .carousel {
    width: 81.3559322034%;
    margin: 0 auto;
  }
}
.plan .media {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0 0 40px;
  align-items: flex-end;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .plan .media {
    flex-direction: column;
    padding: 0;
    margin-top: 0;
    width: 100%;
  }
}
.plan .media.reverse {
  flex-direction: row-reverse;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .plan .media.reverse {
    flex-direction: column;
    margin-top: 0;
  }
}
.plan .media.reverse .media__body {
  margin-left: 0;
  margin-right: -78px;
}
@media screen and (max-width: 640px) {
  .plan .media.reverse .media__body {
    margin: 0;
  }
}
.plan .media__img-wrapper {
  flex-shrink: 0;
}
.plan .media__body {
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: -78px;
  padding: 33px 40px 40px;
  margin-bottom: -40px;
}
@media screen and (max-width: 640px) {
  .plan .media__body {
    margin: 0;
    padding: 16px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.plan .media__title {
  font-size: 2.4rem;
  line-height: 1.58;
}
@media screen and (max-width: 640px) {
  .plan .media__title {
    font-size: 1.4rem;
  }
}
.plan .media__text {
  font-size: 1.4rem;
  margin-top: 7px;
  line-height: 2.2;
  letter-spacing: normal;
  flex-grow: 1;
}
@media screen and (max-width: 640px) {
  .plan .media__text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: normal;
  }
}
.plan .media .btn-wrapper {
  margin-top: 31px;
}
@media screen and (max-width: 640px) {
  .plan .media .btn-wrapper {
    margin-top: 15px;
  }
}
.plan .cards {
  position: relative;
  z-index: 1;
  padding: 0 40px 40px;
  display: flex;
  margin: 20px 0 0;
}
@media screen and (max-width: 640px) {
  .plan .cards {
    display: block;
    padding: 0;
    margin: 0 auto;
  }
}
.plan .cards .card {
  margin-right: 30px;
}
.plan .cards .card:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .plan .cards .card {
    margin-right: 0;
  }
}
.plan .card {
  width: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 10px;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .plan .card {
    margin-top: 0;
    width: 100%;
  }
}
.plan .card__img-wrapper {
  margin-bottom: 12px;
}
.plan .card__img-wrapper img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .plan .card__img-wrapper {
    margin-bottom: 0;
  }
}
.plan .card__title {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  line-height: 1.58;
  min-height: 4.8em;
}
@media screen and (max-width: 640px) {
  .plan .card__title {
    font-size: 1.4rem;
    min-height: inherit;
  }
}
.plan .card__text {
  font-size: 1.4rem;
  letter-spacing: normal;
  margin-top: 3px;
  line-height: 2.2;
  flex-grow: 1;
}
@media screen and (max-width: 640px) {
  .plan .card__text {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 10px;
    line-height: 1.6;
  }
}
.plan .card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 640px) {
  .plan .card__body {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 16px 20px 20px;
  }
}
.plan .card .btn-wrapper {
  margin-top: 33px;
}
@media screen and (max-width: 640px) {
  .plan .card .btn-wrapper {
    margin-top: 15px;
  }
}

.line {
  margin: 70px 0 68px;
}
@media screen and (max-width: 640px) {
  .line {
    margin: 30px 0 33px;
  }
}
.line .line-inner {
  margin: 0 auto;
  width: 1040px;
  padding: 0 15px 3px;
}
@media screen and (max-width: 640px) {
  .line .line-inner {
    width: auto;
    padding: 0 15px 1px;
  }
}
.line.line--to-right {
  background: linear-gradient(to right, #006af6 0%, #006af6 50%, rgba(41, 137, 216, 0) 50%);
}
@media screen and (max-width: 640px) {
  .line.line--to-right {
    margin-right: 20px;
  }
}
.line.line--to-right .line-inner {
  background: linear-gradient(to right, #006af6 0%, #d771d1 100%);
  -webkit-clip-path: polygon(99% 0, 100% 50%, 99% 100%, 0 100%, 0 0);
          clip-path: polygon(99% 0, 100% 50%, 99% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 640px) {
  .line.line--to-right .line-inner {
    -webkit-clip-path: polygon(98% 0, 100% 50%, 98% 100%, 0 100%, 0 0);
            clip-path: polygon(98% 0, 100% 50%, 98% 100%, 0 100%, 0 0);
  }
}
.line.line--to-right.line-3 .line-inner {
  background: linear-gradient(to right, #006af6 0%, #00c75d 100%);
}
.line.line--to-left {
  background: linear-gradient(to left, #006af6 0%, #006af6 50%, rgba(41, 137, 216, 0) 50%);
}
@media screen and (max-width: 640px) {
  .line.line--to-left {
    margin-left: 20px;
  }
}
.line.line--to-left .line-inner {
  background: linear-gradient(to right, #2861ab 0%, #006af6 100%);
  -webkit-clip-path: polygon(1% 0, 100% 0, 100% 100%, 1% 100%, 0 50%);
          clip-path: polygon(1% 0, 100% 0, 100% 100%, 1% 100%, 0 50%);
}
@media screen and (max-width: 640px) {
  .line.line--to-left .line-inner {
    -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 50%);
            clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 50%);
  }
}
.line.line--to-left .line-inner p {
  text-align: right;
}
.line p {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  .line p {
    font-size: 1.2rem;
  }
}
.line p .arrow {
  display: inline-block;
  transform: scale(0.5, 1);
}

/* ----------------------------------------------------------------------------------------------------
*	morearea
* --------------------------------------------------------------------------------------------------*/
.more-area {
  background: url(../img/bg_morearea.jpg) #d9e5f6 no-repeat top center/cover;
  padding: 75px 0 82px;
}
@media screen and (max-width: 640px) {
  .more-area {
    padding: 30px 0;
  }
}
.more-area .text {
  margin-bottom: 28px;
}
@media screen and (max-width: 640px) {
  .more-area .text {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .more-area .banner {
    padding: 0;
    margin-top: 0;
  }
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.prev-arrow {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid #3c5c86;
  border-left: 2px solid #3c5c86;
  top: 61vw;
  left: -30px;
  transform: rotate(45deg);
}

.next-arrow {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-right: 2px solid #3c5c86;
  border-top: 2px solid #3c5c86;
  top: 61vw;
  right: -30px;
  transform: rotate(45deg);
}

.slide-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.slide-dots li {
  margin: 0 1%;
  position: relative;
}
.slide-dots li.slick-active button::before {
  background-color: #3c5c86;
}
.slide-dots button {
  top: 0;
  display: block;
  width: 3px;
  height: 3px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.slide-dots button::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  width: 3px;
  height: 3px;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 2px solid #3c5c86;
}
/*# sourceMappingURL=style.css.map */