:root {
	--main-color: #70AC00;
	--pale-color: #F7FAF1;
	--pale-orange: #fff0da;
	--sub-color: #FFA600;
	--font-color: #272727;
	--color-gray: #959595;
	--bg-color: #FFFFFF;
	--border-color: #F2F2F2;

	--font-text: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--font-title: "Roboto", sans-serif;

	--fontsize-25: clamp(19px, 1.3vw, 25px);
	--fontsize-22: clamp(18px, 1.1vw, 22px);
	--fontsize-20: clamp(17px, 1vw, 20px);
	--fontsize-18: 18px;
	--fontsize-16: 16px;
	--fontsize-15: 15px;
	--fontsize-14: 14px;

	--trans-fast: .25s ease;
	--trans-base: .5s ease;
}

*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input, button, textarea, select {
	font: inherit;
}
button{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
	color: var(--font-color);
}
ol,ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
legend, menu{
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--font-color);
}
p, li, dd {
	overflow-wrap: break-word;
	text-align: justify;
}
html[lang="en"] p,
html[lang="en"] li,
html[lang="en"] dd {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	font-weight: 400;
	line-height: 1.5;
	font-style: normal;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
body {
	font-family: var(--font-text);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	color: var(--font-color);
	font-weight: 400;
	font-style: normal;
	font-size: var(--fontsize-16);
	background-color: var(--bg-color);
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* vegas が付ける will-change を無効化（メモリ予約暴走対策） */
.vegas-slide,
.vegas-slide-inner {
	will-change: auto !important;
}
/* 
 global header
----------------------------------------------------------- */
.header {
	width:100%;
}
.header__nav {
	width:100%;
	background-color: var(--bg-color);
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	position:fixed;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	top:0;
	left:0;
	z-index:998;
	padding: 0 25px;
} 
.header__logo img{
	height: 45px;
	width: auto;
}
.header__links {
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
}
.header__item.header__item--pill {
	margin: 0 0 0 10px;
}
.header__item{
	margin: 0 15px;
	text-align: center;
	position: relative;
}
.header__link{
	display: inline-block;
	padding: 25px 0;
	transition: color var(--trans-base);
	font-size: var(--fontsize-15);
	font-weight: 700;
}
.header__item:not(.header__item--pill) .header__link:hover{
	color: var(--main-color);
}
.header__submenu {
	position: absolute;
	top: 68px;
	left: 50%;
	transform: translateX(-50%) scaleY(0);
	transform-origin: center top;
	z-index: 8999;
	display:block;
	background-color: #fff;
	width: 190px;
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	transition: transform var(--trans-base);
}
.header__item--has-children:hover .header__submenu {
	transform: translateX(-50%) scaleY(1);
}
.header__submenu-item {
	font-size: var(--fontsize-14);
}
.header__submenu-item:not(:last-child){
	border-bottom: 1px dashed var(--main-color);
	transition: background-color var(--trans-base);
}
.header__submenu-item:hover {
	background-color: var(--pale-color);
}
.header__submenu-link{
	padding: 10px;
	width: 100%;
	display: block;
}

/* 
 sp nav
----------------------------------------------------------- */
.spnav__overlay{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 998;
	display: none;
}
.spnav__overlay.is-open{
	display: inherit;
}
.spnav__toggle {
	position:fixed;
	top: 5px;
	right: 5px;
	z-index:999;
	text-align:center;
	cursor:pointer;
	display:none;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
}
.spnav__toggle-lines,
.spnav__toggle-lines span {
	display: inline-block;
	transition: transform var(--trans-base);
	box-sizing: border-box;
}
.spnav__toggle-lines {
	position: relative;
	width: 30px;
	height: 18px;
}
.spnav__toggle-lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	border-radius: 20px;
}
.spnav__toggle-lines span:nth-of-type(1) {
	top: 0;
}
.spnav__toggle-lines span:nth-of-type(2) {
	top: 8px;
}
.spnav__toggle-lines span:nth-of-type(3) {
	bottom: 0;
}
.spnav__toggle.is-open .spnav__toggle-lines span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.spnav__toggle.is-open .spnav__toggle-lines span:nth-of-type(2) {
	left: 60%;
	opacity: 0;
	animation: spnav-toggle-line .8s forwards;
}
.spnav__toggle.is-open .spnav__toggle-lines :nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
@-webkit-keyframes spnav-toggle-line {
	100% {
		height: 0;
	}
}
.spnav {
	position:relative;
	z-index:999;
}
.spnav__wrap {
	-webkit-backdrop-filter: blur(20px) brightness(1.2);
	backdrop-filter: blur(20px) brightness(1.2);
	background-color: rgba(255,255,255,0.8);
	width:300px;
	max-width:80%;
	height:100%;
	transition: opacity var(--trans-fast), transform var(--trans-fast);
	position:fixed;
	top:0;
	left: 0;
	transform: translateX(-100%);
	overflow-y:scroll;
	opacity: 0;
}
.spnav.is-open .spnav__wrap {
	opacity: 1;
	transform: translateX(0);
}
.spnav__logo {
	width:100%;
	padding:15px;
	text-align:center;
}
.spnav__logo img {
	height: 40px;
	width: auto;
	margin:0 auto;
}
.spnav__item:first-child {
	border-top:1px solid rgba(255,166,0,0.5);
}
.spnav__item {
	border-bottom:1px solid rgba(255,166,0,0.5);
	font-size:0.9rem;
	line-height: 1.2;
}
.spnav__item:last-child {
	border-bottom:1px solid rgba(255,166,0,0.5);
}
.spnav__link,
.spnav__submenu-link{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
}
.spnav__link span {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-left: solid 1px rgba(255,166,0,0.5);
	z-index: 2;
	cursor: pointer;
}
.spnav__link span::before {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--sub-color);
	border-width: 4.5px 0px 4.5px 7.79px;
}
.spnav__accordion-btn{
	padding: 15px 0 15px 15px;
	position: relative;
	width: 100%;
	border: none;
	background-color: transparent;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
}
.spnav__accordion-btn::after{
	content: "";
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background-color: rgba(255,166,0,0.5);
}
.spnav__accordion-btn span{
	display: block;
	width: 40px;
	height: 20px;
	position: relative;
	right: 0;
}
.spnav__accordion-btn span::before,
.spnav__accordion-btn span::after {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--main-color);
	border-radius: 50vh;
	transition: transform var(--trans-fast), background-color var(--trans-fast);
}
.spnav__accordion-btn span::before {
	width: 16px;
	height: 1px;
}
.spnav__accordion-btn span::after {
	height: 16px;
	width: 1px;
}
.spnav__item--has-children.is-open .spnav__accordion-btn span::before,
.spnav__item--has-children.is-open .spnav__accordion-btn span::after {
	transform: translate(-50%, -50%) rotate(45deg);
	background-color: var(--main-color);
}
.spnav__submenu{
	width: 100%;
	background: rgba(255,255,255,0.5);
	display: none;
}
.spnav__submenu-item {
	border-top:1px solid rgba(255,166,0,0.2);
}
.spnav__submenu-item:last-child {
	border-bottom:none;
}
.spnav__submenu-link{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
	padding-left: 35px;
}
.spnav__submenu-link::before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
	margin-right: 10px;
}

/* 
topに戻るボタン
----------------------------------------------------------- */ 
.c-top-back{
	height: 45px;
	width: 45px;
	border-radius: 50%;
	background-color: var(--sub-color);
	position: fixed;
	left: 15px;
	bottom: 15px;
	display: grid;
	place-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--trans-base), visibility var(--trans-base);
}
.c-top-back.is-visible{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.c-top-back img{
	height: 13px;
	width: auto;
}

/* 
utility
----------------------------------------------------------- */ 

/* メディアクエリ出し分け */
.u-pc {
	display: block !important;
}
br.u-pc {
	display: inline !important;
}
.u-pc-1024,
.u-pc-767,
.u-pc-480 {
	display: none;
}
br.u-pc-1024,
br.u-pc-767,
br.u-pc-480 {
	display: none;
}

/* 汎用アンカーリンク */
.u-anchor{
	padding-top: clamp(80px, 7.8vw, 150px);
    margin-top: calc(clamp(80px, 7.8vw, 150px) * -1);
}

/* topとcontact用h2 */
.u-top-h2{
	font-size: 15px;
	color: #006835;
	font-weight: 600;
	padding-left: 33px;
	position: relative;
}
.u-top-h2::before{
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 23px;
	height: 15px;
	display: block;
	background: url("../img/top/top-h2-icon.png") center left / contain no-repeat;
}
.u-top-h2__en{
	display: block;
	line-height: 1.1;
	font-family: var(--font-title);
	font-size: clamp(35px, 3.1vw, 60px);
	font-weight: 300;
	color: var(--font-color);
}

/* text-align */
.u-text-center{
	text-align: center;
}
.u-text-left{
	text-align: left;
}
.u-text-right{
	text-align: right;
}

/* text link */
.u-text-link{
	text-decoration: underline;
	transition: opacity var(--trans-base);
}
.u-text-link:hover{
	opacity: 0.7;
}

/* text color */
.u-color-deep-green{
	color: #006835;
	font-weight: 500;
}
.u-color-main{
	color: var(--main-color);
	font-weight: 500;
}

/* img */
.u-img-maru{
	border-radius: 5px;
}

/* bg */
.u-bg-pale{
	background-color: var(--pale-color);
}

/* animation */
.u-fade,
.u-fade-up,
.u-fade-left,
.u-fade-right{
	opacity: .01;
	transition: opacity var(--trans-base), transform var(--trans-base);
	will-change: opacity, transform;
	transform: none;
}
.u-fade-up{
	transform: translate3d(0, 30px, 0);
}
.u-fade-left{
	transform: translate3d(-50px, 0, 0);
}
.u-fade-right{
	transform: translate3d(50px, 0, 0);
}
.is-active.u-fade,
.is-active .u-fade,
.is-active.u-fade-up,
.is-active .u-fade-up,
.is-active.u-fade-left,
.is-active .u-fade-left,
.is-active.u-fade-right,
.is-active .u-fade-right {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* animation delay */
.u-delay-1 {
	transition-delay: 0.25s;
}
.u-delay-2 {
	transition-delay: 0.5s;
}
.u-delay-3 {
	transition-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
	.u-fade,
	.u-fade-up,
	.u-fade-left,
	.u-fade-right{
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
		will-change: auto;
	}
}

/* 
layout
----------------------------------------------------------- */ 
.l-main{
	overflow-x: hidden;
	position: relative;
}
.l-inner{
	width: min(90%,1300px);
	margin-inline:auto;
}
.l-padding {
	padding-block: clamp(50px, 6.8vw, 130px);
}
.l-padding--compact{
	padding-block: clamp(40px, 4.9vw, 95px);
}
.l-padding--medium{
	padding-block: clamp(40px, 4.9vw, 95px) clamp(50px, 6.8vw, 130px);
}

/* 投稿一覧 sidebarありレイアウト */
.l-post-wrap{
	display:flex;
	gap: 5%;
	flex-wrap:wrap;
}
.l-post-wrap-main{
	width:70%;
}
.l-post-wrap-side {
	width: 25%;
}

/* 
section
----------------------------------------------------------- */ 

/* contact */
.s-contact{
	margin-bottom: clamp(40px, 4.7vw, 90px);
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.s-contact::before,
.s-contact::after {
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: clamp(30px, 11.5vw, 220px);
	display: block;
	z-index: 1;
	background-image: linear-gradient(to right, #FFFFFF 20%, rgba(255,255,255,0.66) 55%, rgba(255,255,255,0) 100%);
}
.s-contact::before{
	left: 0;
}
.s-contact::after {
	right: 0;
	transform: scale(-1,1);
}
.s-contact__box{
	border-radius: 10px;
	background-color: var(--border-color);
	padding: clamp(25px, 2.6vw, 50px);
	position: relative;
	z-index: 2;
}
.s-contact__heading{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 30px;
	margin-bottom: 40px;
	border-bottom: 1px solid #E0E0E0;
}
.s-contact__read{
	text-align: right;
}
.s-contact__links{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}
.s-contact__en {
	display:flex;
	position:absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.s-contact__en li {
	animation:text-loop 150s linear 0s infinite;
	line-height: 1;
	font-size: clamp(80px, 9.6vw, 185px);
	color: #D3E2B6;
	white-space: nowrap;
	font-family: var(--font-title);
	font-weight: 100;
}
.s-contact__en li:nth-child(2) {
	animation:text-loop2 150s linear -75s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateX(100%)
	}
	to {
		transform:translateX(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateX(0)
	}
	to {
		transform:translateX(-200%)
	}
}

/* 
component
----------------------------------------------------------- */ 

/* 本文エリア */
.c-page-contents a {
	text-decoration: underline;
	color: inherit;
	font-weight: inherit;
}
.c-page-contents h1,
.c-page-contents h2,
.c-page-contents h3,
.c-page-contents h4,
.c-page-contents h5,
.c-page-contents h6{
	line-height: inherit;
	font-weight: bold;
}
.c-page-contents ol{
	list-style: decimal;
}
.c-page-contents ul{
	list-style: disc;
}
.c-page-contents ol li,
.c-page-contents ul li {
	margin-left: 1em;
}

/* more btn */
.c-more-btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 185px;
	color: #fff;
	padding: 8px 12px 8px 20px;
	position: relative;
	font-weight: 500;
	text-shadow: 0 0 2px rgba(0,0,0,0.1);
	background-image: linear-gradient(to right, #91BC40, #5EAA48);
	border-radius: 40px;
}
.c-more-btn__circle{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 1px solid #fff;
	position: relative;
	box-sizing: border-box;
}
.c-more-btn__circle::before {
	content: "→";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	padding-bottom: 3px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-more-btn:hover .c-more-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: var(--main-color);
}

/* 汎用accordion */
.c-accordion__title{
	position: relative;
	padding-right: 25px;
}
.c-accordion__title::before,
.c-accordion__title::after{
	content: "";
	position: absolute;
	top: 48%;
	right: 0;
	width: 16px;
	height: 1px;
	transition: transform var(--trans-base);
	background-color: var(--main-color);
}
.c-accordion__item .c-accordion__title::after {
	transform: rotate(-90deg);
}
.c-accordion__trigger.is-open .c-accordion__title::after {
	transform: rotate(0);
}
.c-accordion__trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
}
.c-accordion__panel[hidden] { 
	display: none;
}
.c-accordion__panel {
	overflow: hidden;
}
.c-accordion__inner {
	transform-origin: top;
	transform: scaleY(0);
	transition: transform var(--trans-base);
}
.c-accordion__panel.is-open .c-accordion__inner {
	transform: scaleY(1);
}

/* 汎用Modal */
.c-modal-trigger{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
}
.c-modal {
	position: fixed;
	inset: 0;
	z-index: 10005;
	backface-visibility: hidden;
}
.c-modal[hidden] {
	display: none;
}
.c-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity var(--trans-base);
}
.c-modal__dialog {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.c-modal__content {
	pointer-events: auto;
	max-width: 95%;
	max-height: 90%;
	position: relative;
	opacity: 0;
	transform: scale(.5);
	transition: opacity var(--trans-base), transform var(--trans-base);
	background-color: var(--bg-color);
	padding: 20px;
}
.c-modal__close{
	position: absolute;
	right: 3px;
	top: 3px;
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	text-align: center;
	line-height: 1;
	width: fit-content;
}
.c-modal.is-open .c-modal__overlay {
	opacity: 1;
}
.c-modal.is-open .c-modal__content {
	opacity: 1;
	transform: scale(1);
}
.c-modal.is-closing .c-modal__content {
	opacity: 0;
	transform: scale(.5);
}
body.is-modal-open {
	overflow: hidden;
}

/* 汎用tab */
.c-tab__btn{
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: justify;
}
.c-tab__content {
	display: none;
}
.c-tab__content.is-active {
	display: block;
}

/* 下層ページFV */
.c-sub-fv__bg {
	background-color: #EEF5DE;
	position: relative;
	z-index: 0;
	padding-block: clamp(120px, 12vw, 230px) clamp(60px, 5.7vw, 110px);
}
.c-sub-fv__bg::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 5%;
	width: 45%;
	height: 100%;
	display: block;
	background: url("../img/common/sub-fv-bg.png") right bottom / contain no-repeat;
	z-index: -1;
	mix-blend-mode: soft-light;
}
.c-sub-fv__title {
	font-size: clamp(30px, 3.1vw, 60px);
	font-weight: 500;
	padding-left: 33px;
	position: relative;
}
.c-sub-fv__title::before{
	content: "";
	position: absolute;
	left: 0;
	top: clamp(14px, 1.5vw, 28px);
	width: 23px;
	height: 15px;
	display: block;
	background: url("../img/common/sub-fv-icon.png") center left / contain no-repeat;
}
.c-sub-fv__en{
	display: block;
	font-size: var(--fontsize-15);
	color: #006835;
	font-weight: 200;
	font-family: var(--font-title);
}

/* ぱんくず */
.c-breadcrumb{
	margin-top: 8px;
}
.c-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
	font-size: var(--fontsize-14);
}
.c-breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--color-gray);
}
.c-breadcrumb__item a {
    color: var(--color-gray);
}
.c-breadcrumb__item:last-child a {
    color: var(--font-color);
}

/* 見出しデザイン */
.c-maru-title{
	font-size: var(--fontsize-16);
	font-weight: 500;
	margin-bottom: 15px;
	position: relative;
	padding-left: 20px;
}
.c-maru-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5.5px;
	border-radius: 10px;
	background-color: var(--sub-color);
}
.c-maru-title--green{
	font-size: var(--fontsize-16);
	font-weight: 500;
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
	color: var(--main-color);
}
.c-maru-title--green::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5.5px;
	border-radius: 10px;
	background-color: var(--main-color);
}
.c-leftline-title{
	font-size: clamp(23px, 1.6vw, 30px);
	font-weight: 500;
	margin-bottom: 25px;
	border-radius: 3px;
	position: relative;
	padding-left: 16px;
	z-index: 0;
}
.c-leftline-title::before{
	content: "";
	position: absolute;
	left: -3px;
	top: 0;
	width: 3px;
	height: clamp(20px, 1.7vw, 33px);
	border-radius: 3px;
	background-color: var(--sub-color);
}
.c-leftline-title::after{
	content: "";
	position: absolute;
	left: -3px;
	top: 0;
	width: 3px;
	height: 100%;
	border-radius: 3px;
	background-color: var(--main-color);
	z-index: -1;
}
.c-leftmaru-title{
	font-weight: 500;
	font-size: var(--fontsize-20);
	padding-left: 24px;
	position: relative;
	margin-bottom: 15px;
}
.c-leftmaru-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: var(--main-color);
}
.c-number-heading{
	margin-bottom: 25px;
}
.c-number-heading__label{
	display: block;
	line-height: 1.3;
	margin-bottom: 8px;
	font-size: var(--fontsize-15);
	font-weight: 300;
	color: var(--color-gray);
	font-family: var(--font-title);
	padding-left: 10px;
	position: relative;
	z-index: 0;
}
.c-number-heading__label::before{
	content: "";
	position: absolute;
	left: -2px;
	top: 0;
	width: 2px;
	height: 12px;
	border-radius: 3px;
	background-color: var(--sub-color);
}
.c-number-heading__label::after{
	content: "";
	position: absolute;
	left: -2px;
	top: 0;
	width: 2px;
	height: 100%;
	border-radius: 3px;
	background-color: var(--main-color);
	z-index: -1;
}
.c-number-heading__title{
	font-size: clamp(23px, 1.6vw, 30px);
	font-weight: 500;
	color: #5C8D00;
}
.c-border-bottom-title{
	font-size: clamp(23px, 1.6vw, 30px);
	font-weight: 500;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
	z-index: 0;
}
.c-border-bottom-title::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	border-radius: 3px;
	background-color: var(--main-color);
}
.c-border-bottom-title::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 3px;
	border-radius: 3px;
	background-color: var(--sub-color);
}

/* 投稿用 sidebar */
.c-widget__title {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	padding-left: 20px;
	padding-bottom: 10px;
	font-weight: 500;
}
.c-widget__title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 6px;
	background-color: var(--sub-color);
}
.c-sidebar__list {
	margin-bottom: 30px;
}
.c-sidebar__list.children {
	margin-bottom: 0;
}
.c-sidebar__item:not(:last-child) .c-sidebar__link {
	margin-bottom: 10px;
}
.c-sidebar__list > li:not(:last-child) > a {
	margin-bottom: 10px;
}
.c-sidebar__link {
	width: 100%;
	display: block;
	padding-left: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	transition: color var(--trans-base);
}
.c-sidebar__link::before{
	content: "▶";
	font-size: 7px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: var(--sub-color);
}
.c-sidebar__link:hover{
	color: var(--sub-color);
}
.c-sidebar__select {
	width: 100%;
	font-size: var(--fontsize-15);
	padding: 10px 15px;
	border: 0;
	background-color: #F3F3F3;
}
.c-sidebar__select:focus {
	outline: 1px solid var(--pale-orange);
	outline-offset: 2px;
}

/* 表 */
.c-hyo {
	overflow-x: auto;
	border: 2px solid var(--main-color);
	border-radius: 2px;
}
.c-hyo dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.c-hyo dl:not(:last-of-type) dt,
.c-hyo dl:not(:last-of-type) dd {
	border-bottom: 1px solid var(--main-color);
}
.c-hyo dl dt {
	width: clamp(200px, 14.6vw, 280px);
	padding: 15px 25px;
	font-size: var(--fontsize-14);
	font-weight: 600;
	background-color: #EEF5DE;
	border-right: 1px solid var(--main-color);
	display: flex;
	align-items: center;
}
.c-hyo dl dd {
	width: calc(100% - clamp(200px, 14.6vw, 280px));
	padding: 15px 25px;
	font-size: var(--fontsize-15);
	background-color: #fff;
}

/* teble */
.c-condition-table {
	overflow-x: auto;
	border: 2px solid var(--main-color);
	border-radius: 2px;
}
.c-condition-table__table{
	width: 100%;
}
.c-condition-table__title{
	font-weight: 600;
	padding: 16px;
	background-color: var(--main-color);
	text-align: center;
	color: #fff;
	font-size: var(--fontsize-16);
	position: sticky;
	top: 0;
	left: 0;
}
tr:not(:last-child) .c-condition-table__term,
tr:not(:last-child) .c-condition-table__data{
	border-bottom: 1px solid var(--main-color);
}
.c-condition-table__term,
.c-condition-table__data{
	font-size: var(--fontsize-14);
	text-align: justify;
	padding: 16px 24px;
}
.c-condition-table__term{
	color: #525252;
	background-color: #EEF5DE;
	width: 21.5%;
}
.c-condition-table__data{
	border-left: 1px solid var(--main-color);
	width: 39.25%;
	vertical-align: baseline;
}
.scroll-hint {
	overflow-x: auto !important;
	overflow-y: hidden !important;
}
.scroll-hint-icon {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
}

/* text list */
.c-green-list__item{
	padding-left: 12px;
	position: relative;
	font-size: var(--fontsize-14);
}
.c-green-list__item::before{
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background-image: linear-gradient(to right top, #91A938, #91A938, #7DA03B);
}
 
/* 投稿一覧 カテゴリータイトル */
.c-archive-title {
	font-size: clamp(23px, 1.6vw, 30px);
	margin:0 auto 15px;
	width:100%;
	font-weight: 500;
}
.c-archive-title__label {
	font-size: var(--fontsize-20);
}

/* 投稿一覧 カテゴリーリスト */
.c-archive-cat {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 10px;
	background: var(--pale-color);
	position:relative;
	margin-bottom: 30px;
}
.c-archive-cat__label{
	font-weight: 500;
	margin-right: 5px;
}
.c-archive-cat-list{
	display: flex;
	gap: 10px;
	white-space: nowrap;
}
.c-archive-cat-list__link{
	background-color: var(--main-color);
	padding: 3px 10px;
	font-size: var(--fontsize-14);
	color: #fff;
	transition: background-color var(--trans-base), color var(--trans-base);
}
.c-archive-cat-list__link:hover{
	background-color: #fff;
	color: var(--main-color);	
}

/* 投稿用 日時 カテゴリー */
.archive-news .c-post-meta,
.p-archive .c-post-meta{
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid var(--border-color);
}
.c-post-meta__date{
	padding-right: 30px;
	margin-right: 30px;
	font-size: var(--fontsize-14);
	color: var(--color-gray);
	border-right: 1px dashed var(--color-gray);
}
.c-post-meta__cat{
	padding: 2px 10px;
	font-size: var(--fontsize-14);
	line-height: 1.5;
	font-weight: 600;
	white-space: nowrap;
	margin: 3px 5px 3px 0;
	display: inline-block;
	background-image: linear-gradient(to right, #DECA2E, #FFA600);
	border-radius: 2px;
	color: #fff;
	transition:
		color var(--trans-base),
		background-image var(--trans-base),
		border-color var(--trans-base);
}
a.c-post-meta__cat:hover{
	background-color: #fff;
	color: var(--sub-color);
}

/* 投稿一覧用 grid */
.c-post-grid{
	display: grid;
	gap: clamp(25px, 2.6vw, 50px);
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: clamp(30px, 2.3vw, 45px);
}
.c-post-card{
	position: relative;
	background-color: var(--pale-color);
}
.c-post-card__inner{
	height: 100%;
}
.c-post-card__link{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.c-post-card__img{
	overflow: hidden;
}
.c-post-card__img img{
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: auto;
	transition: transform var(--trans-base);
}
.c-post-card:hover .c-post-card__img img{
	transform: scale(1.1);
}
.c-post-card__main{
	padding: 20px;
}
.c-post-card__title{
	font-size: var(--fontsize-16);
	margin-bottom: 5px;
	font-weight: 600;
	transition: color var(--trans-base);
}
.c-post-card:hover .c-post-card__title{
	color: var(--main-color);
}
.c-post-card__text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--color-gray);
	font-size: var(--fontsize-14);
	line-height: 1.5;
	margin-bottom: 10px;
}
.c-post-card__more{
	text-align: center;
	padding-top: 15px;
	line-height: 1.3;
	border-top: 1px solid var(--border-color);
	font-size: var(--fontsize-14);
	color: var(--color-gray);
	transition: color var(--trans-base);
	display: block;
	padding-bottom: 20px;
	margin: auto 20px 0;
}
.c-post-card:hover .c-post-card__more{
	color: var(--main-color);
}

/* 投稿一覧 list */
.c-post-list{
	margin-bottom: clamp(30px, 2.3vw, 45px);
}
.c-post-list-item{
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-left: 6px solid var(--sub-color);
	margin-bottom: 20px;
	position: relative;
	transition: background-color var(--trans-base);
}
.c-post-list-item:hover{
	background-color: var(--pale-orange);
}
.c-post-list-item__link{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
}
.c-post-list-item__img{
	width:30%;
}
.c-post-list-item__img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}
.c-post-list-item__main{
	width:67%;
}
.c-post-list-item__title{
	font-size: 20px;
	background: none;
	padding-left: 0;
	text-align: justify;
	margin-bottom: 5px;
}
.c-post-list-item__text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
	color: var(--color-gray);
	line-height: 1.5;
}

/* single page */
.p-single__title {
	font-size:var(--fontsize-20);
	font-weight: 700;
	line-height: 1.3;
	color: var(--sub-color);
	padding-bottom: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	text-align: justify;
}
.p-single__title::before{
	content: "";
	background-color: var(--sub-color);
	bottom:-1px;
	position: absolute;
	left:0;
	width: 50px;
	height: 1px;
}
.p-single .c-post-meta{
	margin-bottom: 30px;
}

/* pagination archive */
.nav-links{
	display:flex;
	justify-content:center;
	align-items:flex-end;
	gap:10px;
}
.nav-links .page-numbers{
	display:grid;
	place-items:center;
	width:45px;
	height:45px;
	background-color:#fff;
	border:1px solid var(--border-color);
	border-radius:3px;
	margin:0;
	transition: background-color var(--trans-fast);
}
.nav-links .page-numbers.current,
.nav-links a.page-numbers:hover{
	background-color:#F2F2F2;
}

/* pagination single */
.c-post-nav{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	gap:4%;
	margin-top:clamp(30px,2.3vw,45px);
}
.c-post-nav__link{
	display:block;
	background-color:#fff;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
	padding: 10px;
	font-size: var(--fontsize-15);
	line-height:1.5;
	transition:background-color var(--trans-fast);
	width:calc(50% - 2%);
	position: relative;
}
.c-post-nav__link:hover{
	background-color:var(--pale-orange);
}
.c-post-nav__link--prev{ 
	padding-left:65px;
}
.c-post-nav__link--next{
	padding-right:65px;
	margin-left: auto;
}
.c-post-nav__link--prev::before,
.c-post-nav__link--next::before{
	content:"";
	width:40px;
	height:40px;
	background:var(--sub-color);
	border-radius:50%;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
}
.c-post-nav__link--prev::before{ 
	left:10px;
}
.c-post-nav__link--next::before{ 
	right:10px;
}
.c-post-nav__link--prev::after,
.c-post-nav__link--next::after{
	content:"";
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:0;
	height:0;
	border-top:5px solid transparent;
	border-bottom:5px solid transparent;
}
.c-post-nav__link--prev::after{
	left:25px;
	border-right:7px solid #fff;
}
.c-post-nav__link--next::after{
	right:25px;
	border-left:7px solid #fff;
}
.c-post-nav__label{
	font-size:11px;
	display: block;
}
.c-post-nav__link--next .c-post-nav__label{ 
	text-align:right;
}
.c-post-nav__title{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: var(--fontsize-14);
}
.c-post-nav__link--next .c-post-nav__title{ 
	text-align:right;
}

/* pill button */
.c-pill-link{
	padding: 8px 20px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: var(--fontsize-16);
}
.c-pill-link{
	padding: 8px 20px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: var(--fontsize-16);
	z-index: 0;
	overflow: hidden;
	transition: background-color var(--trans-base);
	text-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.c-pill-link.c-pill-link--news:hover{
	background-color: var(--sub-color);
}
.c-pill-link.c-pill-link--contact:hover{
	background-color: var(--main-color);
}
.c-pill-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: opacity var(--trans-base);
}
.c-pill-link:hover::before {
	opacity: 0;
}
.c-pill-link.c-pill-link--news::before {
	background-image: linear-gradient(to right, #DECA2E, #FFA600);
}
.c-pill-link.c-pill-link--contact::before {
	background-image: linear-gradient(to right, #91BC40, #5EAA48);
}
.c-pill-link__icon{
	margin-right: 8px;
}
.c-pill-link__icon svg{
	width: 18px;
	height: auto;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}

/* loan button */
.c-loan-btn{
	position: fixed;
	right: 10px;
	bottom: -5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px 10px 0 0;
	border: 3px solid rgba(255,255,255,0.3);
	border-bottom: none;
	background-image: linear-gradient(to right top, #FFA600, #DECA2E);
	color: #fff;
	padding: 20px;
	z-index: 10000;
	transition:bottom var(--trans-base);
	width: 380px;
}
.c-loan-btn.c-loan-btn--apply{
	background-image: linear-gradient(to right top, #70AC00, #DECA2E);
}
.c-loan-btn:hover{
	bottom: 0;
}
.c-loan-btn__text{
	display: flex;
	align-items: center;
	font-size: var(--fontsize-18);
	text-shadow: 0 0 2px rgba(0,0,0,0.1);
	font-weight: 600;
}
.c-loan-btn__icon{
	margin-right: 10px;
}
.c-loan-btn__icon svg{
	width: 20px;
	height: auto;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}
.c-loan-btn__circle{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 1px solid #fff;
	position: relative;
	box-sizing: border-box;
}
.c-loan-btn__circle::before {
	content: "→";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	padding-bottom: 2px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-loan-btn:hover .c-loan-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: var(--sub-color);
}
.c-loan-btn.c-loan-btn--apply:hover .c-loan-btn__circle::before{
	color: #70AC00;
}

/* 下から背景ボタン */
.c-toup-btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: none;
	background-color: rgba(255,255,255,0.3);
	color: #fff;
	padding: 25px 30px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
}
.c-toup-btn:hover{
	color: var(--main-color);
}
.c-toup-btn::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #fff;
	transition: height var(--trans-base);
	z-index: -1;
	border-radius: 5px;
}
.c-toup-btn:hover::before{
	height: 100%;
}
.c-toup-btn__text{
	display: flex;
	align-items: center;
	font-size: var(--fontsize-18);
	font-weight: 600;
	width: calc(100% - 33px);
}
.c-toup-btn__icon{
	margin-right: 10px;
}
.c-toup-btn__icon svg{
	height: 20px;
	width: auto;
}
.c-toup-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-toup-btn:hover .c-toup-btn__icon svg path{
	fill: var(--main-color);
}
.c-toup-btn__circle{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 1px solid #fff;
	position: relative;
	box-sizing: border-box;
	transition: border var(--trans-base);
}
.c-toup-btn:hover .c-toup-btn__circle{
	border: 1px solid var(--main-color);
}
.c-toup-btn__circle::before {
	content: "→";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	padding-bottom: 3px;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base), background-color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-toup-btn:hover .c-toup-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: #fff;
	background-color: var(--main-color);
}

/* contact btn */
.c-contact-btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: none;
	background-color: #fff;
	padding: 25px 30px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
	height: 100%;
}
.c-contact-btn:hover{
	color: #fff;
}
.c-contact-btn::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--main-color);
	transition: height var(--trans-base);
	z-index: -1;
	border-radius: 5px;
}
.c-contact-btn:hover::before{
	height: 100%;
}
.c-contact-btn__text{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: calc(100% - 33px);
}
.c-contact-btn__label{
	font-size: var(--fontsize-22);
	font-weight: 600;
	transition: text-decoration var(--trans-base);
}
.c-contact-btn:hover .c-contact-btn__label{
	text-decoration: underline;
}
.c-contact-btn.c-contact-btn--tel .c-contact-btn__label{
	font-size: 25px;
	padding-right: 30px;
	line-height: 1.3;
}
.c-contact-btn__icon{
	margin-right: 10px;
}
.c-contact-btn__icon svg{
	height: 17px;
	width: auto;
}
.c-contact-btn.c-contact-btn--tel .c-contact-btn__icon svg{
	height: 21px;
	width: auto;
}
.c-contact-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-contact-btn:hover .c-contact-btn__icon svg path{
	fill: #fff;
}
.c-contact-btn__sub{
	color: var(--color-gray);
	font-size: var(--fontsize-14);
	font-weight: 500;
	transition: color var(--trans-base);
}
.c-contact-btn:hover .c-contact-btn__sub{
	color: #fff;
}
.c-contact-btn__tag{
	font-size: 12px;
	padding: 2px 10px;
	border: 1px solid var(--color-gray);
	border-radius: 20px;
	transition: border var(--trans-base);
	display: inline-block;
	margin-right: 10px;
	line-height: 1.3;
}
.c-contact-btn:hover .c-contact-btn__tag{
	border: 1px solid #fff;
}
.c-contact-btn__circle{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 1px solid var(--main-color);
	position: relative;
	box-sizing: border-box;
	transition: border var(--trans-base);
}
.c-contact-btn:hover .c-contact-btn__circle{
	border: 1px solid #fff;
}
.c-contact-btn__circle::before {
	content: "→";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	padding-bottom: 3px;
	position: absolute;
	background-color: var(--main-color);
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base), background-color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-contact-btn:hover .c-contact-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: var(--main-color);
	background-color: #fff;
}

/* DL btn */
.c-dl-btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: none;
	background-color: #fff;
	padding: 15px 30px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
	border: 1px solid var(--main-color);
	color: var(--main-color);;
	height: 100%;
}
.c-dl-btn:hover{
	color: #fff;
}
.c-dl-btn::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--main-color);
	transition: height var(--trans-base);
	z-index: -1;
	border-radius: 5px;
}
.c-dl-btn:hover::before{
	height: 100%;
}
.c-dl-btn__text{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: calc(100% - 33px);
}
.c-dl-btn__label{
	font-weight: 600;
}
.c-dl-btn__icon{
	margin-right: 8px;
}
.c-dl-btn__icon svg{
	height: 16px;
	width: auto;
}
.c-dl-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-dl-btn:hover .c-dl-btn__icon svg path{
	fill: #fff;
}
.c-dl-btn__circle{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 1px solid var(--main-color);
	position: relative;
	box-sizing: border-box;
	transition: border var(--trans-base);
}
.c-dl-btn:hover .c-dl-btn__circle{
	border: 1px solid #fff;
}
.c-dl-btn__circle::before {
	content: "↓";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	padding-bottom: 3px;
	position: absolute;
	background-color: var(--main-color);
	top: 50%;
	left: 50%;
	transition: transform var(--trans-base), color var(--trans-base), background-color var(--trans-base);
	font-size: 12px;
	transform: translate(-50%,-50%) scale(0.28);
	text-align: center;
	color: transparent;
	display: grid;
	place-content: center;
	place-items: center center;
	line-height: 1;
}
.c-dl-btn:hover .c-dl-btn__circle::before {
	transform: translate(-50%,-50%) scale(1);
	color: var(--main-color);
	background-color: #fff;
}

/* 
 white-btn
----------------------------------------------------------- */
.c-white-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: none;
	background-color: #fff;
	padding: 15px 30px;
	width: fit-content;
	text-align: center;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
	border: 1px solid var(--main-color);
	color: var(--main-color);
	height: 100%;
}
.c-white-btn:hover{
	color: #fff;
}
.c-white-btn::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--main-color);
	transition: height var(--trans-base);
	z-index: -1;
	border-radius: 5px;
}
.c-white-btn:hover::before{
	height: 100%;
}
.c-white-btn__icon{
	display: block;
	margin-right: 14px;
}
.c-white-btn__icon svg{
	height: 16px;
	width: auto;
}
.c-white-btn__icon svg path{
	transition: fill var(--trans-base);
}
.c-white-btn:hover .c-white-btn__icon svg path{
	fill: #fff;
}
/* 
 おうちできるまでローン 申込画面
----------------------------------------------------------- */
#omosui_frame {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background-color: var(--bg-color);
}
/* 
 footer
----------------------------------------------------------- */
.footer {
	background-image: url("../img/common/footer-bg.png"), linear-gradient(to right top, #78AC57 5%, #B2B953 95%);
	padding: clamp(40px, 4.1vw, 80px) 0 80px;
	color: #fff;
}
.footer__info{
	margin-right: clamp(30px, 8.6vw, 165px);
}
.footer__body{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: clamp(60px, 5.7vw, 110px);
	padding-right: 60px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	position: relative;
}
.footer__logo{
	height: 45px;
	margin-bottom: 25px;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}
.footer__address{
	font-size: var(--fontsize-14);
	margin-bottom: 5px;
}
.footer__map-link{
	display: flex;
	align-items: center;
	transition: opacity var(--trans-base);
	width: fit-content;
}
.footer__map-link:hover{
	opacity: 0.7;
}
.footer__map-icon{
	margin-right: 8px;
}
.footer__map-label{
	font-size: var(--fontsize-14);
	color: #fff;
	text-decoration: underline;
}
.footer__sitemap{
	display: grid;
	grid-column-gap: clamp(30px, 5.7vw, 110px);
	grid-row-gap: 25px;
	grid-template-columns: repeat(2, 1fr);
}
.footer__sitemap-link{
	color: #fff;
	padding-left: 14px;
	font-size: var(--fontsize-14);
	position: relative;
}
.footer__sitemap-link::before{
	content: "▶";
	font-size: 5px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.footer__sns{
	position: absolute;
	right: 0;
	bottom: 25px;
	display: grid;
	place-content: center;
	place-items: center center;
}
.footer__sns-label{
	writing-mode: vertical-rl;
	display: block;
	padding-bottom: clamp(50px, 3.6vw, 70px);
	position: relative;
	font-size: var(--fontsize-14);
	font-family: var(--font-title);
}
.footer__sns-label::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px;
	width: 1px;
	height: clamp(30px, 2.6vw, 50px);
	background-color: #fff;
}
.footer__bottom{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer__seika-link{
	transition: opacity var(--trans-base);
}
.footer__seika-link:hover{
	opacity: 0.7;
}
.footer__seika-link img{
	height: 70px;
	width: auto;
}
.footer__legal-list{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	grid-column-gap: 20px;
	grid-row-gap: 0;
}
.footer__legal-item a{
	font-size: var(--fontsize-14);
	text-decoration: underline;
	color: rgba(255,255,255,0.7);
}
.footer__copyright {
	font-size: var(--fontsize-14);
	margin-top: 14px;
	text-align: right;
}
@media screen and (max-width: 1400px) {
	/* 
	 header
	----------------------------------------------------------- */ 
	.header__nav{
		padding: 0 15px;
	}
	.header__logo img{
		height: 35px;
	}
	.header__item{
		margin: 0 5px;
	}
	.header__link{
		font-size: 14px;
		padding: 20px 0;
	}
	/* 
	 component
	----------------------------------------------------------- */ 

	/* pill button */
	.c-pill-link{
		padding: 5px 10px;
	}
	.c-pill-link__icon{
		margin-right: 0px;
		display: none;
	}
	.c-pill-link__icon svg{
		width: 15px;
	}
	/* 
	 sections
	----------------------------------------------------------- */ 

	/* contact */
	.s-contact::before,
	.s-contact::after {
		width: 30px;
	}
}
@media screen and (max-width: 1024px) {
	/* 
	 header
	----------------------------------------------------------- */ 
	.header__nav {
		height: 60px;
	}
	.header__links {
		display: none;
	}
	/* 
	 sp nuv
	----------------------------------------------------------- */
	.spnav__toggle {
		display: grid;
		place-content: center;
		place-items: center start;
	}
	/* 
	 utility
	----------------------------------------------------------- */ 
	.u-pc,
	br.u-pc{
		display: none !important;
	}
	.u-pc-1024 {
		display: block !important;
	}
	br.u-pc-1024 {
		display: inline !important;
	}
	/* 
	 sections
	----------------------------------------------------------- */

	/* contact */
	.s-contact::before,
	.s-contact::after {
		display: none;
	}
	.s-contact__heading{
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.s-contact__links{
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}
	/* 
	 component
	----------------------------------------------------------- */ 

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(2, 1fr);
	}

	/* 投稿用 日時 カテゴリー */
	.c-post-meta__date{
		padding-right: 15px;
		margin-right: 15px;
	}

	/* 下から背景ボタン */
	.c-toup-btn{
		padding: 13px 18px;
	}

	/* contact btn */
	.c-contact-btn{
		padding: 0 18px;
		height: 50px;
	}
	
	/* loan button */
	.c-loan-btn{
		padding: 13px 18px;
	}

	/* 見出しデザイン */
	.c-number-heading {
	  margin-bottom: 15px;
	}
	
	/* teble */
	.c-condition-table__title{
		padding: 10px;
	}
	.c-condition-table__term,
	.c-condition-table__data{
		padding: 10px;
	}
	/* 
	 footer
	----------------------------------------------------------- */ 
	.footer__sitemap{
		display: none;
	}
	.footer__legal-list{
		width: 100%;
	}
}
@media screen and (max-width:767px) {
	:root {
		--fontsize-18: 16px;
		--fontsize-16: 15px;
		--fontsize-15: 14px;
		--fontsize-14: 13px;
	}
	/* 
	topに戻るボタン
	----------------------------------------------------------- */ 
	.c-top-back{
		display: none;
	}
	/* 
	 utility
	----------------------------------------------------------- */ 
	.u-pc-1024,
	br.u-pc-1024{
		display: none !important;
	}
	.u-pc-767 {
		display: block !important;
	}
	br.u-pc-767 {
		display: inline !important;
	}
	/* 
	layout
	----------------------------------------------------------- */ 
	/* 投稿一覧 sidebarありレイアウト */
	.l-post-wrap-main{
		width: 100%;
		margin: 0;
	}
	.l-post-wrap-side {
		width: 100%;
		margin-top: 40px;
	}
	/* 
	 component
	----------------------------------------------------------- */ 
	
	/* 下層ページFV */
	.c-sub-fv__bg::before {
		width: 90%;
	}

	/* 投稿一覧用 grid */
	.c-post-grid{
		grid-template-columns: repeat(1, 1fr);
	}

	/* pagination single */
	.c-post-nav{
		gap: 5px;
	}
	.c-post-nav__link--prev,
	.c-post-nav__link--next{
		width: 100%;
	}

	/* contact btn */
	.c-contact-btn{
		padding: 10px 18px;
		height: auto;
	}

	/* loan button */
	.c-loan-btn{
		width: 330px;
	}

	/* hyo */
	.c-hyo dl dt {
		padding: 10px;
		width: 120px;
	}
	.c-hyo dl dd {
		padding: 10px;
		width: calc(100% - 120px);
	}
	
	/* teble */
	.c-condition-table__table{
		min-width: 560px;
	}
	
	/* text list */
	.c-green-list__item::before{
		top: 9px;
	}
	
	.c-maru-title--green{
		margin-bottom: 20px;
	}
	/* 
	 sections
	----------------------------------------------------------- */ 

	/* contact */
	.s-contact__heading{
		display: block;
	}
	.s-contact__read{
		text-align: justify;
		margin-top: 10px;
	}
	.c-contact-btn.c-contact-btn--tel .c-contact-btn__label{
		font-size: 23px;
	}
	.c-more-btn{
		margin: 0 auto;
	}
	/* 
	 footer
	----------------------------------------------------------- */ 
	.footer__logo{
		margin-bottom: 15px;
	}
	.footer__legal{
		width: 100%;
		margin-top: 10px;
	}
}
@media screen and (max-width:480px) {
	:root {
		--fontsize-25: 18px;
		--fontsize-22: 17px;
		--fontsize-20: 16px;
	}
	/* 
	 utility
	----------------------------------------------------------- */ 
	.u-pc-767,
	br.u-pc-767{
		display: none !important;
	}
	.u-pc-480 {
		display: block !important;
	}
	br.u-pc-480 {
		display: inline !important;
	}
	/* 
	 component
	----------------------------------------------------------- */ 

	/* 投稿一覧 list */
	.c-post-list-item__img {
		width: 100%;
		margin: 0 auto 15px;
	}
	.c-post-list-item__main {
		width: 100%;
	}

	/* 下から背景ボタン */
	.c-toup-btn__text{
		font-size: 15px;
	}
	.c-toup-btn__icon{
		margin-right: 5px;
	}
	.c-toup-btn__icon svg{
		height: 15px;
	}

	/* 見出しデザイン */
	.c-leftmaru-title::before{
		top: 5px;
	}
	.c-archive-title,
	.c-number-heading__title,
	.c-leftline-title{
		font-size: 20px;
	}
	.c-leftline-title{
		margin-bottom: 15px;
		padding-left: 10px;
	}

	/* hyo */
	.c-hyo dl dt {
		width: 100% !important;
		border-right: none  !important;
	}
	.c-hyo dl dd {
		width: 100% !important;
	}
	
	.c-dl-btn{
		padding: 15px;
	}
	.c-white-btn{
		padding: 15px;
	}
	.c-white-btn__icon{
		margin-right: 10px;
	}
	.c-loan-btn{
		width: 100%;
		left: 0;
		bottom: 0;
		right: auto;
	}
	/* 
	 sections
	----------------------------------------------------------- */ 

	/* contact */
	.c-contact-btn.c-contact-btn--tel .c-contact-btn__label{
		padding-right: 0;
		margin-bottom: 5px;
	}
}