/* ------------------------------------------------------------------------------
     カスタムプロパティ
-------------------------------------------------------------------------------*/
:root {
  --color-primary: #0e3283;
  --color-secondary: #DCE5F3;
  --color-tertiary: #F5F9FF;
  --color-red: #D61D3E;
  --color-light: #E6E6E6;
  --color-dark-light: #909DB2;
}

/* ------------------------------------------------------------------------------
     ハンバーガーメニュー
-------------------------------------------------------------------------------*/
main {
  overflow: hidden;
}

.menu-sp-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #ffffff;
  transition: ease .4s;
  z-index: 1;
}

.menu-sp-nav.active {
  transform: translateX(0);
}

.menu-sp-list-title {
  height: 40px;
  line-height: 40px;
  padding-left: 1rem;
  font-weight: bold;
  color: var(--color-primary);
  background: #dce5f3;
}

.menu-sp-item-list {


}

.menu-sp-item a {
  width: 100%;
  display: block;
  margin-bottom: 24px;
  font-weight: bold;
  vertical-align: middle;
}

.menu-sp-item a > i {
  margin: 16px;
}

.menu-sp-item {
  width: 100%;
  border-bottom: 1px solid var(--color-light);
  line-height: 50px;
  height: 50px;
  padding-left: 1rem;
}

.menu-sp-item:first-of-type {
  border-top: 1px solid var(--color-light);
}

.menu-trigger {
  z-index: 2;
}

/* ------------------------------------------------------------------------------
     ボタン
-------------------------------------------------------------------------------*/
.button-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 142px;
}

@media screen and (max-width:767px) {
  .button-group {
    height: 116px;
  }
}

.button {
  display: block;
  padding: 1.6rem;
  background: var(--color-primary);
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  letter-spacing: 1px;
  min-width: 312px;
}
.button:visited {
  color:#ffffff;
}
.button:hover {
  opacity: 0.8;
}
@media screen and (max-width:767px) {
  .button {
    width: 100%;
  }
}

@media screen and (max-width:340px) {
  .button {
    font-size: 14px;
  }
}

.button-outline {
  border: 1px solid var(--color-primary);
  background: #ffffff;
  color: var(--color-primary);
}
.button-outline:visited {
  color: var(--color-primary);
}

/* ------------------------------------------------------------------------------
     タイトル
-------------------------------------------------------------------------------*/
.title-02 {
  text-align: center;
  font-size:2rem;
  font-weight: bold;
}

.title-03 {
  font-size:2rem;
  font-weight: bold;
  border-left: 6px solid var(--color-primary);
  padding-left: 1.6rem;
}


.text-red {
  color: #D61D48;
}

/* ------------------------------------------------------------------------------
     共通ヘッダー (基本的には style.css に記述されています）
-------------------------------------------------------------------------------*/
.user-icon {
  width: 18px;
  height: 18px;
  margin: 0 auto;
}

.user-icon > .fa-user {
  vertical-align: -0.3em;
}

/* ------------------------------------------------------------------------------
     フォームのエラーメッセージ
-------------------------------------------------------------------------------*/
.errorlist,
.nonfield {
  color: var(--color-red)
}

/* ------------------------------------------------------------------------------
     TOPの見出しなどで3行以上になるものを省略する
-------------------------------------------------------------------------------*/
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ------------------------------------------------------------------------------
     編集長ブログ一覧などで2行以上になるものを省略する
-------------------------------------------------------------------------------*/
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ------------------------------------------------------------------------------
     ペジネーション
-------------------------------------------------------------------------------*/
.pagination-wrapper {
  text-align: center;
}
.pagination {
  display: inline-flex;
  justify-content: center;
}
.pagination-list {
  text-align: center;
  font-size: 70%;
}
.pagination-list li {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px 5px 10px;
  border: 1px solid #0e3283;
}
.page-item {
  border: 1px solid #0e3283;
  color: #0e3283;
}
.page-item-active {
  border: 1px solid #0e3283;
  background: #0e3283;
  color: #ffffff;
}
.page-link {
  font-weight: bold;
  color: #0e3283;
}
.page-link:visited {
  font-weight: bold;
  color: #0e3283;
}
.page-link:hover {
  text-decoration: underline;
}
.page-link-active {
  font-weight: bold;
  color: #ffffff;
}
.page-link-active:visited {
  font-weight: bold;
  color: #ffffff;
}
