/** wp **/
/* ------------------------------
  Reset
------------------------------ */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

dt {
  font-weight: bold
}

dd {
  margin-left: 0
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit
}

pre {
  font-family: monospace, monospace;
  font-size: inherit
}

address {
  font-style: inherit
}

a {
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: inherit
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: 700;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -0.25em
}

sup {
  top: -0.5em
}

img,
embed,
object,
iframe {
  vertical-align: bottom
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText
}

select::-ms-expand {
  display: none
}

option {
  padding: 0
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

label[for] {
  cursor: pointer
}

details {
  display: block
}

summary {
  display: list-item
}

[contenteditable] {
  outline: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

caption {
  text-align: left
}

td,
th {
  vertical-align: top;
  padding: 0
}

th {
  text-align: left;
  font-weight: bold
}

template {
  display: none
}

[hidden] {
  display: none
}

/* ------------------------------
  Base
------------------------------ */
:root {
	--lightblue: #edf1fc;
	--skyblue: #d8eefb;
	--blue: #223773;
	--yellow: #ffd814;
	--black: #2b2b2b;
	--orange: #f18e21;
	--green: #009100;
}

html {
	font-size: 16px;
}

body {
	min-width: 320px;
 	background-color: var(--lightblue);
	font-family: "M PLUS 1p", sans-serif;
	font-size: 1rem;
	letter-spacing:.05em;
	color:var(--black);
	font-weight: 500;
}

a img {
  pointer-events: none
}


/* ------------------------------
  Layout
------------------------------ */
/* ヘッダー */
.l-header {
	position: sticky;
    top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(94, 94, 94, .18);
	z-index: 100;
}

@media screen and (min-width: 960px)and (max-width: 1279px) {
  .l-header {
	  font-size: 1vw;
  }
}

.l-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	height: 80px;
}

@media screen and (max-width: 767px) {
  .l-header__inner {
	  height: 64px;
  }
}

.l-header__logo-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	max-width: 1323px;
}

@media screen and (max-width: 959px) {
  .l-header__logo-wrapper {
	  position: relative;
	  z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .l-header__logo-wrapper {
	  padding: 0 20px;
  }
}

.l-header__logo {
	width: 25em;
	height: auto;
}

@media screen and (max-width: 959px) {
  .l-header__logo {
	  width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__logo {
	  width: 160px;
  }
}

.l-header__nav {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

@media screen and (max-width: 959px) {
  .l-header__nav {
    position: fixed;
    z-index: 0;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    row-gap: 48px;
    padding: 64px 20px;
    overflow-y: scroll;
    background-color: var(--lightblue);
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
	  top: 64px;
  }
}
body.is-menu-opened .l-header__nav {
	transform: translateX(0);
}
.l-header__list {
	display: flex;
	column-gap: 1.2em;
	font-size: 1rem;
	font-weight: 500;
	color: var(--blue);
}

@media screen and (max-width: 959px) {
  .l-header__list {
	  flex-direction: column;
	  row-gap: 48px;
  }
}
.l-header__list-item {
	position: relative;
	display: inline-block;
	padding: 5px 0;
	text-decoration: none;
	line-height: 1;
	text-align: center;
}
.l-header__list-item::before {
	content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px; /* ラインの太さ */
  background-color: var(--yellow);
  transform: scaleX(0); /* 初期状態は幅0 */
  transform-origin: left; /* 左から拡大開始 */
  transition: transform 0.3s ease-in-out; /* アニメーション設定 */
}
.l-header__list-item:hover::before {
	transform: scaleX(1);
}

.l-header__link-button {
	position: relative;
	display: flex;
	align-items: center;
	column-gap: .8em;
	padding-left: 10px;
	width: 18.5em;
	height: 80%;
	border-radius: 12px;
	background-image: linear-gradient(0deg, #0f6f36, #06c755 50% 100%);
}
@media screen and (max-width: 959px) {
  .l-header__link-button {
	  height: 80px;
	  flex-shrink: 0;
  }
}
.l-header__link-button::after {
	position: absolute;
	content: "";
	top: 50%;
	right: .6em;
	width: .6em;
	height: .9em;
	background: url("../img/button_arrow.png") no-repeat center/contain;
	transform: translateY(-50%);
}
@media(any-hover: hover) {
  .l-header__link-button {
	  transition: filter .3s;
  }
  .l-header__link-button:hover {
	  filter: brightness(1.1);
  }
}
.l-header__link-button__free {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3em;
	height: 3em;
	border-radius: 6px;
	background-color: #fff;
	font-size: 1.1em;
	font-weight: 700;
	letter-spacing: .1em;
	color: #e47b1c;
}
.l-header__link-button__text {
	text-align: left;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .1em;
	color: #fff;
}

.l-header__menu-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 6px;
}

@media screen and (min-width: 960px) {
  .l-header__menu-button {
    display: none;
  }
}

.l-header__menu-button__line,
.l-header__menu-button::before,
.l-header__menu-button::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #333;
  transition: transform .3s, opacity .3s;
}

body.is-menu-opened .l-header__menu-button__line {
  opacity: 0
}

body.is-menu-opened .l-header__menu-button::before {
  transform: translateY(8px) rotate(45deg);
}

body.is-menu-opened .l-header__menu-button::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* フッター */
.l-footer {
    letter-spacing:.13em
}
.l-footer a {
    -webkit-transition:opacity .3s;
    transition:opacity .3s
}
@media(any-hover: hover) {
    .l-footer a:hover {
        opacity:.75
    }
}
.l-footer__bottom {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-column-gap:64px;
    -moz-column-gap:64px;
    column-gap:64px;
    padding-top:24px;
    padding-bottom:24px;
}
@media screen and (max-width: 767px) {
    .l-footer__bottom {
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        -webkit-box-pack:start;
        -ms-flex-pack:start;
        justify-content:flex-start;
        row-gap:24px;
        padding-right:15px !important;
        padding-left:15px !important;
    }
}
.l-footer__bottom ul.menu {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:end;
    -ms-flex-pack:end;
    justify-content:flex-end;
    gap:.8em .5em;
    font-size: .9rem;
}
@media screen and (max-width: 1279px) {
    .l-footer__bottom ul.menu  {
        font-size: .85rem
    }
}
@media screen and (max-width: 959px) {
    .l-footer__bottom ul.menu {
        font-size: .8rem
    }
}
@media screen and (max-width: 767px) {
    .l-footer__bottom ul.menu {
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        justify-content:center;
        font-size: .7rem;
    }
}
.l-footer__bottom ul.menu .menu-item:not(:first-of-type) {
    padding-left:.5em;
    border-left:1px solid #2b2b2b;
}
.l-footer__logo {
    width:213px;
    height:auto;
    margin-left:26px;
}
@media screen and (max-width: 1279px) {
    .l-footer__logo {
        width:200px;
        margin-left:22px;
    }
}
@media screen and (max-width: 959px) {
    .l-footer__logo {
        width:160px;
        margin-left:16px
    }
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        width:140px;
        margin-left:0
    }
}
.l-footer__copyright {
    padding:13px;
    background-color:var(--blue);
    text-align:center;
    font-size:.8rem;
    line-height:1;
    color:#fff;
}
@media screen and (max-width: 1279px) {
    .l-footer__copyright {
        font-size:.7rem;
    }
}

/* メインカラム */
.l-main {
  margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
    background-color:#fff;
    border-radius:0;
}

@media screen and (max-width: 767px) {
  .l-main {
	  padding-top: 10px;
	  padding-bottom: 36px
  }
}

/* ------------------------------
  Component
------------------------------ */
.c-img-full {
  display: block;
  width: 100%;
  height: auto;
}

/* wrapper */
.c-wrapper {
  max-width: 1313px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .c-wrapper {
    padding-right: 0;
    padding-left: 0
  }
}

@media screen and (max-width: 767px) {
  .c-footer-posts {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* 見積りバナー */
.c-banner-btn {
  display: block
}

@media(hover: hover) {
  .c-banner-btn {
    transition: opacity .3s
  }

  .c-banner-btn:hover {
    opacity: .75
  }
}

.c-banner-btn.--margin-top {
  margin-top: 34px
}

@media screen and (max-width: 767px) {
  .c-banner-btn.--margin-top {
    margin-top: 24px
  }
}

.c-banner-btn__img {
  width: 100%;
  height: auto
}

.c-banner-btn__caption {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .13em;
  color: var(--green)
}

@media screen and (max-width: 1279px) {
  .c-banner-btn__caption {
    font-size: .875rem
  }
}

@media screen and (max-width: 767px) {
  .c-banner-btn__caption {
    font-size: .8125rem
  }
}

/* パンくず */
/* 横スクロールを可能にする */
.c-breadcrumb {
  padding: .1em 1em;
	background-color: var(--lightblue);
}

.c-breadcrumb__list {
	display: flex;
    align-items: center;
     gap: .5em;
	margin-top: 6px;
    font-size: .75rem;
    list-style: none;
    overflow: hidden;
    width:100%
}
.c-breadcrumb__link {
    align-items: center;
    color: inherit;
    display: block;
    display: inline-flex;
    text-decoration: underline;
    white-space:nowrap
}
.c-breadcrumb__list {
  overflow-x: auto;
  padding-left: 0;
  padding-bottom: 3px;
  scrollbar-color: #d1d1d1 transparent; /* スクロールバーの背景と色を調整 */
  max-width: 1200px; /* メニューの開始位置とパンくずリストの縦位置を合わせる */
}
/* Safari用 （scrollbar-colorが効かないため） */
.c-breadcrumb__list::-webkit-scrollbar {
  height: 6px; /* 横スクロールバーの高さ */
}
.c-breadcrumb__list::-webkit-scrollbar-track {
  background: transparent; /* スクロールバーの背景 */
}
.c-breadcrumb__list::-webkit-scrollbar-thumb {
  background-color: #d1d1d1; /* スクロールバーの色 */
}
.c-breadcrumb__item {
    align-items: center;
    display: inline-flex;
    gap: .5em;
    position:relative
}

.c-breadcrumb__item:not(:last-of-type)::after {
  content: "＞"
}


/* コンテナ */
.c-container {
  padding-left: 5%;
  padding-right: 5%;
}

@media screen and (max-width: 767px) {
  .c-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}







/* カテゴリー一覧 */
.c-footer-categories {
  margin: 40px 0 0;
  padding: 19px 0 48px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-footer-categories {
    padding: 19px 20px 48px;
  }
}
.c-footer-categories__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px 9px;
}
@media screen and (max-width: 1023px) {
  .c-footer-categories__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-footer-categories__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-footer-categories__link {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	height: 100%;
	padding: 10px;
	border: 1px solid #989898;
	border-radius: 8px;
	outline: 1px solid transparent;
	outline-offset: 0;
	transition: border-color 0.3s, outline-color 0.3s;
}

@media (any-hover: hover) {
  .c-footer-categories__link:hover {
    border-color: var(--blue);
    outline-color: var(--blue);
  }
}

@media screen and (max-width: 767px) {
  .c-footer-categories__link {
    column-gap: 8px;
    padding: 8px;
    border-radius: 4px;
  }
}

.c-footer-categories__img-wrapper {
  height: 60px;
}

@media screen and (max-width: 767px) {
  .c-footer-categories__img-wrapper {
    height: 48px;
  }
}

.c-footer-categories__img {
  width: 60px;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .c-footer-categories__img {
    width: 48px;
  }
}

.c-footer-categories__name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333;
}

@media screen and (max-width: 1279px) {
  .c-footer-categories__name {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .c-footer-categories__name {
    font-size: 0.75rem;
  }
}

/* 記事リスト */
.home .c-post-index {
  margin-top: 50px
}

@media screen and (max-width: 767px) {
  .home .c-post-index {
    margin-top: 36px
  }
}
.c-post-index__head {
	margin-bottom: 12px;
	border-bottom: 1px solid var(--blue);
}
.c-post-index__icon {
  flex-shrink: 0;
  margin-right: 10px;
  width: 60px;
  height: auto;
}

@media screen and (max-width: 1279px) {
  .c-post-index__icon {
    width: 48px;
  }
}

@media screen and (max-width: 767px) {
  .c-post-index__icon {
    width: 40px;
  }
}

.c-post-index__title {
	position: relative;
	display: inline-block;

	padding: 2px 12px;
	background-color: var(--blue);
	font-size: 1rem;
	color: #fff;
}

@media screen and (max-width: 1279px) {
  .c-post-index__title {
    font-size: .875rem
  }
}

.c-post-index__cat-name {
  font-size: 1.4em;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c-post-index__cat-name {
    font-size: 1.25rem
  }
}

.c-post-index__body {
	margin-bottom: 24px;
}

/*@media screen and (max-width: 767px) {
  .c-post-index__body {
    padding: 16px 15px 18px
  }
}*/

/* 各カテゴリー新着記事 */
.c-post-index__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}
@media screen and (max-width: 959px) {
	.c-post-index__list {
		grid-template-columns: repeat(2, 1fr)
	}
}
@media screen and (max-width: 767px) {
	.c-post-index__list {
		grid-template-columns: repeat(1, 1fr)
	}
}
.c-post-index__link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	flex-direction: column;
	-webkit-column-gap: 7px;
	-moz-column-gap: 7px;
	column-gap: 7px;
	height: 100%;
	padding: 3px 12px;
	border: 1px solid #989898;
	border-radius: 8px;
	background-color: #fff;
	outline: 1px solid transparent;
	outline-offset: 0;
	transition: border-color 0.3s, outline-color 0.3s;
}
/*@media screen and (max-width: 1279px) {
	.c-post-index__link::after {
		width: 20px;
		height: 20px;
	}
}*/
@media(any-hover: hover) {
	.c-post-index__link:hover {
		border-color: var(--blue);
		outline-color: var(--blue);
	}
}
.c-post-index__post-title {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: .8rem;
	font-weight: 500;
	line-height: 1.286;
	letter-spacing: .2em;
	color: #454545;
	overflow-wrap: anywhere;
}

.p-post-index__cat-label {
  display: inline-block;
  margin-bottom: 4px;
  padding: 3.5px 5px;
  font-size: .75rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .2em;
  border: 2px solid #fd644f;
  border-radius: 3px;
  color: #fd644f;
  overflow-wrap: anywhere
}

body.category .p-post-index__cat-label {
  display: none
}

.c-post-index__more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 10px 0 0 auto;
	padding: 6px;
  padding-right: 2px;
  border-radius: 6px;
  background-color: var(--blue);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .2em;
  transition: opacity .25s ease-in-out;
  color: #fff
}

@media(hover: hover) {
  .c-post-index__more-btn:hover {
    opacity: .75
  }

  .c-post-index__more-btn:hover::after {
    transform: translateX(1.5px)
  }
}

.c-post-index__no-post {
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .13em;
  color: #454545;
  padding: 60px 0
}

/* 見出し */
.c-heading {
	margin: 26px 0 10px;
	padding-bottom: 8px;
	border-bottom: 3px double var(--blue);
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.45455;
	letter-spacing: 0.1em;
	color: var(--blue);
}

@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1.125rem;
  }
}


/* リフォーム・外壁塗装の基礎知識 */
.c-postList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px
}

@media screen and (max-width: 1155px) {
  .c-postList {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media screen and (max-width: 959px) {
  .c-postList {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media screen and (max-width: 767px) {
  .c-postList {
    grid-template-columns: repeat(1, 1fr)
  }
}
.c-postList__link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	flex-direction: column;
	-webkit-column-gap: 7px;
	-moz-column-gap: 7px;
	column-gap: 7px;
	height: 100%;
	padding: 3px 12px;
	border: 1px solid #989898;
	border-radius: 8px;
	background-color: #fff;
	outline: 1px solid transparent;
	outline-offset: 0;
	transition: border-color 0.3s, outline-color 0.3s;
}
@media screen and (max-width: 1279px) {
  .c-postList__link::after {
    width: 20px;
    height: 20px
  }
}
@media(any-hover: hover) {
  .c-postList__link:hover {
	  border-color: var(--blue);
	  outline-color: var(--blue);
  }
}
.c-postList__category {
	display: inline-block;
	margin: 10px 0 4px;
	padding: 3px 12px;
  	background-color: #ff5000;
	border-radius: 9999px;
	color: #fff;
	font-size: .7rem;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: .2em;
	overflow-wrap: anywhere
}

.c-postList__title {
  margin-bottom: 10px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.286;
  letter-spacing: .2em;
  color: #454545;
  overflow-wrap: anywhere
}

/* ------------------------------
  Project
------------------------------ */
/* 記事詳細ページ */
.p-article {}

@media screen and (max-width: 767px) {
  .p-article {}
}

.p-article__thumbnail {
  display: block;
  width: 100%;
  height: auto;
}

.p-article__title {
	margin: 0;
	padding: 15px;
	border-bottom: 5px solid var(--blue);
	background-color: var(--skyblue);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

@media screen and (max-width: 1023px) {
  .p-article__title {
    font-size: 1.75rem
  }
}

@media screen and (max-width: 767px) {
  .p-article__title {
	  padding: 6px;
	  font-size: 1.25rem
  }
}

.p-article__first-text {
  margin-top: 32px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.111;
}

@media screen and (max-width: 1023px) {
  .p-article__first-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__first-text {
    margin-top: 24px;
    font-size: .875rem
  }
}

.p-article__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.4189%;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .p-article__bottom {
    column-gap: 10px;
  }
}

.p-article__bottom-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: var(--blue);
  padding-bottom: 2px;
	border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.3s;
}

@media screen and (max-width: 1023px) {
  .p-article__bottom-btn {
	  height: 40px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__bottom-btn {
    column-gap: 4px;
    font-size: 0.75rem;
  }
}

.p-article__bottom-btn.--prev::before,
.p-article__bottom-btn.--next::after {
  content: "";
  position: absolute;
  top: calc(50% - 12.5px);
  width: 25px;
  height: 25px;
  background: url("../img/icon-toggle.svg") no-repeat center / contain;
}

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

  .p-article__bottom-btn.--prev::before,
  .p-article__bottom-btn.--next::after {
    position: static;
    width: 16px;
    height: 16px;
  }
}

.p-article__bottom-btn.--prev::before {
  left: 10px;
  transform: rotate(90deg);
}

.p-article__bottom-btn.--next::after {
  right: 10px;
  transform: rotate(-90deg);
}

@media (any-hover: hover) {
  .p-article__bottom-btn:hover {
    opacity: 0.75;
  }
}

/* アーカイブページ */
.p-index-page__contents {
	padding-left: 5%;
	padding-right: 5%;
}

@media screen and (max-width: 767px) {
  .p-index-page__contents {
    padding: 0 15px
  }
}
@media screen and (max-width: 767px) {
  .p-mv_cta {
	  padding-top: 12px;
  }
}


/* cta */
.p-cta {
	position: relative;
	padding-top: 10px;
	background-color: var(--lightblue);
	text-align: center;
}
.p-cta__btm {
	margin-top: 80px;
}
.p-cta__area {
	margin: 0 auto 20px;
	padding: 0 12px 20px;
	width: 100%;
	max-width: 860px;
	text-align: center;
}
.p-cta__area img {
	width: 100%;
}
.p-cta__img {
	max-width: 960px;
}
/* アコーディオン */
.p-cta__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  column-gap: 15px;
	margin-bottom: 24px;
}
.p-cta__toggle:hover {
	cursor: pointer;
	opacity: .7;
	transition: .5s;
}

/* CTAアコーディオンの中 */
.p-cta__detail {
	margin: 0 auto 24px;
	width: 100%;
	max-width: 900px;
}

@media screen and (max-width: 639px) {
  .p-mv__bg {
    max-width: 404px;
    left: 50%;
    transform: translateX(-50%)
  }
}

.p-mv__content {
  width: 32.667%;
  margin: 0 auto
}

@media screen and (max-width: 639px) {
  .p-mv__content {
    width: 100%;
    max-width: 292px
  }
}

.p-mv__title {
  display: block;
  width: calc(100% - 8px);
  height: auto;
  margin: 0 auto
}

.p-mv__text {
  margin-top: 10px;
  margin-right: -1em;
  font-size: .723rem;
  line-height: 1.383;
  letter-spacing: .13em
}

@media screen and (max-width: 1279px) {
  .p-mv__text {
    font-size: .6875rem
  }
}

@media screen and (max-width: 639px) {
  .p-mv__text {
    margin-left: 0
  }
}
*/
/* 404ページ */
.p-page404 {
  padding: 10em 0;
  text-align: center;
}

.p-page404__title {
  font-size: 1.625rem;
  font-weight: 700
}

.p-page404__message {
  margin-top: 2em;
  line-height: 1.75
}

/* ページネーション */
.p-pagination {
  margin-top: 28px
}

.p-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  font-size: 1.125rem
}

@media screen and (max-width: 767px) {
  .p-pagination ul.page-numbers {
    font-size: 1rem
  }
}

.p-pagination li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  height: 64px;
  padding: 8px;
  border: 1px solid #ddd;
  color: #fd644f
}

@media screen and (max-width: 1279px) {
  .p-pagination li .page-numbers {
    min-width: 56px;
    height: 56px
  }
}

@media screen and (max-width: 767px) {
  .p-pagination li .page-numbers {
    min-width: 44px;
    height: 44px
  }
}

.p-pagination li .page-numbers.current {
  background-color: #fd644f;
  color: #fff
}

.p-pagination li .page-numbers.dots {
  border: none
}

@media(hover: hover) {
  .p-pagination li a {
    transition: border-color .3s
  }

  .p-pagination li a:hover {
    border-color: #fd644f
  }
}

/* 関連記事 */
.p-related-posts {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-related-posts {
	  margin-top: 46px;
  }
}

.p-related-posts__head {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 11px 15px;
  border-radius: 10px 10px 0 0;
  background-color: var(--blue);
}
.p-related-posts__title {
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .13em;
  color: #fff
}
.p-related-posts__cat-name {
  font-size: 1.5em
}
@media screen and (max-width: 767px) {
  .p-related-posts__cat-name {
    font-size: 1.25rem
  }
}
.p-related-posts__body {
	padding: 20px;
	border-radius: 0 0 10px 10px;
 	background-color: var(--skyblue);
}
@media screen and (max-width: 767px) {
  .p-related-posts__body {
	  padding: 16px;
  }
}
.p-related-posts__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

@media screen and (max-width: 1279px) {
  .p-related-posts__list {
	  grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-related-posts__list {
	  grid-template-columns: 100%;
  }
}
.p-related-posts__link {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  height: 100%;
  padding: 7px 12px;
  border: 2px solid #fff;
  border-radius: 12px;
  background-color: #fff;
  transition: border-color .25s ease-in-out
}
@media(hover: hover) {
  .p-related-posts__link:hover {
    border-color: var(--blue);
  }
  .p-related-posts__link:hover::after {
    right: 8px
  }
}

.p-related-posts__image {
  flex-shrink: 0;
  width: 56px;
  height: auto;
  margin-right: -3px
}

@media screen and (max-width: 767px) {
  .p-related-posts__image {
    width: 25%
  }
}

.p-related-posts__post-title {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.286;
  letter-spacing: .2em;
  color: #454545;
  overflow-wrap: anywhere
}

.p-related-posts__cat-label {
  display: inline-block;
  margin-bottom: 4px;
  padding: 3.5px 12px;
  font-size: 0.625rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: .2em;
  background-color: #ff5000;
  border-radius: 9999px;
  color: #fff;
  overflow-wrap: anywhere
}

body.category .p-related-posts__cat-label {
  display: none
}

.p-related-posts__more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 35px;
  margin: 10px 0 0 auto;
  padding-right: 2px;
  border-radius: 9999px;
  background-color: var(--blue);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .2em;
  transition: opacity .25s ease-in-out;
  color: #fff
}

.p-related-posts__more-btn::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 2px;
  background: url("../img/more_arrow.png") no-repeat center/contain;
  transition: transform .25s ease-in-out;
}

@media(hover: hover) {
  .p-related-posts__more-btn:hover {
    opacity: .75
  }

  .p-related-posts__more-btn:hover::after {
    transform: translateX(1.5px)
  }
}

.p-related-posts__no-post {
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .13em;
  color: #454545;
  padding: 60px 0
}

/* ------------------------------
  Utility
------------------------------ */
.u-inline-block {
  display: inline-block
}

@media screen and (min-width: 768px) {
  .u-pc-hidden {
    display: none
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}


/* ------------------------------
2026/01：追加
recommendation__area：市区町村スライダー
------------------------------ */
.recommendation__area {
	padding: 12px;
	border: 1px solid #898989;
	border-radius: 8px;
	font-weight: normal;
}
.recommendation__headline {
	position: relative;
	display: inline-block;
	margin-bottom: 24px;
	font-size: 1.4rem;
	color: #333;
	text-decoration: underline;
	text-decoration-color: #b3d6e0;
	text-decoration-thickness: 0.8em;
	text-decoration-skip-ink: none;
	text-underline-offset: -0.25em;
	text-align: center;
	font-weight: 600;
}
@media (max-width: 767px) {
	.recommendation__headline {
		font-size: 1rem;
	}
}
.recommendation__inner {
	display: flex;          /* slick の初期レイアウトでも問題なし */
	gap: 4px;              /* slick では margin に置き換えるのが良い */
}
/* slick全体の高さを揃える */
/*.slick-track {
	display: flex !important;
	align-items: stretch;
}
.slick-slide {
	display: flex !important;
	height: auto !important;
}*/
.recommendation__card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	margin: 0 4px 12px;
	padding: 12px;
	width: 100%;
	max-width: 600px;
	height: 100%;
}
@media (max-width: 767px) {
	.recommendation__card {
		padding: 0;
	}
}
.recommendation__title {
	padding: 6px 12px;
	background-color: var(--green);
	color: #fff;
	font-weight: 600;
}
.recommendation__address {
    display: flex;
	width: 100%;
	margin-top:14px;
}
.recommendation__addressTitle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0;
	padding: 6px 12px;
	background-color: var(--green);
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	box-sizing: border-box;
	font-size: 1rem;
	color: #fff;
	white-space: nowrap;
}
.recommendation__addressDate {
	display: flex;
	align-items: center;
	margin-left: 0;
	padding: 6px 12px;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .recommendation__addressTitle {
		padding: 6px;
        font-size:.75rem;
    }
	.recommendation__addressDate {
        font-size:.75rem;
		line-height: 1.4;
    }
}
.recommendation__featuresTitle {
    margin-top: 16px;
    padding-bottom: 9px;
    border-bottom: 3px solid var(--green);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color:var(--green)
}
.recommendation__featuresBody {
	margin: 0!important;
	padding: 0!important;
}
.recommendation__featuresData {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-top:10px;
    -webkit-column-gap:10px;
    -moz-column-gap:10px;
    column-gap:10px;
	font-size: .95rem;
    font-weight:500;
    line-height:1.5625;
    letter-spacing:.02em;
	list-style-type: none;
}
@media screen and (max-width: 767px) {
	.recommendation__featuresTitle {
        margin-top:16px;
        padding-bottom:6px;
        font-size: .8rem
    }
    .recommendation__featuresData {
        margin-top: 7px;
        font-size:.7rem;
		line-height: 1.4;
    }
}
.recommendation__featuresNum {
    -ms-flex-negative:0;
    flex-shrink:0;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    width:25px;
    height:25px;
    padding-bottom:2px;
    border-radius:3px;
    background-color:var(--green);
    font-weight:700;
    letter-spacing:0;
    color:#fff
}
@media screen and (max-width: 767px) {
    .recommendation__featuresNum {
        margin-top:-2px
    }
}
.recommendation__btnWrapper {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-column-gap:10px;
    -moz-column-gap:10px;
    column-gap:10px;
    margin:20px 0 0;
}
@media screen and (max-width: 767px) {
    .recommendation__btnWrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        -webkit-box-align:center;
        -ms-flex-align:center;
        align-items:center;
        row-gap:12px;
        margin-bottom:0
    }
}
.recommendation__btn {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
	width: 100%;
    max-width:365px;
    height:50px;
	background-color: #192d76;
    border-radius:3px;
    font-weight:700;
    letter-spacing:.1em;
    color:#fff !important;
	text-decoration: none !important;
}


/* ------------------------------
　2026/01：追加
  whats-new：新着情報
------------------------------ */
.whats-new {
	margin-top: 40px;
	background-color: var(--beige);
}
.whats-new__head {
	padding: 8px 0;
	background-color: var(--green);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	font-size: 1.2rem;
	color: #fff;
	font-weight: 600;
	text-align: center;
}
.whats-new__body {
	margin: 12px 12px 0;
	background-color: #fff;
}
.whats-new__list {
	padding: 3px 12px;
}
.whats-new__item {
	margin: 6px 0;
	padding-bottom: 6px;
	border-bottom: 1px dotted #ccc;
	line-height: 1.5;
}
.whats-new__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.whats-new__more {
	margin-top: 6px;
	margin-right: 12px;
	padding-bottom: 12px;
	text-align: right;
}
.whats-new__more-btn {
	padding: 2px 6px;
	background-color: var(--green);
	font-size: .7rem;
	color: #fff;
}
.whats-new__more-btn::after {
	content: " ＞";
}
@media screen and (max-width: 1279px) {
	.whats-new__head {
		font-size: 1.2rem;
	}
	.whats-new__item {
		font-size: .823rem;
	}
}
@media screen and (max-width: 767px) {
  .whats-new__head {
		font-size: 1rem;
	}
	.whats-new__item {
		font-size: .723rem;
	}
}
.whats-new__item a {/*横スクルール可能にする*/
	display: block;
	white-space: nowrap;     /* 折り返し禁止 → 1行固定 */
	overflow-x: auto;        /* 横スクロール表示 */
	overflow-y: hidden;
}

/* ------------------------------
　2026/01：追加
  p-wp-all-post：全記事一覧ページ
------------------------------ */
.p-wp-all-post {
	overflow: hidden;
	zoom: 1;
	font-family: "Yu Gothic", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	word-break: break-all;
}
.all-post {
	margin: 24px auto;
}
.all-post__list {
	padding: 12px 0;
	border-bottom: 1px dotted #ccc;
}
.all-post__list:first-child {
	border-top: 1px dotted #ccc;
}
.all-post__title {}
.all-post__date {
	margin-top: 3px;
	font-size: .75rem;
	color: #999;
}
.all-post__date time + time {
	margin-left: 10px;
}
.all-post__pager {
  margin: 40px 0;
  text-align: center;
}

.all-post__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.all-post__pager .page-numbers:hover {
  background: #eee;
}

.all-post__pager .page-numbers.current {
  background: #222;
  color: #fff;
  border-color: #222;
}

.all-post__pager .page-numbers.dots {
  border: none;
}

.all-post__pager .page-numbers.next {
  padding: 0 14px;
}

/* allpostへ行くボタン(トップページ用) */
.all-post__view {
	margin-top: 24px;
	padding: 12px 0;
	text-align: center;
}
.all-post__view-btn {
	margin: 10px 0 0 auto;
	padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  transition: opacity .25s ease-in-out;
  color: #fff;
}

@media(hover: hover) {
  .all-post__view-btn:hover {
    opacity: .75
  }

  .all-post__view-btn:hover::after {
    transform: translateX(1.5px)
  }
}



/*　CTA＆下部ボタン */
#btn_fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	pointer-events: none;
	display: none;
}
#btn_fixed .btn_area,
.cta_btn .btn_area {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 960px;
	margin: 0 auto 20px;
	padding: 0 16px;
	pointer-events: auto;
}
@media screen and (max-width: 767px) {
	.cta_btn .btn_area {
		padding: 0;
	}
}
.btn__link-button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 10px 20px;
	width: 100%;
	background-image: linear-gradient(0deg, #0f6f36, #06c755 50% 100%);
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 4px 0 rgba(4,102,43,1);
}
.btn__link-button__free {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 2em;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: .1em;
  color: #e47b1c;
}
.btn__link-button__text {
	margin-left: 12px;
	font-size: 1.5em;
	text-align: left;
    font-weight: 700;
	line-height: 1.2;
	letter-spacing: .1em;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.btn__link-button {
		padding: 10px;
	}
	.btn__link-button__free {
		width: 3em;
  		height: 2em;
		font-size: 1em;
	}
	
	
}
@media(any-hover: hover) {
	.btn__link-button {
		transition: filter .3s;
  }
	.btn__link-button:hover {
		filter: brightness(1.1);
  }
}


/***------------------------------------------
*
*　404
*
------------------------------------------***/
.p-error {
	display: flex;
	align-items: center;
	justify-content: center;
    background-color:#fff;
	padding: 40px 60px;
	height: 50vh;
}
@media screen and (max-width: 767px) {
	.p-error {
		flex-direction: column-reverse;
		padding: 30px 20px;
		height: auto;
	}
}
.p-error__img img {
	margin-right: 40px;
	width: 160px;
	height: auto;
}
.p-error__message h1 {
	margin-bottom: 16px;
	font-size: 1.6rem;
}
.p-error__message p {
  font-size: 1rem;
  line-height: 1.6;
}
.highlight {
  color: #e67e22;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
	.p-error__img img {
		margin-top: 10px;
		margin-right: 0;
		width: 100px;
}
    .p-error__message {
		text-align: center;
	}
	.p-error__message h1 {
		font-size: 1.2rem;
	}
	.p-error__message p {
		font-size: .8rem;
	}
}