@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: "NotoSansJP-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MPLUS1p-Medium";
  src: url(/fonts/MPLUS1p/MPLUS1p-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MPLUS1p-Regular";
  src: url(/fonts/MPLUS1p/MPLUS1p-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MPLUS1p-ExtraBold";
  src: url(/fonts/MPLUS1p/MPLUS1p-ExtraBold.woff) format("woff");
  font-display: swap;
}
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

.container {
  padding-top: 80px;
}
@media (max-width: 1023px) {
  .container {
    display: block;
    padding-top: 64px;
  }
}

section .contents {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1023px) {
  section .contents {
    padding: 0 16px;
  }
}

/*section .contents p,
section .contents ul,
section .contents ol {
	margin-bottom: 1em;
}*/
/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=date],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  font-family: "NotoSansJP-Regular", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select {
  padding: 8px;
}

label {
  display: inline-block;
}
label + label {
  margin-left: 16px;
}
label input[type=radio], label input[type=checkbox] {
  margin-right: 8px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  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 {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1023px) {
  .b-nv {
    display: none;
  }
}

.b-nv ul {
  padding: 16px 0;
  font-size: 0;
}

.b-nv li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

.b-nv li::after {
  content: ">";
  padding: 0 4px;
}

.b-nv li:last-child::after {
  content: "";
}

/* タイトル
-----------------------------------*/
.heading01 {
  margin: 64px 0;
  font-family: "MPLUS1p-ExtraBold";
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .heading01 {
    margin: 40px 0;
    font-size: 24px;
  }
}

.heading02 {
  margin: 32px 0 16px;
  padding: 16px;
  background-color: #F2F1ED;
  font-family: "MPLUS1p-ExtraBold";
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .heading02 {
    margin: 24px 0 16px;
    padding: 8px 8px;
    font-size: 16px;
  }
}

/* リンクテキスト
-----------------------------------*/
.link-txt .txt {
  position: relative;
  padding-bottom: 4px;
  line-height: 1;
}
.link-txt .txt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #FFF;
}
.link-txt:hover {
  text-decoration: none;
}
.link-txt:hover .txt::after {
  width: 100%;
  -webkit-animation: in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes in-left {
  0% {
    width: 0;
    transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    width: 100;
    transform-origin: 0% 50%;
    opacity: 1;
  }
}

@keyframes in-left {
  0% {
    width: 0;
    transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    width: 100;
    transform-origin: 0% 50%;
    opacity: 1;
  }
}
/* リンクテキスト　矢印
-----------------------------------*/
@media (min-width: 1024px) {
  a .arrow-link {
    display: block;
    width: 26px;
    height: 6px;
    margin-right: 4px;
    transition: all 0.5s;
  }
  a .arrow-link .arrow {
    position: relative;
    display: block;
  }
  a .arrow-link .arrow::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    bottom: 3px;
    right: 0;
    transform: rotate(45deg);
    background-color: #000;
  }
  a .arrow-link .arrow::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #000;
  }
  a:hover .arrow-link {
    width: 30px;
    margin-right: 0;
  }
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: inline-block;
  padding: 16px;
  margin: 0 16px 16px;
  border-radius: 8px;
  text-align: center;
  font-family: "MPLUS1p-ExtraBold";
  line-height: 1.3;
  background: #EAD02A;
  box-shadow: 0px 6px 15px -5px #000;
}
@media (max-width: 1023px) {
  .com-bt {
    font-size: 12px;
    padding: 8px 16px;
    margin: 0 8px 16px;
  }
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  top: 50%;
  right: -16px;
  margin-top: -16px;
  background: url(/images/common/arrow_ic01.svg) no-repeat;
  background-size: 100% 100%;
  transform: rotate(-90deg);
}
@media (max-width: 1023px) {
  .com-bt.next::after {
    width: 24px;
    height: 24px;
    right: -12px;
    margin-top: -12px;
  }
}
.com-bt.prev::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  top: 50%;
  left: -16px;
  margin-top: -16px;
  background: url(/images/common/arrow_ic01.svg) no-repeat;
  background-size: 100% 100%;
  transform: rotate(90deg);
}
@media (max-width: 1023px) {
  .com-bt.prev::after {
    width: 24px;
    height: 24px;
    left: -12px;
    margin-top: -12px;
  }
}
.com-bt.next02::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(/images/common/arrow_ic01.svg) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 1023px) {
  .com-bt.next02::after {
    width: 24px;
    height: 24px;
    bottom: -12px;
    margin-top: -12px;
  }
}
.com-bt:hover {
  text-decoration: none;
}
.com-bt.type01 {
  padding-left: 48px;
  padding-right: 48px;
}
.com-bt.type01.next::after {
  width: 16px;
  height: 16px;
  right: 16px;
  margin-top: -8px;
}
.com-bt.type01.prev::after {
  width: 16px;
  height: 16px;
  left: 16px;
  margin-top: -8px;
}

input[type=submit].com-bt,
input[type=button].com-bt {
  position: relative;
  display: inline-block;
  padding: 16px;
  margin: 0 16px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  font-family: "MPLUS1p-ExtraBold";
  line-height: 1.3;
  background: #EAD02A;
  box-shadow: 0px 6px 15px -5px #000;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  input[type=submit].com-bt,
input[type=button].com-bt {
    font-size: 12px;
    padding: 8px 16px;
  }
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover {
  cursor: pointer;
  opacity: 0.7;
}

button.com-bt {
  color: #000;
  position: relative;
  display: inline-block;
  padding: 16px;
  margin: 0 16px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  font-family: "MPLUS1p-ExtraBold";
  line-height: 1.3;
  background: #EAD02A;
  border: none;
  box-shadow: 0px 6px 15px -5px #000;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  button.com-bt {
    font-size: 12px;
    padding: 8px 16px;
    margin: 0 8px 16px;
  }
}
button.com-bt:hover {
  cursor: pointer;
  opacity: 0.7;
}

.list-btn {
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .list-btn {
    display: block;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
.psp p {
  margin-bottom: 24px;
}

.psp p:last-of-type {
  margin-bottom: 0;
}

/* ぶら下げインデント */
.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;
}

/* カラム幅
-----------------------------------*/
.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: 24px;
  border-collapse: collapse;
  border-spacing: 0;
}

.table th,
.table td {
  border-bottom: solid 1px #000000;
  vertical-align: top;
}

.table th {
  padding: 16px 0;
  text-align: left;
}
.table td {
  padding: 16px 0;
}
/* ニュース一覧
-----------------------------------*/
.list-news {
  margin-bottom: 0 !important;
}
.list-news li {
  padding: 16px;
  border-bottom: 1px solid #FFF;
}
.list-news li:first-child {
  border-top: 1px solid #FFF;
}
.list-news li a {
  display: flex;
  justify-content: space-between;
  font-family: "ZenKakuGothicNew-Bold";
  color: #FFF;
}
.list-news li a .date {
  width: 8em;
  line-height: 1.3;
}
.list-news li a .title {
  width: calc(100% - 8em);
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover .date {
  text-decoration: none !important;
}
@media (max-width: 1023px) {
  .list-news li a {
    display: block;
  }
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 1023px) {
  .wp-pagenavi {
    padding: 40px 0;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  border-radius: 50%;
  color: #007FC1;
}
.wp-pagenavi a:hover, .wp-pagenavi span {
  text-decoration: none;
  background-color: #007FC1;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 16px 0 56px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}
.entry-detail .entry-content {
  overflow: hidden;
  word-break: break-all;
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content p {
  margin: 1em 0;
}

.entry-detail .entry-content h1 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.entry-detail .entry-content h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}

.entry-detail .entry-content h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h4 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h1,
.entry-detail .entry-content h2,
.entry-detail .entry-content h3,
.entry-detail .entry-content h4,
.entry-detail .entry-content h5,
.entry-detail .entry-content h6 {
  margin: 10px 0px !important;
}

.entry-detail .entry-content ul,
.entry-detail .entry-content ol {
  margin: 10px 0 15px 30px;
}

.entry-detail .entry-content ul li {
  list-style: disc;
}

.entry-detail .entry-content ul ul,
.entry-detail .entry-content ol ol,
.entry-detail .entry-content ul ol,
.entry-detail .entry-content ol ul {
  margin-bottom: 0;
}

.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 30px;
}

.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}

/* 投稿画像 */
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img {
  /*max-width: 100%;
  height: auto;*/
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */