<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap");

/*====================
mixin
====================*/
/*===============
リセットcss
================ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

/*===============
全体に共通するスタイル
================ */
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-tab {
  display: block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .is-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-tab {
    display: none;
  }
}

.is-spTab {
  display: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .is-spTab {
    display: block;
  }
}

@media (max-width: 767px) {
  .is-spTab {
    display: block;
  }
}

body {
  font-size: 16px;
  font-family: "游ゴシック体", sans-serif;
  background: #059cd1;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.inner {
  max-width: 1280px;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .inner {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.bold {
  font-weight: bold;
}

@media (max-width: 767px) {
  .bold {
    font-weight: normal;
  }
}

.font_roboto {
  font-family: "Roboto", sans-serif;
}

/*====================
アクセントカラー
====================*/
.colorR {
  background: #fa7266;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.colorR:hover {
  background: #204678;
  color: #fff;
}

.colorN {
  background: #204678;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.colorN:hover {
  background: #fff;
  color: #204678;
}

.colorI {
  background: #204678;
  color: #fff;
}

.colorX {
  background: #b6cff0;
}

.colorB {
  background: #0074ff;
  color: #fff;
}

.colorLB {
  background: #1aa8ff;
  color: #fff;
}

.colorBR {
  color: #343434;
}

/*====================
ハンバーガーメニュー
====================*/
#SPMENU {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) and (max-width: 999px) {
  #SPMENU {
    display: block;
    left: unset;
    right: 0;
    top: 0;
    -webkit-transform: none;
    transform: none;
    position: fixed;
    padding: 30px 40px 20px 20px;
    background-color: #059cd1;
    border-radius: 0 0 0 30px;
  }
}

@media (max-width: 767px) {
  #SPMENU {
    display: block;
  }
}

#SPMENU .drawer-icon-bars {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}

#SPMENU .drawer-icon-bar1,
#SPMENU .drawer-icon-bar2,
#SPMENU .drawer-icon-bar3 {
  position: absolute;
  width: 50px;
  height: 5px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#SPMENU .drawer-icon-bar1 {
  top: 0;
}

#SPMENU .drawer-icon-bar2 {
  top: 11px;
}

#SPMENU .drawer-icon-bar3 {
  top: 22px;
}

#SPMENU .drawer-icon-bar3:nth-of-type(3)::after {
  content: none;
}

#SPMENU .drawer-icon-bars:after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "Menu";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

#SPMENU.on .drawer-icon-bar1 {
  top: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#SPMENU.on .drawer-icon-bar2 {
  display: none;
}

#SPMENU.on .drawer-icon-bar3 {
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#SPMENU.on .drawer-icon-bars:after {
  content: "Close";
}

/*====================
コンテイナー
====================*/
.container {
  background: #fff;
  width: 1390px;
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 170px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 80px;
    padding-top: 125px;
  }
}

.sub__container {
  background: #fff;
  width: 1390px;
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 70px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .sub__container {
    padding-bottom: 20px;
    padding-top: 100px !important;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 10px !important;
  }
}

/*====================
h1　見出し
====================*/
.service__title {
  margin-top: 50px;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .service__title {
    font-size: 26px;
    line-height: 1.3;
  }
}

.service__title.service__title--joto {
  margin-top: 0px;
  font-size: 46px;
}

@media (max-width: 767px) {
  .service__title.service__title--joto {
    font-size: 26px;
    line-height: 1.3;
  }
}

.service__title::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 5px;
  background: #829abe;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .service__title::after {
    width: 80px;
    height: 3px;
    bottom: -20px;
  }
}

.service__title--color {
  color: #059cd1;
  font-size: 55px;
}

@media (max-width: 767px) {
  .service__title--color {
    font-size: 30px;
  }
}

/*====================
h2　見出し
====================*/
.titleSub__wrap {
  margin-top: 90px;
  text-align: center;
}

@media (max-width: 767px) {
  .titleSub__wrap {
    margin-top: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: start;
  }
}

.titleSub__wrap.titleSub__wrap--joto {
  margin-top: 0px;
}

@media (max-width: 767px) {
  .titleSub__wrap.titleSub__wrap--joto {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .titleSub__wrapSp {
    margin-top: 80px;
  }
}

.service__title-sub {
  font-size: 32px;
  color: #204678;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.7px;
}

.service__title-sub-twolines {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .service__title-sub {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1.5px;
  }
}

.service__title-sub--color {
  background: #059cd1;
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  display: block;
  margin-bottom: 17px;
  margin-right: 4px;
}

.service__title-sub-twolines .service__title-sub--color {
  margin-bottom: 25px;
  margin-right: 0px;
}

@media (max-width: 767px) {
  .service__title-sub--color {
    padding: 9px;
    margin-bottom: 30px;
  }

  .service__title-sub-twolines .service__title-sub--color {
    margin-bottom: 20px;
    margin-right: 2px;
  }
}

@media (max-width: 767px) {
  .service__title-sub--colorSp {
    margin-bottom: 5px;
    margin-right: 1px;
  }
}

/*====================
h3　見出し
====================*/
.service__block-title {
  font-size: 24px;
  font-weight: bold;
  color: #204678;
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .service__block-title {
    font-size: 18px;
  }
}

.service__block-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  background: #f2f2f2;
  bottom: -8px;
  left: 0;
}

.service__title-center {
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  .service__title-center {
    font-size: 22px;
  }
}

.service__title-center::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  background: #059cd1;
  bottom: -8px;
  left: 0;
}

.service__title-center--colorN,
.service__titleNum--colorN {
  color: #204678;
}

@media (max-width: 767px) {

  .service__title-center--colorN,
  .service__titleNum--colorN {
    display: inline-block;
    width: 100%;
  }
}

.service__title-center--colorN::after {
  background: #e2e1de;
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  bottom: -8px;
  left: 0;
}

/*====================
ヘッダー
====================*/
.header {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 999px) {
  .header {
    z-index: 9999;
  }
}

@media (max-width: 767px) {
  .header {
    background: #059cd1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin: 0px 5px;
  }
}

@media (max-width: 767px) {
  .header__inner {
    background: #fff;
    margin-top: 10px;
    border-top-left-radius: 15px;
  }
}

.header__bgImg {
  width: 1390px;
  max-width: 100%;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -1px;
}

@media (max-width: 767px) {
  .header__bgImg {
    width: 100px;
    margin-right: 0;
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
  }
}

.header__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1390px;
  max-width: 100%;
  margin: auto;
}

@media (min-width: 768px) and (max-width: 999px) {
  .header__wrap {
    top: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media (max-width: 999px) {
  .header__wrap {
    height: 100%;
  }
}

.header__logo {
  padding-top: 45px;
  padding-left: 45px;
  display: inline-block;
  width: 400px;
}

@media (max-width: 767px) {
  .header__logo {
    padding-left: 10px;
    padding-top: 0;
    width: 220px;
  }
}

.header__logo img {
  width: 250px;
  max-width: 100%;
}

@media (min-width: 768px) and (max-width: 999px) {
  .header__logo img {
    width: 210px;
  }
}

.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 400px);
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  /*@include mq('tab') {
        display: none;
    }*/
}

@media (max-width: 999px) {
  .header__info {
    display: block;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: rgba(5, 156, 209, 0.8);
    padding: 100px 15px 15px 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .header__info.on {
    right: 0;
  }
}

@media (max-width: 999px) {
  .header__info-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 570px;
  margin-left: auto;
}

@media (max-width: 999px) {
  .info-block {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header__info-contact {
  background: #fff;
  color: #204678;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 20px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 15px;
}

@media (max-width: 999px) {
  .header__info-contact {
    margin-bottom: 15px;
  }
}

.header__info-box {
  text-align: center;
}

@media (max-width: 999px) {
  .header__info-box {
    margin-bottom: 15px;
  }
}

.header__info-tle {
  color: #fff;
  font-weight: bold;
  font-size: 31px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 10px;
}

@media (max-width: 999px) {
  .header__info-tle {
    font-size: 24px;
    line-height: 1.2;
  }
}

.header__info-hour {
  margin-top: 5px;
  color: #003874;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 999px) {
  .header__info-hour {
    font-size: 10px;
    line-height: 1.2;
  }
}

.header__info-mail {
  width: 45px;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  margin-top: 20px;
}

@media (max-width: 999px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 35px 30px;
  }
}

@media (max-width: 999px) {
  .header__nav-list {
    text-align: center;
    margin-bottom: 15px;
  }
}

.header__nav-list a {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 999px) {
  .header__nav-list a {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
  }
}

/*====================
パンくず
====================*/
.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
}

@media (max-width: 767px) {
  .breadcrumbs {
    -webkit-box-pack: inherit;
    -webkit-justify-content: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    padding-left: 20px;
  }
}

.breadcrumb {
  display: inline-block;
  color: #343434;
  position: relative;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.breadcrumb:first-child::before {
  position: absolute;
  content: "";
  background: url(../img/ico_top.png) no-repeat center center/cover;
  width: 17px;
  height: 17px;
  left: -20px;
  top: -3px;
}

@media (max-width: 767px) {
  .breadcrumb:first-child::before {
    width: 15px;
    height: 15px;
    left: -20px;
  }
}

.breadcrumb::after {
  content: "&gt;";
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .breadcrumb::after {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.breadcrumb:last-child::after {
  display: none;
}

/*====================
フッター
====================*/
.footer {
  width: 1390px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 70px;
  }
}

.footer__bgImg {
  position: absolute;
  background: url(../img/footer_bg.png) no-repeat center center/cover;
  width: 518px;
  height: 380px;
  top: 0px;
  right: 0;
  z-index: -2;
}

@media (max-width: 767px) {
  .footer__bgImg {
    display: none;
  }
}

.footer__inner {
  padding-right: 50px;
  padding-left: 50px;
}

@media (max-width: 767px) {
  .footer__inner {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.footer__boxes {
  margin-top: 30px;
  padding-right: 50px;
  padding-left: 50px;
}

@media (max-width: 767px) {
  .footer__boxes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 2px;
    padding-left: 2px;
    border-bottom: 1px solid #042d65;
    padding-bottom: 30px;
  }
}

.footer__box {
  width: 185px;
  color: #042d65;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .footer__box {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.footer__box-upper {
  background: #ebf1f4;
  font-size: 13px;
  padding: 10px;
}

@media (max-width: 767px) {
  .footer__box-upper {
    font-size: 10px;
    padding: 5px;
  }
}

.footer__box-low {
  background: #fff;
  padding: 15px 25px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .footer__box-low {
    font-size: 14px;
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .footer__nav-spBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.footer__nav-spBox&gt;nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 450px;
}

@media (max-width: 767px) {
  .footer__nav-spBox&gt;nav {
    display: block;
    padding-right: 0;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #fff;
  font-size: 12px;
  margin-top: 35px;
  width: 750px;
  max-width: 100%;
  border-bottom: 1px solid #042d65;
  padding-bottom: 43px;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  margin-left: 50px;
}

@media (max-width: 767px) {
  .footer__nav {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
    margin-top: 20px;
    margin-left: 0;
  }
}

.footer__nav-list {
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer__nav-list {
    margin: 10px auto;
    padding: 0;
  }
}

.footer__nav-list:first-child::after,
.footer__nav-list::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  top: 0;
}

@media (max-width: 767px) {

  .footer__nav-list:first-child::after,
  .footer__nav-list::after {
    display: none;
  }
}

.footer__nav-list::after {
  right: 0;
}

.footer__nav-list a {
  padding: 0 7px;
}

.footer__company {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .footer__company {
    text-align: center;
  }
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  width: 150px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .footer__logo img {
    width: 140px;
    margin: auto;
  }
}

.footer__company-add {
  margin-top: 10px;
  color: #fff;
  line-height: 1.5;
  font-size: 14px;
}

/*====================
ページトップに戻るボタン
====================*/
.pagetop {
  position: fixed;
  width: 80px;
  height: 80px;
  max-width: 100%;
  right: 120px;
  bottom: 30px;
  background: #204678;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

@media (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 80px;
    border-radius: 50px;
    background: #82cde8;
  }
}

.pagetop:hover {
  opacity: 0.7;
}

.pagetop__arrow {
  width: 25px;
  height: 25px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(25%) rotate(-45deg);
  transform: translateY(25%) rotate(-45deg);
}

@media (max-width: 767px) {
  .pagetop__arrow {
    width: 15px;
    height: 15px;
  }
}

.table {
  border-collapse: collapse;
  border: 1px solid #204678;
  background: #fff;
  font-weight: bold;
  width: 100%;
  table-layout: fixed;
}

@media (max-width: 767px) {
  .table {
    margin-top: 10px;
  }
}

.table tr {
  height: 60px;
}

.table td,
.table th {
  border: 1px solid #204678;
  padding: 15px 24px;
  vertical-align: middle;
  line-height: 1.2;
}

@media (max-width: 767px) {

  .table td,
  .table th {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.table th {
  color: #343434;
  background: #f5f4f0;
}

.table th:nth-child(1) {
  width: 260px;
}

@media (max-width: 767px) {
  .table th:nth-child(1) {
    width: 90px;
  }
}

.table td {
  color: #204678;
  text-align: center;
}

.table .table-up {
  background: #059cd1;
  color: #fff;
}

@media (max-width: 767px) {
  .table .table-up {
    font-size: 12px;
  }
}

.flow-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 37px;
  background-color: #f5f4f0;
  border-radius: 15px;
  padding: 28px 30px;
}

@media (max-width: 767px) {
  .flow-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    padding: 26px 14px;
  }
}

.flow-block+.flow-block {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .flow-block+.flow-block {
    margin-top: 24px;
  }
}

.flow-block__step-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 37px;
  width: 305px;
}

@media (max-width: 767px) {
  .flow-block__step-box {
    gap: 15px;
    width: 100%;
  }
}

.flow-block__step {
  color: #204678;
  font-size: 22px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .flow-block__step {
    font-size: 21px;
  }
}

.flow-block__step span {
  font-size: 34px;
  padding-left: 10px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .flow-block__step span {
    font-size: 32px;
    padding-left: 5px;
  }
}

.flow-block__boxTitle {
  font-size: 18px;
  font-weight: bold;
  color: #059cd1;
  line-height: 1.5;
}

.flow-block__description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.63;
}

@media (max-width: 767px) {
  .flow-block__description {
    font-size: 13px;
    line-height: 1.39;
  }
}

.panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 30px 32px 37px 32px;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 28px 23px;
  }
}

.panel__image {
  width: 40%;
  margin-right: 3.77%;
}

@media (max-width: 767px) {
  .panel__image {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-top: 22px;
  }
}

.panel__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 350/220;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .panel__image img {
    aspect-ratio: 300/190;
  }
}

.panel__text-block {
  width: 56.22%;
}

@media (max-width: 767px) {
  .panel__text-block {
    width: 100%;
  }
}

.panel__title {
  font-size: 21px;
  font-weight: bold;
  color: #059cd1;
  padding-bottom: 7px;
  border-bottom: 2px solid #059cd1;
}

@media (max-width: 767px) {
  .panel__title {
    padding-bottom: 12px;
  }
}

.panel__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .panel__text {
    font-size: 14px;
    line-height: 1.87;
    margin-top: 14px;
  }
}

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
}

.point {
  border: 1px solid #204678;
  border-radius: 10px;
}

.point dt {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background-color: #204678;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media (max-width: 767px) {
  .point dt {
    font-size: 21px;
  }
}

.point dd {
  padding: 30px 10px 20px 10px;
}

@media (max-width: 767px) {
  .point dd {
    padding: 23px 15px 20px 15px;
  }
}

.point__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #f84d3e;
}

@media (max-width: 767px) {
  .point__title {
    font-size: 16px;
  }
}

.point__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .point__description {
    font-size: 14px;
    margin-top: 17px;
  }
}

.header__nav {
  gap: 5px;
  margin-top: 10px;
}

.header__link {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
}

.header__link.link-hover {
  padding-right: 25px;
}

.header__link.link-hover {
  position: relative;
}

.header__link.link-hover::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 12px;
  right: 5px;
  display: block;
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__dropDown {
  position: absolute;
  left: -18px;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  padding: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 8px -2px rgba(119, 119, 119, 0.5);
  box-shadow: 0px 3px 8px -2px rgba(119, 119, 119, 0.5);
  color: initial;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__link:hover&gt;.header__dropDown,
.header__link:focus-within&gt;.header__dropDown {
  visibility: visible;
  opacity: 1;
}

.header__dropDown ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.header__dropDown ul li a {
  display: inline-block;
  color: #204678;
  padding: 10px 5px;
  background-color: #93d6ee;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

/*------------------------
container 
-------------------------*/
.inner {
  max-width: 1390px;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1389px) {
  .inner {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.container {
  background: #fff;
  width: 1390px;
  max-width: 100%;
  margin-top: 25px;
  padding-top: 170px;
  padding-bottom: 170px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 25px 25px 0 0;
}

@media screen and (max-width: 1389px) {
  .container {
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 80px;
    padding-top: 95px;
    margin-top: 10px;
  }
}

main:has(.sub__container) {
  border-radius: 25px 25px 0 0;
}

.sub__container {
  background: #fff;
  width: 1390px;
  max-width: 100%;
  margin-top: 25px;
  padding-top: 170px;
  padding-bottom: 70px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 25px 25px 0 0;
}

/*------------------------
header 
-------------------------*/
.header {
  position: relative;
  z-index: 1;
  width: 1390px;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

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

@media (min-width: 768px) and (max-width: 999px) {
  .header {
    top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin: 0px 5px;
    transform: translateX(0%);
  }
}

.header .header__inner {
  background: transparent;
}

@media screen and (max-width: 768px) {
  .header .header__inner {
    margin-top: 0;
  }
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1390px;
  max-width: 100%;
  margin: auto;
}

@media screen and (min-width: 1390px) {
  .header__wrap {
    width: 1390px;
  }
}

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

.header__logo {
  padding-top: 0px;
  padding-left: 0;
  margin-top: 40px;
  margin-left: 60px;
  display: inline-block;
  position: relative;
}

.header__logo::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -15px;
  width: 310px;
  height: 107%;
  background: #fff;
  border-radius: 10px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .header__logo::before {
    top: -2px;
    left: 1px;
    width: 160px;
    height: 107%;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .header__logo {
    margin-top: 120px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header__logo {
    padding-left: 10px;
    padding-top: 0;
    margin-top: 25px;
    margin-left: 5px;
    width: 210px;
  }
}

.header__logo img {
  width: 270px;
  max-width: 100%;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .header__logo img {
    width: 140px;
  }
}

.header__bgImg {
  width: 1390px;
  max-width: 100%;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -1px;
}

.header__bgImg picture {
  display: none;
}

@media screen and (max-width: 999px) {
  .header__bgImg picture {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .header__bgImg {
    width: 70px;
    margin-right: 0;
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .header__bgImg {
    width: 70px;
    margin-right: 0;
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
  }
}

#SPMENU {
  display: none;
  position: relative;
}

@media (min-width: 768px) and (max-width: 999px) {
  #SPMENU {
    display: flex;
    justify-content: center;
    align-items: center;
    left: unset;
    width: 80px;
    height: 100px;
    transform: none;
    position: fixed;
    top: 0;
    right: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  #SPMENU {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: unset;
    transform: none;
    padding: 0;
  }
}

#SPMENU .drawer-icon-bars {
  width: 35px;
  height: 45px;
  display: block;
  position: absolute;
}

@media (min-width: 768px) and (max-width: 999px) {
  #SPMENU .drawer-icon-bars {
    top: 50%;
    right: 50%;
    transform: translate(50%, -40%);
  }
}

@media (max-width: 767px) {
  #SPMENU .drawer-icon-bars {
    top: 50%;
    right: 50%;
    transform: translate(-50%, 60%);
  }
}

#SPMENU .drawer-icon-bar1,
#SPMENU .drawer-icon-bar2,
#SPMENU .drawer-icon-bar3 {
  position: absolute;
  width: 35px;
  height: 4px;
  background: #fff;
  transition: 0.5s;
  border-radius: 5px;
}

#SPMENU .drawer-icon-bar2 {
  top: 9px;
}

#SPMENU .drawer-icon-bar3 {
  top: 17px;
}

#SPMENU.on .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

#SPMENU.on .drawer-icon-bar2 {
  display: none;
}

#SPMENU.on .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  transition: 0.5s;
}

#SPMENU .drawer-icon-bars:after {
  transition: 0.5s;
  content: "Menu";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.info-block {
  width: 100%;
  gap: 12px;
}

.header__info {
  display: flex;
  align-items: center;
  width: 880px;
  justify-content: end;
  background: #009cd1;
  border-radius: 0 0 0 70px;
  padding: 20px 0 20px;
}

@media screen and (max-width: 999px) {
  .header__info {
    display: block;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: rgba(5, 156, 209, 0.8);
    padding: 100px 15px 15px 15px;
    border-radius: 0;
    transition: all 0.3s;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 999px) {
  .header__info.on {
    right: 0;
  }
}

.header__info-contact {
  background: #fff;
  color: #204678;
  font-weight: bold;
  padding: 8px 4px;
  border-radius: 20px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 17px;
  width: 245px;
  letter-spacing: 2px;
}

.header__info-tle {
  color: #fff;
  font-weight: bold;
  font-size: 38px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 10px;
}

@media screen and (max-width: 1389px) {
  .header__info-tle {
    font-size: 24px;
    line-height: 1.2;
  }
}

.header__info-hour {
  margin-top: 5px;
  color: #003874;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

@media screen and (max-width: 999px) {
  .header__info-hour {
    font-size: 10px;
    line-height: 1.2;
  }
}

a.click_header_contact {
  display: flex;
  align-items: center;
  background: #fff;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 3px;
}

a.click_header_contact div.click_header_contact-icon {
  width: 25px;
}

a.click_header_contact div.click_header_contact-icon img {
  width: 100%;
}

a.click_header_contact div.click_header_contact-txt {
  font-size: 15px;
  font-weight: bold;
  color: #059cd1;
  text-align: center;
}

a.click_header_contact div.click_header_contact-txt span.click_header_contact-txt-sm {
  margin-top: 2px;
  display: block;
  font-size: 13px;
}

.header__nav {
  display: flex;
  color: #fff;
  margin-top: 20px;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 1389px) {
  .header__nav {
    margin: 20px 0 10px;
  }
}

.header__nav-list .header__link {
  font-size: 15px;
}

.header__nav-list:last-child .header__link {
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 12px;
}

div.fixed-bnr__wrapper {
  display: none;
  background: #059CD1;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  gap: 10px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  div.fixed-bnr__wrapper {
    display: flex;
  }
}

div.fixed-bnr__wrapper .fixed_bnr-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  width: 49%;
  padding: 5px 0;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.icon_tel {
  width: 25px;
  margin-right: 4px;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.icon_tel img {
  width: 100%;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.icon_mail {
  width: 25px;
  margin-right: 4px;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.icon_mail img {
  width: 100%;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.item-txt {
  color: #059CD1;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 1.2;
}

div.fixed-bnr__wrapper .fixed_bnr-item div.item-txt span.txt-sm {
  display: block;
  font-size: 10px;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/*# sourceMappingURL=top.css.map */</pre></body></html>