@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*テーブル開閉のボタン*/
.wp-block-lazyblock-tableac2 .table-open {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 8px 25px 8px 13px;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    -webkit-box-shadow: inset 1px 1px 1px #fff;
    box-shadow: inset 1px 1px 1px #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.8em;
}

.wp-block-lazyblock-tableac2 .table-open::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
    transition: all 0.5s;
}


.wp-block-lazyblock-tableac2 .table-open.on:after {
    transform: translateY(1px) rotate(315deg);
}
/* リッチリスト */
dl.rich_list {
	margin: 20px 0;
	padding: 0;
}
dl.rich_list dt {
	position: relative;
	background: var(--color_main);
	padding: 12px 15px 10px;
	margin: 0 0 10px;
	border: 0 !important;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	border-radius: 7px;
}
dl.rich_list dt:before {
	content: "";
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 12px 7px 0;
	border-color: var(--color_main) transparent transparent;
	left: 50px;
	bottom: -12px;
}
dl.rich_list dt[style]:before {
	background: inherit;
	border-color: transparent #fff #fff;
}
dl.rich_list dd {
	padding: 0;
	margin: 0 0 15px !important;
	border: 0 !important;
	line-height: 1.5em;
}
.post_content dl.rich_list dd .h5,
dl.rich_list dd .h5 {
	margin: 0 0 5px !important;
	padding: 3px 0 2px 30px;
	position: relative;
	border: 0 !important;
	background-size: 28px 28px !important;
	font-weight: bold;
	line-height: 1.2em;
	color: #030 !important;
}
dl.rich_list dd .h5:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    box-sizing: border-box;
    background:
        linear-gradient(-55deg, transparent 44%, #d22 46%, #d22 58%, transparent 60%),
        linear-gradient(45deg, transparent 33%, #d22 35%, #d22 47%, transparent 49%);
    background-repeat: no-repeat;
    background-position: 4px 2px, 1px 8px;
    background-size: 100% 100%;
    border-radius: 2px;
}
dl.rich_list dd p br:first-child,
dl.rich_list dd .h5+br {
	display: none;
}
dl.rich_list dd .h5 b {
	color: #e22;
}
dl.rich_list dd p {
	margin: 0 0 0 20px !important;
	padding: 0;
	line-height: inherit;
}
.article-body dl.rich_list dd ul li {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.3em !important;
}
.article-body dl.rich_list dd ul li:before {
	background: #a8a8f4;
	top: 5px;
}
@media (max-width: 600px) {
	dl.rich_list dt {
		padding: 10px 12px 8px;
	}
}
/* リッチリスト拡張（開閉付き：2024/10/18）＋ 開閉ブロックinブロック（2024/11/12） */
.openclose-inblock > .lazyblock-inner-blocks,
.rich_list_close dl.rich_list {
    margin-bottom: 0;
    padding-bottom: 0;
}
.openclose-inblock,
.rich_list_close {
    margin-bottom: 20px;
    position: relative;
}
.openclose-inblock > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close dl.rich_list dt:nth-of-type(n+2),
.rich_list_close dl.rich_list dd:nth-of-type(n+2) {
    max-height: 1500px;
    transition: all 0.7s ease-in-out;
}
.openclose-inblock:has(input:checked) > .lazyblock-inner-blocks > *:not(:last-child) {
    margin-bottom: 30px;
}
.openclose-inblock:has(input:not(:checked)) > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dt:nth-of-type(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dd:nth-of-type(n+2) {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0 !important;
    max-height: 0;
    transition: all 0.2s ease-in-out;
}
.openclose-inblock input,
.rich_list_close input {
    display: none;
}
.openclose-inblock:has(input:not(:checked)) label:before,
.rich_list_close:has(input:not(:checked)) label:before {
    content: attr(data-text-open);
}
.openclose-inblock:has(input:checked) label:before,
.rich_list_close:has(input:checked) label:before {
    content: attr(data-text-close);
}
.openclose-inblock label,
.rich_list_close label {
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
    background: var(--color_main);
    color: var(--color_bg);
    padding: 5px 20px;
    border-radius: 40px;
    box-shadow: rgba(0,0,0,0.5) 2px 2px 5px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s linear;
    font-size: 90%;
    line-height: 1.2em;
    z-index: 2;
}
.openclose-inblock label:hover,
.rich_list_close label:hover {
    filter: brightness(1.1);
    left: -1px;
    top: -1px;
    box-shadow: rgba(0,0,0,0.5) 3px 3px 5px;
    transition: all 0.2s linear;
}
.openclose-inblock:after,
.rich_list_close:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}
.openclose-inblock:has(input:checked):after,
.rich_list_close:has(input:checked):after {
    display: none;
}
.rich_list ul:not([class]) li,
ul[class="wp-block-list"] li,
.cap_box_content ul:not([class]) li {
    list-style: disc;
}
.rich_list dd ul {
    margin-left: 15px;
}



/* 投稿記事でのパンくず内の記事タイトル表示 */
.-body-solid .p-breadcrumb.-bg-on {
	background: #FCF3ED;
	box-shadow: none !important;
	padding: 15px 0;
}
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text {
    display: inline !important;
    white-space: wrap;
}
.single .p-breadcrumb__item:after,
.p-breadcrumb__item:after {
    display: inline-block;
    margin: 0 8px;
}
.single .p-breadcrumb .p-breadcrumb__list,
.p-breadcrumb .p-breadcrumb__list {
    display: block !important;
    width: auto !important;
    font-size: 13px;
    white-space: wrap;
}
@media (min-width: 768px) {
    .single .p-breadcrumb .p-breadcrumb__list,
    .p-breadcrumb .p-breadcrumb__list {
        font-size: 14px;
    }
}
.p-breadcrumb__item:first-child a {
	font-weight: bold;
}


/* サイト装飾 */
.header-contBox {
	width: 420px;
	margin-right: 30px;
}

.header-tel {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
}

.header-telTxt {
	width: 200px;
	color: #ffff00;
	font-size: 1.05em;
	line-height: 25px;
	font-weight: 600;
	vertical-align: text-bottom;
	float: left;
}

.header-telNum {
	position: relative;
	width: 210px;
	color: #ffff00;
	font-size: 1.55em;
	line-height: 25px;
	text-align: right;
	font-weight: 600;
	white-space: nowrap;
	float: right;
}
.header-telNum:before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-left: 5px;
	margin-right: 5px;
	line-height: 1;
	vertical-align: bottom;
	background-image: url(/img/header-telNumMrak.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
}

.header-contact {
	width: 205px;
}

.header-contListItem {
	font-size: 0.8em;
}
.header-contListItem:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 10px;
	line-height: 1;
	background-image: url(/img/header-contListItem-ic.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
}
.header-contListItem a {
	color: #fff;
}

.row,
.row_rev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.l-header__inner.l-container {
	max-width: var(--container_size);
}
.w-header__item .textwidget.custom-html-widget {
	display: flex;
	justify-content: space-between;
}
@media (min-width: 960px) {
    header.l-header {
		position: sticky;
		top: -50px;
	}
    .l-header * {
        transition: all 0.3s ease-in-out;
    }
	.l-header.-parallel .w-header {
		width: 80%;
		justify-content: right;
	}
	.-parallel-bottom .l-header__logo {
		width: 20%;
	}
	header.l-header {
		background: linear-gradient(to bottom, #73f766 50px, #24b913 155px);
	}
	.c-catchphrase {
		height: 50px;
		line-height: 45px !important;
		font-size: 1.3em;
	}
	.l-header__inner .l-header__gnav {
		width: 100vw;
		margin-left: calc(550px - 50vw);
		margin-right: calc(550px - 50vw);
		background: #fff;
	}
	.l-header__inner .l-header__gnav .c-gnav {
		max-width: var(--container_size);
		height: 100px;
		margin: auto;
		transition: all 0.3s ease-in-out;
	}
	.l-header__inner .l-header__gnav .c-gnav li {
		flex: 1;
		border-bottom: 5px solid #cfeacb;
		transition: all 0.3s ease-in-out;
		padding: 23px 0;
	}
	.l-header__inner .l-header__gnav .c-gnav li:hover {
		border-bottom-color: var(--color_main);
	}
	.l-header__inner .l-header__gnav .c-gnav li a {
		border-left: 1px solid #ccc;
	}
	.l-header__inner .l-header__gnav .c-gnav li a span {
		font-size: 16px;
		font-weight: bold;
	}
	.l-header__inner .l-header__gnav .c-gnav li.first a {
		border-left: 0;
	}
	.l-header__inner .l-header__gnav .c-gnav li a:after {
		display: none;
	}
}
@media (max-width: 960px) {
	header.l-header {
		background: #fff !important;
	}
	.l-header__customBtn.sp_ {
		order: 3;
		background: url(/img/header-telBtn_sp.png) no-repeat center center #f39800;
		background-size: 64px;
	}
	.l-header__menuBtn.sp_ {
		order: 2;
		color: #fff;
		background: var(--color_main);
		font-weight: bold;
	}
	.c-iconBtn__icon.icon-menu-thin {
		font-size: 32px;
		font-weight: bold !important;
		transform: scale(1, 1.1);
	}
	.c-widget__title.-spmenu {
		display: none;
	}
	.p-spMenu__inner::before {
		background-color: var(--color_main);
	}
	.p-spMenu__inner {
		color: #fff;
		font-size: 1.2em;
	}
	.c-spnav li a:before {
		left: auto;
		right: 0;
		color: #ff0;
	}
	.c-spnav li a {
		padding: 20px 20px 20px 0;
	}
	.header-contact_sp {
		text-align: center;
	}
}
.l-header.scrl ._sticky,
.l-header:not(.scrl) ._sticky_scroll {
	display: none;
}
.l-header.scrl ._sticky_scroll {
    display: block;
}
.header-tel,
.l-header__logo,
.c-headLogo__img {
	transition: all 0.3s ease-in-out;
}
.header-contList {
	overflow: hidden;
	max-height: 40px;
	transition: all 0.3s ease-in-out;
}
header.l-header.scrl {
	background: linear-gradient(to bottom, #73f766 50px, #24b913 125px);

	.l-header__inner .l-header__gnav .c-gnav {
		height: 62px;
	}
	.l-header__inner .l-header__gnav .c-gnav li {
		padding: 10px 0;
	}
	.header-contList {
		max-height: 0;
		margin: 0;
		padding: 0;
	}
	.header-tel {
		border: 0;
		padding: 10px 0;
		margin: 0;
	}

	.l-header__logo {
      	padding: 1px 0;  
    }
	.c-headLogo__img {
		height: 50px;
	}
}
.heading_1 {
    margin-bottom: 50px;
    padding-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    border-bottom: 3px solid #60ba52;
}
/*フッター部
----------------------- */
.footer {
    font-size: 0.625em;
}
.footer a {
    color: #000;
}
.footer-navWrap {
  padding-top: 50px;
  padding-bottom: 50px; }

.footer-nav {
  width: 750px; }

.footer-navList {
  width: 250px;
  float: left; }

.footer-navListItem {
  margin-bottom: 30px;
  font-size: 1.3em; }

.footer-cont {
  width: 270px; }

.footer-contLogo {
  margin-bottom: 20px; }

.footer-contPgh {
  font-size: 1.3em; }
  .footer-contPgh._2 {
    color: #fff;
    line-height: 2; }

.footer-contTtl {
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 25px; }

.footer-contList {
  width: 590px;
	padding: 40px 0 0;
}

.footer-contListItem {
  /*width: 190px;*/
  margin-left: 17px;
  float: left; }
  .footer-contListItem:first-child {
    margin-left: 0; }

.footer-copyright {
  color: #a0a0a0;
  font-size: 1.3em; }

@media (max-width: 1279px) {
  .footer-nav {
    width: 73%; }
  .footer-navList {
    width: 33%;
    float: left; }
  .footer-cont {
    width: 25%; } }

@media (max-width: 767px) {
  .footer-cont {
    width: 80%;
    margin: 0 auto; }
  .footer-contList {
    width: 100%;
	  text-align: center;
    padding-top: 25px;
	}
	.footer-contList li.footer-contListItem {
		margin: 0 0 20px;
		float: none;
		display: inline-block;
	}
  .footer-bottomBox {
    width: 100%;
    margin-bottom: 25px; }
  .footer-norton {
    width: 100%;
    text-align: center; } }

@media (max-width: 767px) {
  .main {
    padding-top: 60px; }
}

.main-footerList {
  margin-bottom: 100px; }
@media (max-width: 767px) {
    .main-footerList {
      margin-bottom: 50px; }
}

.main-footerListItem {
  max-width: 263px;
  width: 24%; }
@media (max-width: 767px) {
    .main-footerListItem {
      width: 100%;
      max-width: unset;
      margin-bottom: 15px; }
}
.bg_gray {
  background-color: #f3f3f3; }

.bg_cleam {
  background-color: #fcf3ed; }
.inner {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .inner_base {
    max-width: 1100px; }
  .inner_full {
    max-width: 1400px; }
  .inner_middle {
    max-width: 1020px; }
  @media (max-width: 1279px) {
    .inner {
      width: 90%; }
      .inner .inner {
        width: 100%; }
        .inner .inner_middle {
          padding-left: 5%;
          padding-right: 5%; } }

.row, .row_rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .row_rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }

.bg_main {
  background-color: #60ba52; }
.mt_sec {
  margin-top: 100px; }
  @media (max-width: 767px) {
    .mt_sec {
      margin-top: 50px; } }

.mt_cont {
  margin-top: 50px; }
  @media (max-width: 767px) {
    .mt_cont {
      margin-top: 25px; } }

.mt_pgh {
  margin-top: 25px !important; }

.mt_small {
  margin-top: 10px !important; }

.mt_large {
  margin-top: 120px !important; }

.mt_xl {
  margin-top: 210px !important; }

.pt_sec {
  padding-top: 100px; }
  @media (max-width: 767px) {
    .pt_sec {
      padding-top: 50px; } }

.pt_cont {
  padding-top: 50px; }
  @media (max-width: 767px) {
    .pt_cont {
      padding-top: 25px; } }

.pt_pgh {
  padding-top: 25px !important; }

.pt_small {
  padding-top: 10px !important; }

.pt_large {
  padding-top: 120px !important; }

.pt_xl {
  padding-top: 210px !important; }

.mb_sec {
  margin-bottom: 100px; }
  @media (max-width: 767px) {
    .mb_sec {
      margin-bottom: 50px; } }

.mb_cont {
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    .mb_cont {
      margin-bottom: 25px; } }

.mb_pgh {
  margin-bottom: 25px !important; }

.mb_small {
  margin-bottom: 10px !important; }

.mb_large {
  margin-bottom: 120px !important; }

.mb_xl {
  margin-bottom: 210px; }
  @media (max-width: 767px) {
    .mb_xl {
      margin-bottom: 50px; } }

.pb_sec {
  padding-bottom: 100px; }
  @media (max-width: 767px) {
    .pb_sec {
      padding-bottom: 50px; } }

.pb_cont {
  padding-bottom: 50px; }
  @media (max-width: 767px) {
    .pb_cont {
      padding-bottom: 25px; } }

.pb_pgh {
  padding-bottom: 25px !important; }

.pb_small {
  padding-bottom: 10px !important; }

.pb_large {
  padding-bottom: 120px !important; }

.pb_xl {
  padding-bottom: 210px !important; }

/* font / color
--------------------------------------- */
.fw_bold {
  font-weight: bold !important; }

.color_red {
  color: red; }

/* text align
--------------------------------------- */
.ta_c {
  text-align: center !important; }

.ta_r {
  text-align: right !important; }

.ta_l {
  text-align: left !important; }

a:not([class]):hover {
    text-decoration: underline;
}
.p-authorBox__desc a {
    border: 1px solid var(--color_border);
    border-radius: var(--corg-radius--4, 0);
    color: inherit;
    display: block;
    letter-spacing: var(--corg-letter_spacing, .5px);
    line-height: 3;
    padding: 0 1em;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.p-authorBox__desc a:after {
    content: "\e930";
    font-family: icomoon;
    margin-left: .25em;
    position: absolute;
    right: 1em;
    top: 0;
}
.p-authorBox__desc a:hover {
    text-decoration: none;
    background-color: var(--color_main) !important;
    color: #fff !important
}


/* 記事先頭のアイキャッチ拡大阻止 */
body .l-content .l-mainContent figure.p-articleThumb img.p-articleThumb__img {
    width: auto !important;
    min-width: 0 !important;
    margin: auto;
}