@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP-Bold";
  src: url(/fonts/NotoSerifJP/NotoSerifJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP-ExtraLight";
  src: url(/fonts/NotoSerifJP/NotoSerifJP-ExtraLight.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP-Regular";
  src: url(/fonts/NotoSerifJP/NotoSerifJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url(/fonts/ZenOldMincho/ZenOldMincho-Bold.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT出し分け
------------------------------ */
@media (min-width: 1024px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #282364;
  border-radius: 4px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  border: 1px solid #282364;
  border-radius: 4px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "NotoSansJP-Regular", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-wrap {
  background: url(/images/common/com_bg01.jpg);
}
.title-wrap .title-area {
  padding: 64px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .title-wrap .title-area {
    padding: 40px 16px;
    text-align: left;
  }
}
.title-wrap .title-area .heading-title {
  position: relative;
  display: inline-block;
  width: 68%;
  text-align: left;
  font-size: 64px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  color: #282364;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .title-wrap .title-area .heading-title {
    width: 100%;
    margin-bottom: 16px;
    font-size: 44px;
  }
}
@media (max-width: 420px) {
  .title-wrap .title-area .heading-title {
    font-size: 32px;
  }
}
.title-wrap .title-area .sub-title {
  display: inline-block;
  width: 68%;
  font-size: 28px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  background: url(/images/common/title_ic01.svg) no-repeat;
  background-position: left center;
  text-align: left;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .title-wrap .title-area .sub-title {
    font-size: 16px;
  }
}
.title-wrap .title-area .catch {
  font-size: 24px;
  margin: 40px 40px 0 0;
  text-align: right;
}
@media (max-width: 767px) {
  .title-wrap .title-area .catch {
    font-size: 16px;
    margin: 16px 0 0 0;
  }
}

.heading01 {
  margin: 120px 0 64px;
  padding: 20px 24px;
  background: #282364;
  background: linear-gradient(to right, #282364 0%, #eeedf4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$start-color+"", endColorstr=$end-color+"",GradientType=1 );
  font-size: 32px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  color: #FFF;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 64px 0 32px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 24px;
  }
}

.heading02 {
  position: relative;
  margin: 64px 0 40px;
  padding-left: 40px;
  font-size: 28px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 48px 0 24px;
    padding-left: 32px;
    font-size: 20px;
  }
}
.heading02::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 32px;
  height: 24px;
  background: url(/images/common/title_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .heading02::before {
    width: 20px;
    height: 20px;
  }
}

.heading03 {
  margin: 40px 0 16px;
  font-size: 24px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 32px 0 16px;
    font-size: 16px;
  }
}
.heading03 span {
  display: inline-block;
}
.heading03 span::after {
  content: "";
  display: block;
  margin-top: 4px;
  height: 1px;
  background: #282364;
  background: linear-gradient(to right, #282364 0%, #eeedf4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$start-color+"", endColorstr=$end-color+"",GradientType=1 );
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 22px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}

/* ページナビ
-----------------------------------*/
.link-com-menu a {
  display: block;
  color: #282364;
  font-family: "ZenOldMincho-Bold", sans-serif;
  text-decoration: none;
}
.link-com-menu a figure {
  margin-bottom: 16px;
  text-align: center;
  overflow: hidden;
}
.link-com-menu a figure img {
  transition: 0.3s all;
}
.link-com-menu a:hover figure img {
  opacity: 1 !important;
  transform: scale(1.1);
}
.link-com-menu a:hover .link-txt {
  color: #FF0000;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-decoration: underline;
}

.page-nv-area {
  position: relative;
  margin: 24px auto;
  padding: 20px;
  background-color: #eeedf4;
  z-index: 3;
}
@media (max-width: 767px) {
  .page-nv-area {
    margin: 24px auto;
    padding: 10px 16px;
  }
}
.page-nv-area .sp-ac-menu {
  margin-bottom: 0;
}
.page-nv-area .sp-ac-menu dt {
  position: relative;
  padding: 8px 16px;
  background-color: #FFF;
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
@media (min-width: 768px) {
  .page-nv-area .sp-ac-menu dt {
    display: none;
  }
}
.page-nv-area .sp-ac-menu dt::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  border-color: #282364;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(45deg);
  transition: 0.3s all;
}
@media (min-width: 768px) {
  .page-nv-area .sp-ac-menu dd {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .page-nv-area .sp-ac-menu dd {
    display: none;
  }
}
.page-nv-area .sp-ac-menu.open dt::after {
  margin-top: 0;
  transform: rotate(225deg);
}
.page-nv-area .list-nv {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .page-nv-area .list-nv {
    display: block;
  }
}
.page-nv-area .list-nv li {
  width: calc((100% - 24px) / 4);
}
@media (max-width: 767px) {
  .page-nv-area .list-nv li {
    width: 100%;
    margin-top: 8px;
  }
}
.page-nv-area .list-nv li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px 4px;
  background-color: #FFF;
  text-decoration: none;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1;
  color: #4e4141;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .page-nv-area .list-nv li a {
    padding: 8px 16px;
    justify-content: flex-start;
  }
}
.page-nv-area .list-nv li a:hover {
  color: #FFF;
  background-color: #282364;
}

/* ページ上部のメイン画像
-----------------------------------*/
.main-img {
  margin-bottom: 10%;
  text-align: center;
}
.main-img figcaption {
  margin-top: 8px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1;
  font-size: 20px;
}
@media (max-width: 767px) {
  .main-img figcaption {
    font-size: 16px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  border: solid 1px #282364;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 5px;
  color: #282364;
  text-align: center;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1;
  width: 200px;
  height: 64px;
  text-decoration: none;
  outline: none;
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}
.com-bt:hover {
  color: #282364;
}
@media (max-width: 767px) {
  .com-bt {
    font-size: 12px;
    width: 240px;
    height: 64px;
    padding: 8px;
    border-radius: 4px;
  }
}
.com-bt::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 8px;
  left: auto;
  right: 16px;
  /*下線の形状*/
  width: 23%;
  height: 1px;
  background: #282364;
  /*アニメーションの指定*/
  transition: all 0.7s;
}
@media (max-width: 767px) {
  .com-bt::before {
    width: 16%;
    right: 17px;
  }
}
.com-bt::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 12px;
  right: 15px;
  /*矢印の形状*/
  width: 16px;
  height: 1px;
  background: #282364;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.7s;
}
@media (max-width: 767px) {
  .com-bt::after {
    width: 12px;
    bottom: 11px;
  }
}
.com-bt:hover {
  text-decoration: none;
}
.com-bt:hover::before {
  right: 10px;
}
.com-bt:hover::after {
  right: 9px;
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #282364;
  border-radius: 5px;
  background-color: #FFF;
  line-height: 1;
  font-family: "ZenOldMincho-Bold", sans-serif;
  cursor: pointer;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}

.arrow {
  position: relative;
  display: inline-block;
  color: #282364;
}
.arrow:hover {
  color: #282364;
}
.arrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 160%;
  height: 1px;
  background: #4e4141;
  transition: all 0.7s;
}
.arrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  right: -60%;
  bottom: -3px;
  /*矢印の形状*/
  width: 16px;
  height: 1px;
  background: #282364;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.7s;
}
.arrow:hover {
  text-decoration: none;
}
.arrow:hover::before {
  left: 10%;
}
.arrow:hover::after {
  right: -70%;
}

.prev-arrow {
  position: relative;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.prev-arrow::before {
  content: "";
  position: absolute;
  left: -60%;
  bottom: -8px;
  width: 160%;
  height: 1px;
  background: #FFF;
  transition: all 0.7s;
}
.prev-arrow::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -60%;
  width: 16px;
  height: 1px;
  background: #FFF;
  transform: rotate(155deg);
  transition: all 0.7s;
}
.prev-arrow:hover {
  text-decoration: none;
}
.prev-arrow:hover::before {
  left: -70%;
}
.prev-arrow:hover::after {
  left: -70%;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 {
  gap: 24px 4%;
}
.list-col2 > li {
  width: 48%;
  margin-bottom: 24px;
}

.list-col3 {
  gap: 16px 2%;
}
.list-col3 > li {
  width: 32%;
}

.list-col4 {
  gap: 16px 1.333%;
}
.list-col4 > li {
  width: 24%;
  margin-bottom: 16px;
}

/* タブ切り替え
-----------------------------------*/
.tab {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 64px !important;
}
@media (max-width: 767px) {
  .tab {
    justify-content: center;
    margin-bottom: 32px;
  }
}
.tab li {
  position: relative;
  padding-left: 48px;
  margin-right: 32px;
  color: #4e4141;
  font-size: 20px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 32px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tab li {
    padding: 24px 8px 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
}
.tab li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -16px;
  border-radius: 50%;
  border: 12px solid #282364;
  background: #282364;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .tab li::before {
    right: 0;
    top: 0;
    width: 9px;
    height: 9px;
    margin: 0 auto;
    border-width: 5px;
  }
}
.tab li a {
  display: block;
  color: #282364;
  text-decoration: none;
}
.tab li:hover, .tab li.current {
  color: #282364;
}
.tab li:hover::before, .tab li.current::before {
  left: 0;
  width: 16px;
  height: 16px;
  background: #FFF;
  border: 8px solid #282364;
}
@media (max-width: 767px) {
  .tab li:hover::before, .tab li.current::before {
    width: 9px;
    height: 9px;
    border-width: 5px;
  }
}
.tab li:hover a, .tab li.current a {
  color: #333;
}

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  background-color: #282364;
  line-height: 1;
  color: #FFF;
  font-family: "ZenOldMincho-Bold", sans-serif;
  cursor: pointer;
}
.ac-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: #FFF transparent transparent transparent;
}
.ac-menu.open::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #FFF transparent;
}

.ac-cts {
  display: none;
  padding: 16px 24px;
  background-color: #eeedf4;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #282364;
  background-color: #eeedf4;
  font-family: "NotoSansJP-Bold", sans-serif;
  color: #4e4141;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px;
  }
}
.table td {
  padding: 16px;
  background-color: #FFF;
  border: solid 1px #282364;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px;
  }
}

/*format
-----------------------------------*/
.cts-sec .contents {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .cts-sec .contents {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
.cts-sec .contents .note {
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 2;
  text-align: center;
  margin: 80px auto 160px;
}
@media (max-width: 767px) {
  .cts-sec .contents .note {
    margin: 40px auto 64px;
  }
}
.cts-sec .contents .side-img {
  max-width: 336px;
}
@media (max-width: 767px) {
  .cts-sec .contents .side-img {
    width: 72%;
  }
}
.cts-sec .contents .side-img.right {
  margin: -80px 0 96px 50%;
}
@media (max-width: 1024px) {
  .cts-sec .contents .side-img.right {
    margin: -80px 0 96px auto;
  }
}
@media (max-width: 767px) {
  .cts-sec .contents .side-img.right {
    margin: -40px 0 64px auto;
  }
}
.cts-sec .contents .side-img.left {
  margin: -96px 0 96px 0;
}
@media (max-width: 1024px) {
  .cts-sec .contents .side-img.left {
    margin: -80px 0 96px 0;
  }
}
@media (max-width: 767px) {
  .cts-sec .contents .side-img.left {
    margin: -40px 0 64px 0;
  }
}

.bg01 {
  background: url(/images/common/com_bg01.jpg);
}
.bg01 .contents {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .bg01 .contents {
    padding-bottom: 40px;
  }
}

.bg02 {
  background: url(/images/common/com_bg02.jpg);
}
.bg02 .contents {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .bg02 .contents {
    padding-bottom: 40px;
  }
}

.txt-box {
  border: solid 1px #FFF;
  border-radius: 5px;
  padding: 16px;
}
.txt-box dt {
  color: #AFAFAF;
  font-size: 22px;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .txt-box dt {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.frame-img {
  border: solid 1px #282364;
  border-radius: 5px;
  padding: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .frame-img {
    padding: 4px;
  }
}
.frame-img img {
  width: 100%;
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #4e4141;
}
.list-news li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 32px 0;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .list-news li a {
    padding: 20px 0;
  }
}
.list-news li a .date {
  width: 140px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .date {
    width: 108px;
    font-size: 16px;
  }
}
.list-news li a .label {
  width: 130px;
  padding: 0 8px;
  background-color: #282364;
  color: #FFF;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}
@media (max-width: 767px) {
  .list-news li a .label {
    width: 100px;
    font-size: 14px;
  }
}
.list-news li a .title {
  width: calc(100% - 270px);
  padding-left: 40px;
  word-wrap: break-word;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
    padding-left: 0;
  }
}
.list-news li a:hover .title {
  color: #AFAFAF;
  text-decoration: underline;
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 44px 0 120px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 32px 0 80px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 38px;
  margin: 0 8px 2px;
  color: #282364;
  line-height: 38px;
  border: 1px solid #282364;
  text-decoration: none;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .wp-pagenavi a,
.wp-pagenavi span.current {
    margin: 0 4px 2px;
    width: 32px;
    line-height: 30px;
  }
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-width: 6px;
  color: #333;
  line-height: 28px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-width: 4px;
    line-height: 24px;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  background-color: #282364;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: #FFF;
}
.wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  margin: -8px auto 0;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(135deg);
}
.wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  margin: -4px auto 0;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(-45deg);
}
.wp-pagenavi .nextpostslink:hover::before {
  border-color: #282364;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(-45deg);
}
.wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  margin: -4px auto 0;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(135deg);
}
.wp-pagenavi .previouspostslink:hover::before {
  border-color: #282364;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(135deg);
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 0 0 16px;
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  width: 150px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .date {
    width: 108px;
    font-size: 16px;
  }
}
.entry-detail .entry-header .entry-meta .label {
  width: 130px;
  padding: 0 8px;
  background-color: #282364;
  color: #FFF;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    width: 100px;
    font-size: 14px;
  }
}
.entry-detail .entry-content {
  padding: 24px;
  margin: 24px 0;
  background-color: #eeedf4;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    padding: 16px;
    margin: 16px 0;
    border-radius: 8px;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
.entry-detail .btn-area .com-bt {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "ZenOldMincho-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "ZenOldMincho-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "ZenOldMincho-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "ZenOldMincho-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "ZenOldMincho-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #eeedf4;
  background-color: #282364;
  font-family: "NotoSansJP-Bold", sans-serif;
  color: #FFF;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  background-color: #FFF;
  border: solid 1px #282364;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */