@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-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.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: "Montserrat-Bold";
  src: url(/fonts/Montserrat/Montserrat-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url(/fonts/Montserrat/Montserrat-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(/fonts/Montserrat/Montserrat-Regular.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;
}

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

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

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

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

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

main {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  main {
    margin-top: 60px;
  }
}

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

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

/* フォーム
-----------------------------------*/
input::-moz-placeholder {
  color: #D0D0D0;
}
input::placeholder {
  color: #D0D0D0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 16px 30px;
  border: none;
  border-radius: 4px;
  background: #F4F4F4;
  font-size: 16px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  input[type=text],
input[type=email],
input[type=tel],
textarea {
    padding: 8px 16px;
  }
}

input[type=date],
select {
  max-width: 100%;
  padding: 16px 30px;
  font-size: 16px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  input[type=date],
select {
    padding: 8px 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: 1120px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .b-nv {
    width: 90%;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 0 88px;
}
@media (max-width: 767px) {
  .b-nv ul {
    padding: 24px 0 44px;
  }
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 12px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 12px;
}
.b-nv ul li::after {
  content: "/";
  display: block;
  color: #A2A2A2;
  font-family: "NotoSansJP-Bold", sans-serif;
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-area {
  padding: 0 0 112px;
}
.title-area .heading-title {
  position: relative;
  z-index: 0;
  padding-top: 24px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 16px;
  }
}
.title-area .heading-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 2px;
  background: #ECECEB;
}
.title-area .heading-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 50px;
  height: 6px;
  border-radius: 500px;
  background: #155394;
}
@media (max-width: 767px) {
  .title-area .heading-title::after {
    height: 3px;
  }
}
.title-area .heading-title span {
  display: block;
  margin-bottom: 16px;
  color: #155394;
  font-size: 50px;
  font-family: "Montserrat-SemiBold", sans-serif;
}
@media (max-width: 767px) {
  .title-area .heading-title span {
    margin-bottom: 8px;
    font-size: 44px;
  }
}

.heading01 {
  position: relative;
  margin: 0 0 56px;
  padding-top: 24px;
  font-size: 30px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 0 0 48px;
    font-size: 26px;
  }
}
.heading01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 1px;
  background: #ECECEB;
}
.heading01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20px;
  height: 1px;
  border-radius: 500px;
  background: #155394;
}
.heading01.ja {
  font-size: 18px;
}
@media (max-width: 767px) {
  .heading01.ja {
    font-size: 16px;
  }
}
.heading01 span {
  display: block;
  margin-top: 12px;
  color: #155394;
  font-size: 14px;
  font-family: "Montserrat-Bold", sans-serif;
}

.heading02 {
  margin: 0 0 40px;
  font-size: 25px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 0 0 20px;
    font-size: 18px;
  }
}

.heading03 {
  margin: 48px 0 16px;
  font-size: 20px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

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

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

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: inline-block;
  max-width: 300px;
  width: 100%;
  padding: 0 16px;
  border-radius: 8px;
  background-color: #48B789;
  color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 70px;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt {
    max-width: 100%;
    line-height: 64px;
  }
}
.com-bt:hover {
  opacity: 0.7;
  color: #FFF;
  text-decoration: none;
}
.com-bt span {
  position: relative;
  z-index: 0;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding-left: 24px;
  text-align: center;
}
.com-bt span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.com-bt span.wpcf7-spinner {
  display: none !important;
}
.com-bt.prev span::before {
  transform: rotate(180deg) translateY(-50%);
  transform-origin: top;
  width: 15px;
  height: 13px;
  background: url(/images/common/com_arrow02.svg);
  background-size: 100% auto;
}
.com-bt.next span::before {
  width: 15px;
  height: 13px;
  background: url(/images/common/com_arrow02.svg);
  background-size: 100% auto;
}
.com-bt.home span::before {
  width: 18px;
  height: 16px;
  background: url(/images/common/com_ic01.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.insta span::before {
  width: 15px;
  height: 15px;
  background: url(/images/common/com_ic02.svg) no-repeat;
  background-size: 100% auto;
}

.com-bt > input[type=submit],
.com-bt > input[type=button],
button.com-bt {
  border-radius: 8px;
  color: #FFF;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 70px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .com-bt > input[type=submit],
.com-bt > input[type=button],
button.com-bt {
    line-height: 64px;
  }
}
.com-bt > input[type=submit]:hover,
.com-bt > input[type=button]:hover,
button.com-bt:hover {
  color: #FFF;
}

.com-bt > input[type=submit],
.com-bt > input[type=button] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  text-indent: 100%;
  white-space: nowrap;
}

button.com-bt {
  background-color: #48B789;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.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 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

/* タブ切り替え
-----------------------------------*/
.tab {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0;
}
.tab li {
  display: inline-block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 8px 16px;
  border: 2px solid #155394;
  border-radius: 500px;
  background-color: #FFF;
  font-size: 20px;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .tab li {
    font-size: 14px;
  }
}
.tab li:hover, .tab li.active {
  background-color: #155394;
  color: #FFF;
}
.tab li.active {
  pointer-events: none;
}

.tab-cts.disnon {
  display: none;
}

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

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

/* カラム幅
-----------------------------------*/
.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;
  border-top: solid 2px #ECECEB;
}
.table th {
  padding: 40px 0;
  border-bottom: solid 2px #ECECEB;
}
@media (max-width: 767px) {
  .table th {
    padding: 20px 0;
  }
}
.table td {
  padding: 40px 0;
  border-bottom: solid 2px #ECECEB;
}
@media (max-width: 767px) {
  .table td {
    padding: 20px 0;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #CCC;
}
.list-news li:first-child {
  border-top: 1px solid #CCC;
}
.list-news li a {
  position: relative;
  display: block;
  padding: 24px 40px 24px 0;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-news li a {
    display: block;
    padding: 24px 44px 24px 0;
  }
}
.list-news li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
  background: url(/images/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.list-news li a .date {
  display: inline-block;
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 1;
}
.list-news li a .lbl {
  display: inline-block;
  width: 140px;
  margin-left: 16px;
  background-color: #D8E1EF;
  border-radius: 24px;
  line-height: 26px;
  font-size: 11px;
  color: #555;
  text-align: center;
}
@media (max-width: 767px) {
  .list-news li a .lbl {
    width: 115px;
    font-size: 10px;
    line-height: 20px;
  }
}
.list-news li a .txt-wrap {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .list-news li a .txt-wrap {
    margin-top: 8px;
  }
}
.list-news li a .txt-wrap .title {
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a .txt-wrap .txt {
  margin-top: 16px;
  color: #999;
  font-size: 14px;
}
@media (max-width: 767px) {
  .list-news li a .txt-wrap .txt {
    margin-top: 8px;
    font-size: 12px;
  }
}
.list-news li a:hover {
  opacity: 0.7;
  color: #333;
  text-decoration: none;
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 0 16px;
  padding: 56px 0;
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 64px 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  color: #333;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  color: #48B789;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 15px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 13px;
  transition: 0.5s all;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  opacity: 1;
  background: url(/images/information/information_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  opacity: 0;
  background: url(/images/information/information_arrow02.svg) no-repeat;
  background-size: 100% auto;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  opacity: 0;
}
.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  opacity: 1;
}
.wp-pagenavi .previouspostslink {
  transform: rotate(180deg);
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .entry-detail .entry-header {
    display: block;
  }
}
.entry-detail .entry-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 1px;
  background: #ECECEB;
}
.entry-detail .entry-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20px;
  height: 1px;
  border-radius: 500px;
  background: #155394;
}
.entry-detail .entry-header .entry-title {
  flex: 1;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.entry-detail .entry-header .entry-meta {
  width: 96px;
  text-align: right;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta {
    width: 100%;
  }
}
.entry-detail .entry-header .entry-meta .date {
  color: #155394;
  font-size: 14px;
  font-family: "Montserrat-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .date {
    font-size: 12px;
  }
}
.entry-detail .lbl {
  width: 140px;
  margin-top: 8px;
  background-color: #D8E1EF;
  border-radius: 24px;
  line-height: 26px;
  font-size: 11px;
  color: #555;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .lbl {
    width: 115px;
    margin: 8px 0 0 auto;
    font-size: 10px;
    line-height: 20px;
  }
}
.entry-detail .entry-content {
  margin: 112px 0 24px;
  padding-bottom: 80px;
  border-bottom: 1px solid #CCC;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    margin: 56px 0 24px;
    padding-bottom: 40px;
  }
}
.entry-detail .btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  margin: 44px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    flex-wrap: wrap;
    gap: 0 24px;
  }
}
@media (max-width: 767px) {
  .entry-detail .btn-area li:nth-of-type(1) {
    width: 100%;
  }
}
.entry-detail .btn-area li .information-bt {
  display: inline-block;
  color: #C1C6CC;
  line-height: 20px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .entry-detail .btn-area li .information-bt {
    line-height: 1;
  }
}
.entry-detail .btn-area li .information-bt:hover {
  color: #48B789;
  text-decoration: none;
}
.entry-detail .btn-area li .information-bt span {
  position: relative;
  display: inline-block;
}
.entry-detail .btn-area li .information-bt.top {
  padding-right: 40px;
  border-right: 1px solid #C1C6CC;
}
@media (max-width: 767px) {
  .entry-detail .btn-area li .information-bt.top {
    margin-bottom: 16px;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid #C1C6CC;
  }
}
.entry-detail .btn-area li .information-bt.prev span::before, .entry-detail .btn-area li .information-bt.prev span::after, .entry-detail .btn-area li .information-bt.next span::before, .entry-detail .btn-area li .information-bt.next span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
  transition: 0.5s all;
}
.entry-detail .btn-area li .information-bt.prev span::before, .entry-detail .btn-area li .information-bt.next span::before {
  opacity: 1;
  background: url(/images/common/com_arrow04.svg) no-repeat;
  background-size: 100% auto;
}
.entry-detail .btn-area li .information-bt.prev span::after, .entry-detail .btn-area li .information-bt.next span::after {
  opacity: 0;
  background: url(/images/common/com_arrow05.svg) no-repeat;
  background-size: 100% auto;
}
.entry-detail .btn-area li .information-bt.prev:hover span::before, .entry-detail .btn-area li .information-bt.next:hover span::before {
  opacity: 0;
}
.entry-detail .btn-area li .information-bt.prev:hover span::after, .entry-detail .btn-area li .information-bt.next:hover span::after {
  opacity: 1;
}
.entry-detail .btn-area li .information-bt.prev span {
  padding-left: 20px;
}
.entry-detail .btn-area li .information-bt.prev span::before, .entry-detail .btn-area li .information-bt.prev span::after {
  left: 0;
  transform: rotate(180deg) translateY(-50%);
  transform-origin: top;
}
.entry-detail .btn-area li .information-bt.next span {
  padding-right: 20px;
}
.entry-detail .btn-area li .information-bt.next span::before, .entry-detail .btn-area li .information-bt.next span::after {
  right: 0;
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content .large-img {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content .large-img {
    margin-bottom: 40px;
  }
}
.entry-detail .entry-content a {
  display: inline-block;
  color: #48B789;
  text-decoration: underline;
}
.entry-detail .entry-content a:hover {
  text-decoration: none;
}
.entry-detail .entry-content p {
  margin: 1em 0;
  line-height: 2.1;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "NotoSansJP-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: "NotoSansJP-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: "NotoSansJP-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: "NotoSansJP-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: "NotoSansJP-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: "NotoSansJP-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 #333;
  font-family: "NotoSansJP-Bold", sans-serif;
  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;
  border: solid 1px #333;
}
@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 */