@charset "UTF-8";

/* ページ全体のスタイル
------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #000000;
}

a {
  color: #000000;
  text-decoration: none;
}

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

li {
  list-style: none;
}

/* ヘッダー
------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.125rem;
  padding: 0.8rem 1.1rem 1rem 1rem;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

@media(min-width: 768px) {
  .header {
    height: 4.5rem;
    padding: 0.875rem 1.875rem 1.125rem;
  }
}

/* ロゴ */
.header-logo {
  line-height: 1;
}

@media(min-width: 768px) {
  .header-logo {
    margin-top: 0.2rem;
  }
}

.header-logo img {
  max-width: 7.375rem;
  vertical-align: baseline;
}

@media(min-width: 768px) {
  .header-logo img {
    max-width: 9.5625rem;
  }
}

/* ハンバーガーボタン */
.hamburger-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger-button i {
  font-size: 2rem;
  color: #214afc;
}

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

/* 部品
------------------------------------------ */
/* ボタンの共通スタイル*/
.white-button {
  display: block;
  max-width: 10.1875rem;
  padding: 0.75rem 3.4375rem 0.65rem 2.45rem;
  color: rgb(0, 112, 224);
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  border-radius: 1.25rem;
  border-width: 0.0625rem;
  border-color: rgb(0, 112, 224);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  white-space: nowrap;
}

@media(min-width: 768px) {
  .white-button {
    font-size: 0.8125rem;
    max-width: 8.75rem;
    padding: 0.85rem 3.4375rem 0.75rem 1.85rem;
  }
}

.blue-button {
  display: block;
  max-width: 10.1875rem;
  background: linear-gradient(0deg, rgb(33, 74, 252) 0%, rgb(33, 139, 252) 100%);
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  border-radius: 1.25rem;
  padding: 0.725rem 3.5rem 0.865rem 1.85rem;
  white-space: nowrap;
}

@media(min-width: 768px) {
  .blue-button {
    font-size: 0.8125rem;
    max-width: 8.75rem;
    padding: 0.85rem 3.5rem 0.865rem 1.45rem;
  }
}

/*セクション*/
section {
  padding-top: 3.45rem;
  padding-bottom: 3.0625rem;
}

@media(min-width: 768px) {
  section {
    padding-top: 5.5rem;
    padding-bottom: 4.75rem;
  }
}

/*コンテナ*/
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media(min-width: 768px) {
  .container {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}

/*セクションタイトル*/
.section-title {
  font-size: 1.375rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2.35rem;
  }
}

/*PCにて不要*/
@media(min-width: 768px) {
  .nopc {
    display: none;
  }
}

/* ハンバーガーメニュー※ハンバーガーメニューのみメディアクエリを個別に記述
------------------------------------------ */
@media (max-width:767px) {
  .hamburger-menu {
    position: fixed;
    top: 3.125rem;
    left: 100%;
    width: 100%;
    height: 5.5rem;
    padding: 1rem;
    background-color: #fff;
    transition: all 0.6s;
    /* 右からスライドイン */
    transform: translateX(100%);
  }

  /* 開いている状態 */
  .hamburger-menu-active {
    left: 0;
    /* 左・右からスライドインさせる場合 */
    transform: translateX(0);
  }
}

.hamburger-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}

@media(min-width: 768px) {
  .hamburger-menu-list {
    column-gap: 0.625rem;
  }
}

@media(min-width: 768px) {

  .hamburger-white-button:hover,
  .hamburger-blue-button:hover {
    opacity: 0.502;
  }
}

/*カバー
--------------------------------------------------*/
.cover-slick {
  position: relative;
}

.slick-item img {
  width: 100%;
  height: auto;
}

@media(min-width: 768px) {
  .slick-item img {
    height: 45.5rem;
  }
}

/* キャッチコピー */
.cover-catch {
  position: absolute;
  bottom: 10.25rem;
  left: 1rem;
}

@media(min-width: 768px) {
  .cover-catch {
    bottom: 19.1825rem;
    left: 6.1rem;
  }
}

.catch-top {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media(min-width: 768px) {
  .catch-top {
    font-size: 2rem;
    margin-bottom: 2.725rem;
  }
}

.catch-button {
  max-width: 15.625rem;
  background-image: linear-gradient(0deg, rgb(0, 77, 164) 0%, rgb(0, 120, 255) 100%);
  font-size: 0.9375rem;
  font-weight: bold;
  border-radius: 1.40625rem;
  padding: 0.9375rem 2.125rem 1rem 2.25rem;
}

@media(min-width: 768px) {
  .catch-button {
    max-width: 18.75rem;
    border-radius: 1.5625rem;
    font-size: 1rem;
    padding: 1.0625rem 1.3125rem 1.125rem 1.8rem;
  }

  .catch-button:hover {
    opacity: 0.502;
  }
}

/*お客様ボタン*/
.customer {
  background-image: linear-gradient(0deg, rgb(33, 74, 252) 0%, rgb(33, 139, 252) 100%);
}

.customer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.customer-button {
  font-size: 1rem;
  color: #fff;
}

@media(min-width: 768px) {
  .customer-button {
    font-size: 1.125rem;
  }
}

.individual {
  width: calc((100% - 0.0625rem) / 2);
  text-align: right;
  padding: 1.05rem 2.625rem 1.1875rem 0;
}

@media(min-width: 768px) {
  .individual {
    padding: 1.525rem 14.4375rem 1.65rem 0;
  }
}

.company {
  padding-left: 2.625rem;
  width: calc((100% - 0.0625rem) / 2);
  padding: 1.05rem 0 1.1875rem 2.625rem;
}

@media(min-width: 768px) {
  .company {
    padding: 1.525rem 0 1.65rem 14.375rem;
  }
}

.customer-line {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 1.5625rem;
  background-color: #fff;
}

@media(min-width: 768px) {
  .customer-line {
    height: 2.1875rem;
  }
}

/*コンテンツ
--------------------------------------------------*/
.contents-box {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.125rem;
  row-gap: 1.125rem;
}

@media(min-width: 768px) {
  .contents-box {
    flex-wrap: nowrap;
    column-gap: 1.25rem;
  }
}

.contents-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(222, 239, 255);
  border-radius: 0.75rem;
  padding: 1.0625rem;
  box-shadow: 0 0 0.9375rem 0 rgb(0, 0, 0, 0.2);
  width: calc((100% - 1.125rem) / 2);
}

@media(min-width: 768px) {
  .contents-box-inner {
    width: calc((100% - 3.75rem) / 4);
    padding-top: 3.375rem;
    padding-bottom: 3.3rem;
  }

  .contents-box-inner:hover {
    background-color: #0070e0;
  }

  .contents-box-inner:hover .contents-title {
    color: #fff;
  }
}

.contents-image {
  margin-bottom: 0.5rem;
}

.contents-title {
  font-size: 1.0625rem;
  color: #003087;
  text-align: center;
}

@media(min-width: 768px) {
  .contents-title {
    font-size: 1.25rem;
  }
}

/*コンテンツ1*/
.contents-1 {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}

@media(min-width: 768px) {
  .contents-1 {
    padding-top: 3.45rem;
  }
}

.contents-1 .contents-image {
  width: 31%;
}

@media(min-width: 768px) {
  .contents-1 .contents-image {
    width: 34.65%;
  }
}

/*コンテンツ2*/
.contents-2 {
  padding-top: 2.5rem;
}

@media(min-width: 768px) {
  .contents-2 {
    padding-top: 3.45rem;
  }
}

.contents-2 .contents-image {
  width: 37%;
}

@media(min-width: 768px) {
  .contents-2 .contents-image {
    width: 41.75%;
  }
}

/*コンテンツ3*/
.contents-3 {
  padding-top: 2.5rem;
  padding-bottom: 2.65rem;
}

@media(min-width: 768px) {
  .contents-3 {
    padding-top: 3.45rem;
  }
}

.contents-3 .contents-image {
  width: 38%;
}

@media(min-width: 768px) {
  .contents-3 .contents-image {
    width: 42.75%;
  }
}

/*コンテンツ4*/
.contents-4 {
  padding-top: 2.5rem;
}

@media(min-width: 768px) {
  .contents-4 {
    padding-top: 3.45rem;
  }
}

.contents-4 .contents-image {
  width: 44%;
}

@media(min-width: 768px) {
  .contents-4 .contents-image {
    width: 49.5%;
  }
}

/*ニュースリリース・お知らせ
--------------------------------------------------*/
.news {
  padding-top: 0.2rem;
  padding-bottom: 3.0625rem;
}

@media(min-width: 768px) {
  .news {
    padding-bottom: 4.75rem;
  }
}

/* タブ */
.st-theme-basic {
  border: none;
}

/* タブナビゲーション */
.tab.st>.nav {
  flex-direction: row !important;
}

.tab.st-theme-basic>.nav {
  box-shadow: none;
  font-size: 1.125rem;
}

@media(min-width: 768px) {
  .tab.st-theme-basic>.nav {
    font-size: 1.75rem;
  }
}

.tab.st-theme-basic>.nav .nav-link {
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  line-height: 1;
  color: #e5e8f0;
  border-bottom: solid #cce2f9 0.1875rem;
  white-space: nowrap;
}

@media(min-width: 768px) {
  .tab.st-theme-basic>.nav .nav-link {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* アクティブ状態 */
.tab.st-theme-basic>.nav .nav-link.active {
  color: #003087 !important;
  border-bottom: solid rgb(0, 112, 224) 0.1875rem;
}

.tab.st-theme-basic>.nav .nav-link.active::after {
  background-color: unset !important;
}


/*記事*/
@media(min-width: 768px) {
  .news .container {
    padding-left: 12.5rem;
    padding-right: 12.5rem;
  }
}

.news-item,
.notice-item {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: solid #cccccc 0.125rem;
}

@media(min-width: 768px) {
  .news-item {
    padding: 2rem 2.125rem 1.1rem 1rem;
  }

  .news-item:nth-child(2),
  .news-item:nth-child(3) {
    padding: 1rem 2.125rem 0.7rem 1rem;
  }

  .news-item:nth-child(4) {
    padding: 1rem 2.125rem 0.65rem 1rem;
  }

  .news-item:nth-child(5) {
    padding: 1rem 2.125rem 1rem 1rem;
  }

  .notice-item {
    padding: 2rem 2.125rem 0.65rem 1rem;
  }

  .notice-item:nth-child(2) {
    padding: 1rem 1.9rem 1.1rem 1rem;
  }

  .notice-item:nth-child(3) {
    padding: 1rem 1.9rem 0.6rem 1rem;
  }

  .notice-item:nth-child(4) {
    padding: 1rem 1.9rem 1.1rem 1rem;
  }

  .notice-item:nth-child(5) {
    padding: 1rem 1.9rem 0.65rem 1rem;
  }
}

@media(min-width: 768px) {

  .news-item a,
  .notice-item a {
    display: flex;
  }
}

.date {
  display: block;
  color: #555555;
  font-size: 0.75rem;
  letter-spacing: -0.025rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

@media(min-width: 768px) {
  .date {
    font-size: 1rem;
    margin-right: 1.5625rem;
  }
}

.news-item:nth-child(2) .date,
.notice-item:nth-child(2) .date {
  margin-bottom: 0.35rem;
}

.news-title,
.notice-title {
  color: #0070e0;
  font-size: 0.875rem;
}

@media(min-width: 768px) {

  .news-title,
  .notice-title {
    font-size: 1rem;
  }

  .news-title:hover,
  .notice-title:hover {
    border-bottom: solid #0070e0 0.0625rem;
  }
}

/*ボタン：ニュース*/
.news-button {
  font-size: 1rem;
  margin: 1.95rem auto 0 auto;
  padding: 1rem 4rem 1.1rem 2.5rem;
  border-radius: 1.5625rem;
  max-width: 15.875rem;
}

@media(min-width: 768px) {
  .news-button {
    margin: 1.5rem auto 0 auto;
  }

  .news-button:hover {
    opacity: 0.502;
  }
}

/*ボタン：お知らせ一覧へ*/
.notice-button {
  padding: 1rem 4rem 1.1rem 4rem;
}

@media(min-width: 768px) {
  .notice-button:hover {
    opacity: 0.502;
  }
}

/*キャンペーン
--------------------------------------------------*/
.campaign {
  padding-top: 0.2rem;
}

@media(min-width: 768px) {
  .campaign {
    padding-top: 0.65rem;
    padding-bottom: 6.35rem;
  }
}

.campaign .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign .section-title {
  margin-bottom: 2rem;
}

@media(min-width: 768px) {
  .campaign .section-title {
    margin-bottom: 2.5rem;
  }
}

.slick-area {
  width: 100%;
}

@media(min-width: 768px) {
  .slick-area {
    max-width: 62.5rem;
  }
}

.campaign-slick {
  margin-left: auto;
  margin-right: auto;
}

.slick-initialized .slick-slide {
  display: flex;
  flex-direction: column;
  width: 16.25rem;
}

@media(min-width: 768px) {
  .slick-initialized .slick-slide {
    width: 14.25rem;
  }
}

.campaign .slick-track {
  padding-bottom: 1rem;
}

.campaign-item {
  border-radius: 0.75rem;
  box-shadow: 0 0 0.9375rem 0 rgb(0, 0, 0, 0.2);
  margin-right: 1rem;
  margin-left: 1rem;
}

@media(min-width: 768px) {
  .campaign-item {
    margin-right: 0.9063rem;
    margin-left: 0.9063rem;
  }
}

.campaign-title {
  font-size: 1rem;
  color: #0070e0;
}

.campaign-item-bottom {
  padding: 1rem 1.5rem 3.75rem;
}

.bottom-4,
.bottom-5 {
  padding-bottom: 1.9rem;
}

@media(min-width: 768px) {
  .campaign-item-bottom {
    padding: 0.8rem 1.65rem 2.5rem 1.45rem;
  }

  .bottom-3 {
    padding-bottom: 4.2rem;
  }
}

/*slick矢印*/
.slick-prev::before {
  content: url("../images/prev.png");
}

@media(min-width: 768px) {
  .slick-prev::before {
    content: url("../images/prev-pc.png");
  }
}

.slick-next::before {
  content: url("../images/next.png");
}

@media(min-width: 768px) {
  .slick-next::before {
    content: url("../images/next-pc.png");
  }
}

.slick-arrow {
  position: absolute;
  top: 48.75%;
  opacity: 1;
  z-index: 10;
}

@media(min-width: 768px) {
  .slick-arrow {
    top: 37.25%;
  }
}

.slick-prev {
  left: -0.5rem;
}

@media(min-width: 768px) {
  .slick-prev {
    left: -0.525rem;
  }
}

.slick-next {
  right: 0.75rem;
}

@media(min-width: 768px) {
  .slick-next {
    right: 1.35rem;
  }
}

/*ドット*/
.slick-dots {
  bottom: -1.55rem;
}

@media(min-width: 768px) {
  .slick-dots {
    bottom: -1.95rem;
  }
}

.slick-dots li {
  margin: 0 0.25rem;
}

@media(min-width: 768px) {
  .slick-dots li {
    margin: 0 0.3rem;
  }
}

.slick-dots li button:before {
  font-size: 0.75rem;
  color: #dddddd;
  opacity: 1;
}

@media(min-width: 768px) {
  .slick-dots li button:before {
    font-size: 0.8rem;
  }
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #003087;
}

/*ボタン：キャンペーン*/
.campaign-button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  margin-top: 3.4rem;
}

@media(min-width: 768px) {
  .campaign-button-box {
    flex-direction: row;
    column-gap: 2.5rem;
  }
}

.campaign-button {
  position: relative;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  max-width: none;
  width: 22.25rem;
  padding: 1.25rem 0 1.5rem;
}

@media(min-width: 768px) {
  .campaign-button {
    font-size: 1.25rem;
    width: 28rem;
    padding: 1.75rem 0 1.7rem;
  }

  .campaign-button:hover {
    background-color: #0070e0;
  }
}

.button-icon {
  position: absolute;
  top: 46%;
  right: 0.9rem;
  line-height: 1;
  transform: translate(0%, -50%);
}

@media(min-width: 768px) {
  .button-icon {
    top: 49%;
    right: 1.45rem;
    font-size: 1.2rem;
  }
}


/*犯罪注意
--------------------------------------------------*/
.attention {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.75rem;
  padding-bottom: 1.35rem;
  background-color: #f0f0f0;
}

@media(min-width: 768px) {
  .attention {
    flex-direction: row;
    padding-bottom: 1.85rem;
  }
}

.attention-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.55rem;
}

@media(min-width: 768px) {
  .attention-title {
    flex-direction: column;
    padding-left: 12.5rem;
    margin-bottom: 2.55rem;
  }
}

.attention-title i {
  font-size: 1.8rem;
  margin-right: 1rem;
}

@media(min-width: 768px) {
  .attention-title i {
    font-size: 3.1rem;
    margin: 1.7rem 0 1.05rem;
  }
}

.attention-title p {
  font-size: 1rem;
}

@media(min-width: 768px) {
  .attention-title p {
    font-size: 1.125rem;
  }
}

.attention-list {
  margin-right: 4.5rem;
}

@media(min-width: 768px) {
  .attention-list {
    margin-left: 3.8rem;
    padding-top: 0.75rem;
  }
}

.attention-list li {
  margin-bottom: 0.8rem;
}

@media(min-width: 768px) {
  .attention-list li {
    margin-bottom: 0.7rem;
  }
}

.attention-list a {
  color: #0070e0;
  font-size: 0.9375rem;
}

@media(min-width: 768px) {
  .attention-list a {
    font-size: 1rem;
  }
}

.attention-list i {
  margin-right: 0.5rem;
}

@media(min-width: 768px) {
  .attention-list i {
    margin-right: 0.35rem;
  }
}

@media(min-width: 768px) {
  .attention-border:hover {
    border-bottom: solid #0070e0 0.0625rem;
    padding-bottom: 0.2rem;
  }
}

/*フッター
--------------------------------------------------*/
.footer {
  background-color: #003087;
  padding-top: 3.65rem;
  padding-bottom: 3rem;
}

@media(min-width: 768px) {
  .footer {
    display: flex;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(min-width: 768px) {
  .footer-list {
    flex-direction: row;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer-list li {
  margin-bottom: 0.8rem;
}

@media(min-width: 768px) {
  .footer-list li {
    padding-right: 1.45rem;
    padding-left: 1.45rem;
    border-right: solid #fff 0.125rem;
    line-height: 1.45;
  }

  .footer-list li:nth-child(6) {
    border-right: none;
  }
}

.footer-list a {
  font-size: 0.875rem;
  color: #fff;
  white-space: nowrap;
}

@media(min-width: 768px) {
  .footer-list a:hover {
    border-bottom: solid #fff 0.0625rem;
    padding-bottom: 0.2rem;
  }
}