@charset "UTF-8";

/*--------------------------------------------------------
　プラグインやテンプレートパーツ等の自作パーツ系のスタイル
--------------------------------------------------------*/

/* =======================================
　パンくずリスト
======================================= */

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb a:link {
  text-decoration: none !important;
}

.breadcrumb a span:hover {
  color: #555;
}

.breadcrumb span,
.breadcrumb {
  color: #999;
  font-size: var(--size-primary-font-verysmall);
}

.breadcrumb span {
  padding: 0 1px;
  vertical-align: -.3px;
}

.fa-angle-right:before {
  color: #999;
  content: "\f105";
  padding: 0 8px;
}



/* =======================================
　SNSシェアボタン
======================================= */
.sns__container {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
}

.sns__container a {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 5px 0;
}

.sns__container a:hover {
  filter: grayscale(100%);
}

.sns__twitter {
  background: #000;
}

.sns__facebook {
  background: #3b5998;
}

.sns__pocket {
  background: #ef3f56;
}

.sns__line {
  background: #1dcd00;
}


/*------ アイコン調整 -----*/

.sns_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* X */
.sns__twitter img.sns_icon {
  width: 19px;
}

/* Facebook */
.sns__facebook img.sns_icon {
  width: 21px;
}

/* LINE */
.sns__line img.sns_icon {
  width: 27px;
}

/* Pocket */
.sns__pocket img.sns_icon {
  width: 22px;
}


/* =======================================
　コメント欄
======================================= */

.comments {
  font-size: var(--size-primary-font-small);
}

@media only screen and (max-width:767px) {
  .comments {
    font-size: var(--size-primary-font-small);
  }
}

.comments .comment-respond .comment-reply-title {
  font-size: 18px;
}

@media only screen and (max-width:767px) {
  .comments .comment-respond .comment-reply-title {
    font-size: 18px;
  }
}

.comments .comment-respond+p {
  border-bottom: 1px dotted #EEE;
  border-top: 1px dotted #EEE;
  text-align: right;
}

.comments .comment-form .comment-notes {
  font-size: var(--size-primary-font-small);
}

@media only screen and (max-width:767px) {
  .comments .comment-form .comment-notes {
    font-size: var(--size-primary-font-small);
  }
}

.comments .comment-form .logged-in-as {
  font-size: var(--size-primary-font-small) !important;
}

.comments .comment-form .comment-form-comment label {
  display: block;
}

.comments .comment-form .comment-form-comment textarea {
  border: 1px solid #DDD;
  height: 200px;
  padding: 10px;
  width: 100%;
}

.comments .comment-form .comment-form-author,
.comments .comment-form .comment-form-email,
.comments .comment-form .comment-form-url {
  align-items: center;
  display: flex;
}

.comments .comment-form .comment-form-author label,
.comments .comment-form .comment-form-email label,
.comments .comment-form .comment-form-url label {
  white-space: nowrap;
  width: 180px;
}

.comments .comment-form .comment-form-author input,
.comments .comment-form .comment-form-email input,
.comments .comment-form .comment-form-url input {
  padding: 10px;
  width: calc(100% - 180px);
}

.comments .comment-form .comment-form-cookies-consent {
  font-size: var(--size-primary-font-small);
}

@media only screen and (max-width:767px) {
  .comments .comment-form .comment-form-cookies-consent {
    font-size: var(--size-primary-font-small);
  }
}

.comments .comment-form .form-submit {
  text-align: center;
}

.comments .comment-form .form-submit .submit {
  background-color: var(--color-primary-link);
  border: none;
  border-radius: 5px 5px 5px 5px !important;
  cursor: pointer;
  display: inline-block;
  font-size: var(--size-primary-font);
  line-height: 1;
  padding: 16px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: var(--color-wh);
}

@media only screen and (max-width:767px) {
  .comments .comment-form .form-submit .submit {
    font-size: var(--size-primary-font);
  }
}

.comments .comment-form .form-submit .submit:hover {
  opacity: .8;
}

.comments .commentlist .comment {
  border-bottom: 1px dotted #DDD;
  padding: 16px 0;
}

.comments .commentlist .comment:last-child {
  border-bottom: none;
}

.comments .commentlist .comment .children {
  border-left: 2px solid #EEE;
  margin-left: 32px;
  padding-left: 32px;
}

.comments .commentlist .comment .comment-body .comment-awaiting-moderation {
  display: block;
  padding-top: 16px;
  text-align: center;
}

.comments .commentlist .comment .comment-body .comment-author {
  align-items: center;
  display: flex;
}

.comments .commentlist .comment .comment-body .comment-author cite {
  margin-left: 10px;
}

.comments .commentlist .comment .comment-body .comment-meta {
  font-size: var(--size-primary-font-verysmall);
  text-align: right;
}

@media only screen and (max-width:767px) {
  .comments .commentlist .comment .comment-body .comment-meta {
    font-size: var(--size-primary-font-verysmall);
  }
}

.comments .commentlist .comment .comment-body p {
  font-size: var(--size-primary-font);
}

@media only screen and (max-width:767px) {
  .comments .commentlist .comment .comment-body p {
    font-size: var(--size-primary-font);
  }
}

.comments .commentlist .comment .comment-body .reply {
  text-align: center;
}

.comments .commentlist .comment .comment-body .reply .comment-reply-link {
  background-color: #EEE;
  border: none;
  border-radius: 5px 5px 5px 5px !important;
  cursor: pointer;
  display: inline-block;
  font-size: var(--size-primary-font-small);
  line-height: 1;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
}

@media only screen and (max-width:767px) {
  .comments .commentlist .comment .comment-body .reply .comment-reply-link {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) {
  .comments {
    margin-top: 32px;
    padding-top: 32px;
  }

  .comments .comment-respond .comment-reply-title {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .comments .comment-respond .comment-reply-title {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) {
  .comments .comment-form .logged-in-as {
    font-size: var(--size-primary-font-verysmall);
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .comments .comment-form .logged-in-as {
    font-size: var(--size-primary-font-verysmall);
  }
}

@media only screen and (max-width:767px) {
  .comments .comment-form .comment-form-comment textarea {
    height: 100px;
  }
}

@media only screen and (max-width:767px) {

  .comments .comment-form .comment-form-author,
  .comments .comment-form .comment-form-email,
  .comments .comment-form .comment-form-url {
    display: block;
  }

  .comments .comment-form .comment-form-author label,
  .comments .comment-form .comment-form-email label,
  .comments .comment-form .comment-form-url label {
    display: block;
    width: 100%;
  }

  .comments .comment-form .comment-form-author input,
  .comments .comment-form .comment-form-email input,
  .comments .comment-form .comment-form-url input {
    width: 100%;
  }
}

@media only screen and (max-width:767px) {
  .comments .comment-form .comment-form-cookies-consent {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .comments .comment-form .comment-form-cookies-consent {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) {
  .comments .comment-form .form-submit .submit {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .comments .comment-form .form-submit .submit {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) {
  .comments .commentlist .comment .children {
    margin-left: 15px;
    padding-left: 15px;
  }

  .comments .commentlist .comment .comment-body p {
    font-size: var(--size-primary-font-small);
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .comments .commentlist .comment .comment-body p {
    font-size: var(--size-primary-font-small);
  }
}




/* =======================================
　ページャー（前の記事＆後の記事）
======================================= */

.postLinks {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  ;
}

.postLink {
  max-width: 49%;
}

.postLink.postLink-prev,
.postLink.postLink-next {
  display: inline-block;
  position: relative;
}

.postLink a,
.postLink a:link,
.postLink a:visited {
  /* display: inline-block; */
  display: flex;
  height: 100%;
  align-items: center;
  border: 1px solid var(--color-primary-link);
  padding: 4px 8px;
  font-size: var(--size-primary-font-small);
  text-decoration: none !important;
  color: var(--color-primary-link);
}

.postLink.postLink-next a {
  display: flex;
  flex-direction: row-reverse;
}

.postLink img {
  filter: invert(43%) sepia(89%) saturate(948%) hue-rotate(46deg) brightness(95%) contrast(98%);
}

.postLink.postLink-prev img {
  margin-right: 8px;
}

.postLink.postLink-next img {
  margin-left: 8px;
}



/* =======================================
　ページャー（記事数）
======================================= */

.pageNav {
  padding: 0 15px;
}

.pageNav ul {
  display: flex;
  justify-content: center;
}

.pageNav ul li {
  border-left: 1px solid var(--color-gray05);
  line-height: 1;
  margin-bottom: 0;
}

.pageNav ul li:last-child {
  border-right: 1px solid var(--color-gray05);
}

.pageNav ul li a,
.pageNav ul li span {
  color: var(--color-gray05);
  cursor: pointer;
  font-size: var(--size-primary-font);
  padding: 5px 15px;
  white-space: nowrap;
}

@media only screen and (max-width:767px) {

  .pageNav ul li a,
  .pageNav ul li span {
    font-size: var(--size-primary-font);
  }
}

.pageNav ul li a:hover,
.pageNav ul li span:hover {
  opacity: .7;
}



/* =======================================
　上に戻るボタン
======================================= */
#scroll-top {
  display: none;
}

#scroll-top.visible {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  opacity: 0;
  animation-name: scroll-top;
  animation-duration: 1s;

  justify-content: center;
  animation-fill-mode: forwards;
}

#scroll-top img {
  background: var(--color-footerbottom-bg);
  border-radius: 50%;
  width: 60px;
  float: right;
  position: fixed;
  bottom: 80px;
  right: 5px;
  z-index: 1000;
}

@keyframes scroll-top {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}




/* =======================================
　　固定お問い合わせボタン
======================================= */

#fixed-contact-btn {
  display: none;
}

#fixed-contact-btn.visible {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  opacity: 0;
  animation-name: fixed-contact;
  animation-duration: 1s;

  justify-content: center;
  animation-fill-mode: forwards;
}

#fixed-contact-btn a {
  display: block;
  box-sizing: border-box;
  padding: 12px 16px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: var(--size-primary-font);
  transition: all .5s;
}

#fixed-contact-btn a:hover {
  opacity: 1;
}

#fixed-contact-btn a::before {
  display: inline-block;
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  content: '';
  vertical-align: -4.5px;
}


@keyframes fixed-contact {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.non-contactbtn #fixed-contact-btn {
  display: none;
}

.non-contactbtn #footer-inner {
  padding-bottom: 0;
}


/*------ 固定コンタクトボタン ------*/

/*固定コンタクトボタンの色（通常時）*/
#fixed-contact-btn a {
  background: var(--color-accent01);
  color: #FFF;
}


/*固定コンタクトボタンの色（マウスオン時）*/
#fixed-contact-btn a:hover {
  background: var(--color-accent02);
}


/*固定コンタクトボタンのメールアイコン（SVG）*/
#fixed-contact-btn a::before {
  background: url('data:image/svg+xml;utf-8,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"/></svg>') no-repeat;
}

.button {
  font-size: var(--font-size-md);
  background: var(--accent-color);
  color: var(--background-color);
  transition: all var(--transition-speed) var(--transition-timing);
}

.widget-title {
  font-size: var(--font-size-lg);
  font-family: var(--font-secondary);
  color: var(--text-color);
}

.border-box {
  border: 1px solid var(--border-color);
}