@charset "utf-8";
/* CSS Document */
/* a {
	pointer-events: none;
} */
#menu_btn,
#menu_btn span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}
#menu_btn {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	top: 40px;
	z-index: 1001;
	cursor: pointer;
	background: var(--color_main);
	border-radius: 50%;
	-webkit-transition: .3s ease-out;
	-moz-transition: .3s ease-out;
	-ms-transition: .3s ease-out;
	transition: .3s ease-out;
}
#menu_btn:hover {
	filter: brightness(130%);
}
.open #menu_btn {
	-webkit-animation-duration:2s;
	-ms-animation-duration:2s;
	animation-duration:2s;
	opacity:1;
}
#menu_btn span {
	position: absolute;
	left: 25%;
	width: 50%;
	height: 2px;
	background-color: #fff;
}
#menu_btn span:nth-of-type(1) {
	top: 15px;
}
#menu_btn span:nth-of-type(2) {
	top: 21px;
}
#menu_btn span:nth-of-type(3) {
	top: 27px;
}
.open #menu_btn span:nth-of-type(1) {
	-webkit-transform: translateY(4px) rotate(-45deg);
	transform: translateY(4px) rotate(-45deg);
	top: 17px;
}
.open #menu_btn span:nth-of-type(2) {
	opacity: 0;
}
.open #menu_btn span:nth-of-type(3) {
	-webkit-transform: translateY(-2px) rotate(45deg);
	transform: translateY(-3px) rotate(45deg);
	top: 24px;
}
#menu_btn em {
	font-size: 11px;
	color: #fff;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
	letter-spacing: 1px;
	font-style: normal;
}
#menu {
	background: rgb(255 255 255 / 95%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	text-align: center;
	display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .9s ease, visibility .9s ease;
	transform: scale(0.9);
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.open #menu {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
#menu > div {
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#menu > div p {
	color: #fef0e1;
}
#menu ul.c-gnav {
	display: block;
	height: auto;
	text-align: left;
	border-right: solid 1px #eaeaea;
	padding-right: 10%;
	margin-right: 10%;
}
#menu ul.c-gnav li {
  margin: 0;
	padding: 0.75em 0;
  opacity: 0;
  transition: opacity .1s ease;
  transform: translateX(10px);
}
#menu ul.c-gnav li a {
	padding: 0.3em 0 0.8em;
	display: inline-block;
}
#menu ul.c-gnav li a br {
	display: none;
}
#menu ul.c-gnav li a .ttl {
	font-size: 1.2rem;
	font-weight: bold;
	-webkit-transition: .3s ease-out;
	-moz-transition: .3s ease-out;
	-ms-transition: .3s ease-out;
	transition: .3s ease-out;
	color: var(--color_main);
}
#menu ul.c-gnav li a:hover .ttl {
	color: var(--color_main);
}
#menu ul.c-gnav li a .desc {
	color: var(--color_main);
	font-size: 0.85rem;
	opacity: 1;
	top: 8px;
}
.open #menu ul.c-gnav li, .open #menu #info ul li, .open #menu #info p, .open #menu #info #head_contact {
	opacity: 1;
	transform: translateX(0px);
	transition:  transform 1s ease, opacity .9s ease;
	transition-delay: 0.2s;
}
.open #menu ul.c-gnav li:nth-child(2) {
	transition-delay: 0.25s;
}
.open #menu ul.c-gnav li:nth-child(3) {
	transition-delay: 0.3s;
}
.open #menu ul.c-gnav li:nth-child(4) {
	transition-delay: 0.35s;
}
.open #menu ul.c-gnav li:nth-child(5) {
	transition-delay: 0.4s;
}
.open #menu ul.c-gnav li:nth-child(6) {
	transition-delay: 0.45s;
}
.open #menu ul.c-gnav li:nth-child(7) {
	transition-delay: 0.5s;
}
.open #menu ul.c-gnav li:nth-child(8) {
	transition-delay: 0.55s;
}
#menu #info {
	text-align: left;
	/* margin-left: 20%; */
}
#menu #info ul li, #menu #info p, #menu #info #head_contact {
	opacity: 0;
	color: #3e3a39;
}
.open #menu #info p {
	transition-delay: 0.45s;
}
.open #menu #info #head_contact {
	transition-delay: 0.5s;
	margin-top: 1em;
}
#menu #info #head_contact h3 {
	position: relative;
	max-width: 380px;
	text-align: center;
	margin: 0 0 0.5em;
	font-size: 1.1rem;
	font-weight: bold;
}
#menu #info #head_contact h3::before, #menu #info #head_contact h3::after {
	content: "|";
  transform: rotate(-25deg);
  display: inline-block;
  margin: 0 0.3em;
  position: relative;
  top: -0.5px;
}
#menu #info #head_contact h3::after {
	transform: rotate(25deg);
}
#menu #info #head_contact ul li {
	margin-bottom: 1em;
}
#menu #info #head_contact .btn.tel {
	/* background: url(../../assets/img/icon_tel_wh.svg) no-repeat center left 10% #bba000;
	background-size: 20px;
	margin-bottom: 1em;
	position: relative;
    padding: 12px 20px 30px 20px;
    font-size: 1.5rem; */
}
#menu #info #head_contact .btn.tel span {
	bottom: 13px;
	font-size: 0.8rem;
	font-weight: normal;
	position: absolute;
	width: 100%;
	left: 0;
	color: #fff;
}
#menu #info #head_contact .btn.mail {
	background: url(../../assets/img/icon_mail.svg) no-repeat center left 10% var(--color_main);
    background-size: 20px;
	color: #fff !important;
	margin-bottom: 1em;
	padding: 24px 20px 24px 20px;
	font-size: 1.2rem;
}
#menu #info #head_contact a span {

}
#menu #info #ccopy {
	font-size: 0.95rem;
	letter-spacing: 2px;
}
#menu #info #menu_logo {
  line-height: 1.2;
  margin: 0.5em 0 1em;
	width: 250px;
}
#menu #info small {
	font-size: 0.9rem;
	position: relative;
	top: -4px;
	margin-right: 3px;
}
#menu #info #menu_tel {
  font-size: 2.4rem;
  font-weight: 500;
	color: #3e3a39;
  margin-left: 10px;
  letter-spacing: 1px;
  text-align: left;
}
#menu #info #menu_tel + p {
	font-size: 0.8rem;
	margin: -12px 0 40px 38px;
}
#menu #info ul li span {
    margin-top: 5px;
    display: block;
    text-align: center;
}
#menu .c-gnav>.menu-item>.sub-menu {
	display: none !important;
}
#menu #info #head_contact #head_tel {
	font-size: 2.2rem;
	line-height: 1.6;
}
#content .p-postList h2 {
	background: none;
}
header + #btn_cta {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
}
header + #btn_cta li {
	margin: 0 5px;
}
header + #btn_cta li a {
    display: flex;
	font-size: 1.2rem;
	font-weight: bold;
    align-items: center;
    justify-content: center;
	background: url(../../assets/img/icon_tel_wh.svg) no-repeat left 15px center var(--color_main);
	background-size: 20px;
    color: #fff;
    position: absolute;
	top:16px;
    right: 280px;
	line-height: 1.3;
    text-align: center;
	padding: 28px 20px 28px 46px;
}
header + #btn_cta li a:hover {
	filter: brightness(120%);
}
header + #btn_cta li:nth-child(1) a {
    background: url(../../../../uploads/icon_tel.svg) no-repeat left top 31px;
    background-size: 30px;
    color: var(--color_text);
    font-size: 2rem;
    width: 320px;
    padding-left: 48px;
    top: 0;
    flex-wrap: wrap;
    right: 280px;
    padding: 26px 20px 28px 0;
}
header + #btn_cta li:nth-child(1) a span {
	font-size: 0.8rem;
	color: var(--color_text);
}
header + #btn_cta li:nth-child(3) a {
    background: url(../../assets/img/icon_mail.svg) no-repeat left 22px center var(--color_main);
    background-size: 20px;
    color: #fff;
    right: 2vw;
    font-size: 1.1rem;
    position: relative;
    padding: 20px 28px 20px 54px;
	min-width: 280px;
}
header + #btn_cta li:nth-child(4) a {
    background: url(../../assets/img/icon_mail.svg) no-repeat left 15px center var(--color_main);
    background-size: 20px;
    color: #fff;
    right: 0;
    font-size: 1.1rem;
}
header + #btn_cta li:nth-child(3) a:hover {
}
/* header + #btn_cta li a.btn span, footer #f_contact a.btn span, #menu #info #head_contact li:nth-last-child(-n+2) a span {
    position: absolute;
    top: -14px;
    background: #f9d300;
    border-radius: 50px;
    color: var(--color_main);
    padding: 4px 12px;
    font-size: 0.85rem;
    margin-left: -15px;
    font-weight: bold;
} */
/* header + #btn_cta li a.btn span::before, footer #f_contact a.btn span::before, #menu #info #head_contact li:nth-last-child(-n+2) a span::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    margin-left: -5px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: #f9d300;
} */
#fix_btn {
    position: fixed;
    z-index: 10;
    right: 10px;
    top: calc(50% - 110px);
    writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
  }
  #fix_btn a {
    background: url(../../../../uploads/icon_line.svg) no-repeat center top 15px #46a024;
    background-size: 25px;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 45px 13px 20px;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -ms-transition: .3s ease-out;
    transition: .3s ease-out;
  }
  #fix_btn a span {
    letter-spacing: -3px;
  }
  #fix_btn a:hover {
    filter: brightness(120%);
    text-decoration: none;
  }
  #fix_btn a:visited {
    text-decoration: none !important;
  }
.post_content h2, .post_content h3, .post_content h4, .post_content h5, .post_content h6 {
}
.post_content ol, .post_content ul {
	padding: 0;
	list-style: none;
}
ul li::marker {
	display: none;
}
.post_content p a {
	text-decoration: underline;
}
.post_content p a:hover {
	text-decoration: none;
}
#content .post_content .ttl h2 {
	margin: 0;
}
#content .post_content .ttl h2::after {
	content: ;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: block;
	background: #d7eefb;
	position: absolute;
	left: calc(50% - 30px);
}
#content .post_content .ttl p {
    font-weight: bold;
    color: var(--color_link);
    font-size: 1.3rem;
    letter-spacing: 2px;
	margin: 0;
}
#content .post_content h2 {
	margin: 2em 0 1em;
	font-weight: 900;
	font-size: 2.1rem !important;
	color: var(--color_text);
}
#content .post_content h2 em {
	color: var(--color_link);
}
#content .post_content h3 {
	font-size: 1.6rem;
	margin-bottom: 1.2em;
	font-weight: bold;
	color: var(--color_link);
}
#content .post_content .swell-block-column h3 {
	color: var(--color_link);
	margin: 0.5em 0 1em;
}
.page #content h4 {
	/* border-left: solid 2px var(--color_main); */
	color: var(--color_link);
	font-weight: 900;
	font-size: 1.4rem;
}
#content h5 {
	color: var(--color_main);
	font-size: 1.1rem;
	margin: 1.5em 0 0.5em;
}
#content #qa .swell-block-accordion__item {
	margin-bottom: 2em;
	/* background: #fff; */
}
#content #qa .swell-block-accordion__title {
	/* background: #fff; */
	padding: 1.5em;
	-webkit-transition: .3s ease-out;
	-moz-transition: .3s ease-out;
	-ms-transition: .3s ease-out;
	transition: .3s ease-out;
}
#content #qa .swell-block-accordion__title:hover {
	background: #ecf6f6;
}
#content #qa .swell-block-accordion__label strong {
    padding: 12px 17px 15px;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 18px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
#content #qa .swell-block-accordion__label {
    padding-left: 60px;
    font-size: 1.2rem;
	font-weight: bold;
}
#content #qa .swell-block-accordion__label strong {
    background: var(--color_main);
    color: #fff;
}
#content #qa .swell-block-accordion__body p {
    margin: 0 0 0 68px;
}
.is-style-big_icon_point:before {
    background: var(--color_link);
}
.post_content ul.is-style-check_list li {
  padding-left: 38px;
  font-size: 1.3rem;
  margin: 0.75em 0;
  color: var(--color_main);
  font-weight: 600;
}
.post_content ul.is-style-check_list li::before {
  content: "";
  background: url(../../../../uploads/icon_check.svg);
  background-size: 28px;
  width: 28px;
  height: 28px;
  top: 3px;
  left: 0.1em;
}
.post_content #feat .swell-block-column figure img {
  height: 150px;
}
.post_content #feat .swell-block-column h3 {
  color: var(--color_deep01);
}
footer#footer #f_contact dl {
	text-align: center;
	margin: 1em 0;
}
footer#footer dl dt, footer#footer dd, footer #info ul li {
	display: inline-block;
	vertical-align: middle;
	line-height: 2;
}
footer#footer #f_contact dl dt, footer#footer #unei dt {
	padding: 0.5em 1em;
	border-radius: 100px;
	background: var(--color_main);
	color: #fff;
}
footer#footer #f_contact dl dd {
	margin: 0 1em 0 0.5em;
}
footer #info {
	text-align: center;
}
footer #info #f_logo img {
	width: 400px;
	margin: auto;
}
footer #info #unei {
	margin: 1em 0;
}
footer #info #unei dd {
	width: 220px;
	margin-left: 1em;
}
footer #info #unei + dl {
	display: inline-block;
	text-align: left;
}
footer #info #unei + dl dt, footer #info #unei + dl dd {
}
footer #info #unei + dl dt {
	min-width: 26em;
}
footer #info dl + ul {
	margin-top: 1em;
}
footer #info dl + ul li {
	background: url(../../../../uploads/icon_tel_bl.svg) no-repeat left center;
    background-size: 1.5em;
    padding-left: 1.8em;
    margin: 0 0.5em;
}
footer #info dl + ul li:nth-child(2) {
	background: url(../../../../uploads/icon_fax_bl.svg) no-repeat left center;
    background-size: 1.5em;
}

@media all and (min-width: 960px){
	.sp, #menu_btn, #tel_btn {
		display:none !important;
	}
	.flo {
	  overflow: hidden;
	}
	.flo_r {
	  float: right;
	}
	.flo_l {
	  float: left;
	}
	.w200 {max-width: 200px;}
	.w300 {max-width: 300px;}
	.w400 {max-width: 400px;}
	.w500 {max-width: 500px;}
	.w600 {max-width: 600px;}
	.w700 {max-width: 700px;}
	.w800 {max-width: 800px;}
	.w900 {max-width: 900px;}
	.w1000 {max-width: 1000px;}
	.w1100 {max-width: 1100px;}
	.w1200 {max-width: 1200px;}
	.w200, .w300, .w400, .w500, .w600, .w700, .w800, .w900, .w1000, .w1100, .w1200 {
		margin-left: auto;
		margin-right: auto;
	}

	h2 {
	}


	/* original style------------------------------ */
	header#header .l-header__bar {
		background: #e9f1f7;
		color: #000;
	}
	header#header .l-header__bar .c-catchphrase {
		width: 100%;
	}
	header#header {
	}
	/* [data-scrolled="true"] header#header {
		height: 75px;
	} */
	header#header .l-container {
		margin-left: auto;
		margin-right: auto;
		/* padding: 0; */
		max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px)*2);
		padding-left: var(--swl-pad_container,0);
		padding-right: var(--swl-pad_container,0);
	}
	header#header .l-header__logo #logo {
		width: 300px;
		display: block;
		margin: 5px 0 0;
	}
	header#header  .l-header__logo .c-catchphrase {
		position: absolute;
		top: 0;
		left: 330px;
        height: 100%;
        width: calc(100% - 890px);
		display: flex;
		align-items: center;
		text-align: left;
		line-height: 1.3;
		margin: 0;
		font-weight: normal;
		font-size: 0.8rem;
		opacity: 1;
	}
	header#header .l-header__logo {
		position: relative;
		padding: 10px 0;
	}
	header#header .l-header__logo .c-headLogo {
    	float: left;
	}
	/* header#header .l-header__logo #logo, header#header .l-header__logo .c-headLogo {
		float: left;
    margin-top: 18px;
	} */
	header #gnav {
		margin: 0 0 15px;
	}
	[data-scrolled="true"] header #gnav {
		margin-top: 5px;
	}
	header .c-gnav {
	}
	header .c-gnav>.menu-item:first-child {
	}
	header.-parallel .l-header__gnav .c-gnav>li>a {
		padding: 22px 15px;
	}
	header .c-gnav>.menu-item {
		/* height: 80%; */
	}
	header .c-gnav>.menu-item>a {
	}
	header .c-gnav>.menu-item>a:hover {
		color: var(--color_main);
	}
	header .c-gnav>.menu-item>a .ttl {
		line-height: 1.3;
		font-weight: bold;
		font-size: 1.1rem;
		color: var(--color_text);
	}
	header .c-gnav>.menu-item>a span.desc {
		font-size: 0.8rem;
		opacity: 1;
		color: var(--color_main);
	}
	#body_wrap .c-gnav>.menu-item>a::after {
  	position: absolute;
	bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
  	background: var(--color_main);
  	transform: scale(0, 1);
  	transform-origin: right top;
  	transition: transform .3s;
  }
  #body_wrap .c-gnav>.menu-item>a:hover::after, #body_wrap .c-gnav>.menu-item>a.current::after {
  	transform-origin: left top;
  	transform: scale(1, 1);
  }
	/* .c-gnav>.menu-item>.sub-menu {
		background: #f5f4e1;
		width: 34em;
	}
	.c-gnav>.menu-item>.sub-menu li {
		width: 49%;
		display: inline-block;
		vertical-align: middle;
	} */
	/* .tel span {
		font-size: 0.7rem;
		display: block;
		padding-left: 30px;
	}
	.tel a {
		font-size: 1.5rem;
		background: url(../../../../uploads/icon_tel.png) no-repeat center left;
		background-size: 24px;
		padding-left: 30px;
	} */
	.wp-block-table td, .wp-block-table th {
		vertical-align: middle;
	}

	#content.l-content {
		margin-bottom: 0;
	}

	#before_footer_widget {
		background: #e1edc4;
		margin: 0 auto 0;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#before_footer_widget .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
		margin-left: 50px;
	}
	footer#footer {
		margin-top: 0;
		background: #fff;
		color: unset;
	}
	footer#footer #f_contact {
		padding: 3em 0 1em;
		background: #f9f7d7;
		/* background: url(../../../../uploads/bg_contact.svg) no-repeat center #f9f7d7;
		background-size: cover; */
		text-align: center;
		position: relative;
		color: var(--color_text);
		max-width: 1000px;
		border-radius: 20px;
		border: solid 2px var(--color_main);
		margin: 4em auto 0;
	}
	footer#footer #f_contact > section {
		position: relative;
		max-width: 1350px;
		margin: auto;
	}
	footer#footer #f_contact hgroup {
		margin-bottom: 20px;
	}
	footer#footer #f_contact hgroup p {
		color: var(--color_link);
		margin: 0.25em 0 0;
		font-size: 1.4rem;
		font-weight: 900;
		line-height: 1;
	}
	footer#footer #f_contact hgroup h2 {
		text-align: center;
		font-size: 2.6rem;
		line-height: 1.5;
		font-weight: 900;
	}
	footer#footer #f_contact hgroup p + img {
		width: 560px;
		margin: 1em 0 1em;
	}
	footer#footer #f_contact p {
		font-size: 1.2rem;
		font-weight: 500;
		margin: 0 0 1.5em 0;
		letter-spacing: 1px;
		text-align: center;
	}
	footer#footer #f_contact ul li {
		padding: 0 1%;
		margin-bottom: 1%;
	}
	footer#footer #f_contact ul li a {
		min-width: 350px;
	}
	footer#footer #f_contact ul li#btn_tel {
		position: relative;
		top: 5px;
	}
	footer#footer #f_contact ul li#btn_tel a em {
        background: url(../../../../uploads/icon_tel.svg) no-repeat left top 9px;
        background-size: 40px;
        color: var(--color_text);
        font-size: 2.5rem;
        padding-left: 48px;
        font-weight: 600;
        letter-spacing: 1px;
	}
	footer#footer #f_contact ul li#btn_tel span {
		display: block;
		font-size: 0.9rem;
		color: var(--color_text);
		margin-top: -5px;
		font-weight: bold;
	}
	footer#footer #f_contact ul li a.btn {
		background: url(../../assets/img/icon_mail.svg) no-repeat left 30px center var(--color_main);
		background-size: 26px;
		filter: brightness(100%);
		color: #fff !important;
		font-weight: bold;
		padding: 25px 0 25px 15px;
		font-size: 1.3rem;
		display: block;
	}
	footer#footer #f_contact ul li a.btn {
	}
	footer#footer #f_contact ul li a.btn span {
		margin-left: 4px;
		font-size: 1rem;
		left: calc(50% - 52px);
	}
	footer#footer #f_contact ul li a.btn.delivery span {
		left: calc(50% - 84px);
	}
	footer .l-footer__inner {
		padding: 50px 4vw 30px;
	}
	footer .l-footer__inner p, footer .l-footer__inner a, footer .l-footer__inner address, footer .l-footer__inner dl {
		font-size: 0.9rem;
	}
	footer .l-footer__inner > .flex_cl {
		position: relative;
	}
	footer .l-footer__inner #ft_l {
		width: 40%;
	}
	footer .l-footer__inner #ft_l #f_logo {
		margin-bottom: 2em;
		width: 250px;
	}
	footer .l-footer__inner #ft_l #f_logo strong {
		display: block;
		font-size: 110%;
	}
	footer .l-footer__inner #ft_l ul li {
		margin-bottom: 0.5em;
		line-height: 1.3;
	}
	footer .l-footer__inner #ft_l ul li:nth-child(n+3) {
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
	}
	footer .l-footer__inner #ft_l ul li span {
		font-size: 0.8rem;
	}
	footer .l-footer__inner #ft_l ul li a.icon-instagram, footer .l-footer__inner #ft_l ul li a#note {
		padding: 10px;
		background: #e4405f;
		border-radius: 50px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		position: relative;
		top: 10px;
		font-size: 1.2rem;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	footer .l-footer__inner #ft_l ul li a.icon-instagram:hover {
		filter: brightness(120%);
	}
	footer .l-footer__inner #ft_l ul li a.icon-instagram::before {
		color: #fff;
	}
	footer .l-footer__inner #ft_l ul li a#note {
		background: #fff;
		border: solid 1px #e4e4e4;
		padding: 2px;
	}
	footer .l-footer__inner #ft_l ul li a#note:hover {
		background: #e4e4e4;
	}
	footer .l-footer__inner #ft_l address {
		margin: 0 0 0.5em;
		font-style: normal;
	}
	footer .l-footer__inner #ft_l dl {
    overflow: hidden;
  }
  footer .l-footer__inner #ft_l dl dt, footer .l-footer__inner #ft_l dl dd {
    float: left;
    margin-bottom: 0.2em;
  }
  footer .l-footer__inner #ft_l dl dt {
    width: 3em;
    clear: both;
  }
  footer .l-footer__inner #ft_l dl dd {
    width: calc(100% - 4em);
  }
	footer .l-footer__inner #ft_r {
		width: 54%;
		min-height: 200px;
		position: relative;
	}
	footer .l-footer__inner #ft_r .l-footer__nav {
		justify-content: flex-end;
		position: absolute;
		bottom: 10px;
		right: 0;
		z-index: 100;
	}
	footer #info .l-footer__nav a {
		border: none;
		font-weight: normal;
		margin-top: 0.5em;
	}
	footer .l-footer__inner #ft_r h3 {
		text-align: right;
		font-size: 1.5rem;
		line-height: 1.5;
		font-weight: bold;
		color: var(--color_main);
	}
	footer .l-footer__inner .sub-menu {
		display: none;
	}
	.l-footer__widgetArea {
		width: 60%;
	}
	footer #info .w-footer__box, footer .l-footer__inner .l-footer__widgetArea {
		padding: 0;
	}
	footer #info .widget_nav_menu ul li {
		float: left;
		min-width: 12em;
	}
	footer #info .widget_nav_menu ul li:nth-child(odd) {
		clear: both;
	}
	footer #info .widget_nav_menu a {
		border: none !important;
	}
	footer #info .widget_nav_menu a br {
		display: none;
	}
	.l-footer a.btn {
		color: #fff ;
	}
	.l-footer a.btn:hover {
		color: #fff ;
	}
	footer .l-footer__inner .l-footer__foot {
    padding-top: 4em;
    padding-bottom: 1em;
	}
	footer .l-footer__inner .copyright {
		padding-top: 3em;
	}

	.btn, [class*=is-style-btn_] a, .swell-block-button__link, .wp-block-button__link {
		background: url(../../assets/img/arrow_wh.svg) no-repeat center right 20px var(--color_main);
		background-size: 25px;
		color: #fff !important;
		font-size: 1rem;
		font-weight: bold;
		position: relative;
		-webkit-box-shadow: none;
		box-shadow: none;
		line-height: 1.3;
        padding: 26px 60px 25px 30px;
        border-radius: 100px;
        max-width: 400px;
        min-width: 300px;
		text-align: center;
		-webkit-transition: .3s ease-out;
		-moz-transition: .3s ease-out;
		-ms-transition: .3s ease-out;
		transition: .3s ease-out;
	}
	.plink .swell-block-button__link {
		background: url(../../assets/img/arrow.svg) no-repeat center right 10px #fff;
		background-size: 25px;
		color: var(--color_main) !important;
		border: solid 1px var(--color_main);
	}
	.plink .swell-block-button__link:hover {
		background: url(../../assets/img/arrow_wh.svg) no-repeat center right 10px var(--color_main);
		background-size: 25px;
		color: #fff !important;
		box-shadow: none;
		filter: brightness(100%);
	}
	.swell-block-button.line a {
		background: url(../../assets/img/arrow_wh.svg) no-repeat center right 10px #00b900;
		background-size: 25px;
	}
	/* .btn::before, .swell-block-button__link::before, .wp-block-button__link::before {
	  content: "";
	  position: absolute;
	  display: block;
	  height: 1px;
	  background: #fff;
	  transition: all .3s ease-out;
		width: 34px;
    top: 50%;
    right: 15px;
	  transition: all .6s cubic-bezier(.3,0,.15,1);
	}
	.btn::after, .swell-block-button__link::after, .wp-block-button__link::after {
	  width: 9px;
	  top: calc(50% - 3px);
	  right: 14px;
	  transform: rotate(40deg);
	  content: "";
	  position: absolute;
	  display: block;
	  height: 1px;
	  background: #fff;
	  transition: all .6s cubic-bezier(.3,0,.15,1);
	} */
	.btn:hover, .wp-block-button__link:hover, [class*=is-style-btn_] a:hover {
		filter: brightness(115%);
	}
	/* [class*=is-style-btn_] a:hover {
		filter: brightness(130%);
		color: #fff;
		box-shadow: none;
	} */
	a.btn.left {
		margin-left: 0;
	}
	a.btn.right {
		margin-right: 0;
	}
	.full_r > figure {
		margin-right: calc(50% - 50vw) !important;
	}
	.full_l > figure {
		margin-left: calc(50% - 50vw) !important;
	}
	.al_cen .swell-block-columns__inner {
        align-items: center;
        display: flex;
    }
	.post_content #feat .swell-block-column {
	background: url(../../../../uploads/frame_rb.svg) no-repeat right bottom;
	background-size: contain;
	padding: 3em 2em 3em 8em;
	}
	.post_content #feat .swell-block-column:nth-child(2) {
	background: url(../../../../uploads/frame_lb.svg) no-repeat left bottom;
	background-size: contain;
	padding: 3em 8em 3em 4em;
	}
	.post_content #feat .swell-block-column:nth-child(3) {
	background: url(../../../../uploads/frame_rt.svg) no-repeat right top;
	background-size: contain;
	}
	.post_content #feat .swell-block-column:nth-child(4) {
	background: url(../../../../uploads/frame_lt.svg) no-repeat left top;
	background-size: contain;
	padding: 3em 8em 3em 4em;
	}
}

@media all and (min-width: 768px) {
	.flex_cl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex_cl.cl_2 > section, .flex_cl.cl_2 > li {
		width: 47%;
	}
	.flex_cl.cl_3 > section, .flex_cl.cl_3 > li {
		width: 31%;
		margin-bottom: 8%;
	}
	.flex_cl.cl_4 > section, .flex_cl.cl_4 > li {
		width: 23%;
	}
	.flex_cl .od1 {
		order: 1;
	}
	.flex_cl .od2 {
		order: 2;
	}
	.p-postList figure.c-postThumb__figure {
		margin-bottom: 0;
	}
}

@media all and (min-width: 960px) and (max-width: 1220px) {
	/* header .c-gnav {
    margin-left: 340px;
	}
	header .c-gnav>.menu-item>a .ttl {
    font-size: 0.9rem;
	}
	header.-parallel .l-header__gnav .c-gnav>li>a {
    padding: 19px 10px;
	} */
}
@media all and (min-width: 960px) and (max-width: 1050px) {
}

@media all and (min-width: 960px) and (max-width: 1300px) {
	footer .l-footer__inner #ft_r h3 br {
		display: none;
	}
}
