/*
Theme Name: T'Will hand
Template: lightning
Description:
Author:
Version: 0.0.1
*/

/* 汎用 ---------------------------------------------------------------- */
body {
	font-family: "Shippori Mincho", "EB Garamond", "Noto Serif JP", serif;
}
.f-default {
	font-family: "ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.Shippori {
	font-family: "Shippori Mincho", "Noto Serif JP", serif;
}
.Garamond {
	font-family: "EB Garamond", "Noto Serif JP", serif;
}
.Bebas {
	font-family: "Bebas Neue", "Noto Sans JP", serif;
}
.Noto-Sans {
	font-family: "Noto Sans JP", serif;
}
/* p {
    font-size: 0.9rem;
} */
.fw-bold {
	font-weight: bold;
}
a:hover {
    color: var(--vk-color-primary);
}
:root {
	--color-red: #bf0603;
	--color-gray: #f3f4f6;
	--color-orange: #ff3600;
	--color-navy: #000467;
}
.bg-gray {
	background-color: var(--color-gray) !important;
}
.bg-red {
	background-color: var(--color-red) !important;
}
.bg-orange {
	background-color: var(--color-orange) !important;
}
.bg-navy {
	background-color: var(--color-navy) !important;
}
section.sectionBox {
    margin: 0 calc(50% - 50vw);
    padding: 2rem calc(50vw - 50%) 11rem;
}
/* section.sectionBox:first-child {
    padding-top: 2rem;
} */
@media(max-width:767px){
	section.sectionBox {
		padding: 2rem calc(50vw - 50%) 5.5rem;
	}
}
h2.sectionTitle {
    text-align: center;
    position: relative;
    padding: 5rem 1rem 5rem;
    z-index: 0;
	margin-bottom: 3rem;
	letter-spacing: 0.2rem;
}
h2.sectionTitle .bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 200px;
}
h2.sectionTitle .bg img {
	display: block;
	width: auto;
	height: 100%;
}
@media(max-width:767px){
	h2.sectionTitle {
		padding: 3rem 1rem 3rem;
		margin-bottom: 1rem;
	}
	h2.sectionTitle .bg {
		max-height: 85px;
	}
}
/* h2.sectionTitle span {
    display: block;
    font-size: 1rem;
	color: var(--color-orange);
}
.bg-red h2.sectionTitle span {
    color: #fff;
}
section.sectionBox.bg-red h2.sectionTitle {
	color: #fff;
} */
.btn-primary {
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
	font-size: 1rem;
	padding: 1rem 3.5rem 1rem 1rem;
	border-radius: 40px;
	max-width: 250px;
	position: relative;
	width: 100%;
}
.btn-primary:after {
	content: "\f061";
	width: 2rem;
	height: 2rem;
	position: absolute;
	right: 15px;
	background-color: #f2f2f2;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 70px;
	font-family: "font awesome 7 free";
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vk-color-primary);
}
a#page_top {
    box-shadow: none;
    border-radius: 100px;
}
/* テキスト */
.text-red {
	color: var(--color-red);
}
.text-gray {
	color: var(--color-gray);
}
.text-orange {
	color: var(--color-orange);
}
.text-navy {
	color: var(--color-navy);
}

/* スクロールフェードイン */
.js_fadein {
	opacity: 0;
	visibility: hidden;
	transform: translateY(20%);
	/* 	transition: opacity 1s, visibility 1s, transform 1s; */
	transition: -webkit-transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.js_fadein.leftIn {
	transform: translateY(0%);
	transform: translateX(-20%);
}
.js_fadein.rightIn {
	transform: translateY(0%);
	transform: translateX(20%);
}
.is_start.js_fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* 必須 */
/* .required {
    margin-left: 5px;
    background-color: var(--color-magenta);
    color: #fff;
    padding: 0px 5px;
    font-size: 0.7rem;
    font-weight: normal;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.1rem;
} */

/* コンタクトボタン */
.contact-fixed {
	position: fixed;
	right: 0;
	top: 50%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 9999;
	transform: translateY(-50%);
}
.contact-btn {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	transition: opacity 0.3s, transform 0.3s;
}
.contact-btn:hover {
	opacity: 0.8;
	transform: scale(1.05);
}
.contact-btn.phone { background: var(--color-blue); }
.contact-btn.mail { background: var(--color-pink); }
.contact-btn.line { background: #06c755; }
.contact-btn i {
	margin-right: 0;
	color: #fff;
}
@media (max-width: 767.98px) {
  .contact-fixed {
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        width: 100%;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(6px);
        padding: 8px;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        top: auto;
        transform: unset;
	}
	.contact-fixed .contact-btn {
		flex: 1 1 auto;
		height: 52px;
		width: auto;
		border-radius: 2px;
		font-size: 20px;
	}
	.contact-fixed .contact-btn .label {
		display: inline;
	}
}

/* セクション背景 */
.sectionBox {
  position: relative;
	z-index: 0;
}
.sectionBox .marquee-wrap{
  width:100%;
  overflow:hidden;
  padding:.5rem 0;
  background:transparent;
  white-space:nowrap;
  position:absolute;
  left:0;
  top:2rem;
  z-index:-1;
  line-height:9rem;
}
.marquee-track{
  display:flex;
  align-items:center;
  width:max-content;
  will-change:transform;
  animation:marquee var(--marquee-duration, 100s) linear infinite;
}
.marquee-content{
  display:inline-flex;
  gap:4rem;
  font-size:9rem;
  font-weight:700;
  color:#fff;
	opacity: 0.4;
}
.marquee-content.gray { color:#f2f2f2; }
.marquee-content span{ display:inline-block; }
@keyframes marquee{
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; transform:translateX(-15%); }
}
.marquee-track.mq-measure { animation: none !important; }

/* メルマガバナー */
#mail-bnr {
	position: fixed;
	bottom: 100px;
	right: 45px;
/* 	background-color: var(--color-gray);
	color: #333;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease; /* アニメーションの設定 */
	z-index: 1000;
	width: 160px;
}
#mail-bnr.show {
	opacity: 1; /* 完全に表示 */
	visibility: visible; /* 表示状態 */
}
#mail-bnr p {
	font-size:14px;
	margin: 0;
	padding: 0;
	color: #333;
}
.mail-cnt {
    width: 90px;
}
.mail-cnt:nth-child(2) {
	margin-left: auto;
}
.mail-cnt .btn-primary {
	padding: 0.5rem !important;
	border-radius: 100px;
	border: 5px solid #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	height: 90px;
	font-size: 0.8rem;
	font-family: "Noto Sans JP", serif;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.mail-cnt:nth-child(1) .btn-primary {
	background-color: var(--color-red);
}
.mail-cnt:nth-child(2) .btn-primary {
	background-color: var(--color-orange);
}
.mail-cnt .btn-primary i {
    margin-right: 0;
    color: #fff;
}
.mail-cnt .btn-primary:after {
	content: none;
}
.mail-cnt:nth-child(1) .btn-primary:hover {
	color: var(--color-red);
	background-color: #fff;
}
.mail-cnt:nth-child(2) .btn-primary:hover {
	color: var(--color-orange);
	background-color: #fff;
}
/* ×ボタンのスタイル */
/* #close-bnr {
	position: absolute;
    top: -15px;
    right: -15px;
	background: none;
	border: none;
	color: #fff;
	font-size: 25px;
	cursor: pointer;
	line-height: 1;
	background-color: #333;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
#close-bnr:hover {
	color: #FF0000;
} */
@media(max-width:767px){
	#mail-bnr {display:none;}
}


/* 書き換え ----------------------------------------------------------- */
@media (min-width: 1200px) {
    .container:not(#site-header-container):not(.site-footer-content),
	.container-lg:not(#site-header-container):not(.site-footer-content),
	.container-md:not(#site-header-container):not(.site-footer-content),
	.container-sm:not(#site-header-container):not(.site-footer-content),
	.container-xl:not(#site-header-container):not(.site-footer-content) {
        max-width: 960px;
    }
}
@media (max-width: 575px) {
    .container, .container-sm {
        max-width: 400px;
    }
}
@media (min-width: 992px) {
    .main-section--col--two {
        width: 62%;
    }
}
@media(max-width:991px){
	.vk-mobile-nav .acc-btn {
		display: none;
	}
	.vk-menu-acc ul.sub-menu.acc-child-close {
		max-height: 80vh;
		overflow-y: auto;
		opacity: 1;
	}
}


/* ヘッダー ----------------------------------------------------------- */
@media (min-width: 992px) {
	/* 横並びのグローバルナビ（PC表示）を消す */
/* 	.global-nav {
		display: none !important;
	} */
	/* ハンバーガーボタン（SP用）をPCでも表示 */
/* 	.vk-mobile-nav-menu-btn {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	} */
	/* SP用のオフキャンバス/ドロワー領域をPCでも有効化（念のため） */
/* 	.vk-mobile-nav {
		display: block !important;
	}
	div#vk-mobile-nav-menu-btn {
		height: 60px;
		width: 60px;
		border: none;
		top: 17px;
		right: 17px;
	}
	.vk-mobile-nav {
		padding-top: 85px;
	} */
}
div#site-header-container {
    margin: 0;
    max-width: 100%;
}
.site-header-logo {
    text-align: left;
}
.site-header-logo a {
    display: inline-block;
}
@media(min-width:768px){
	div#site-header-container {
		padding: 0 3rem;
	}
}
@media (max-width: 991px) {
	div#vk-mobile-nav-menu-btn {
		height: 44px;
		width: 44px;
		top: 10px;
		right: 10px;
		border: none;
	}
	.vk-mobile-nav {
		padding-top: 55px;
	}
}
.menu-item.disabled > a {
    pointer-events: none;
}


/* フッター ----------------------------------------------------------- */
footer.site-footer {
    background-color: #fafafa;
}
.site-footer-copyright p:last-child {
	text-align: left;
}
@media(min-width:768px){
	.site-footer-content {
		margin: 2rem 0 0;
		max-width: 1000px;
		padding: 0 3rem;
	}
	.site-footer-copyright {
		margin: 0 2rem 0;
	}
	.site-footer-copyright p {
		text-align: left;
		margin: .5rem 0;
		white-space: nowrap;
	}
	.site-footer-copyright p:last-child {
		border-left: 1px solid #333;
		padding-left: 0.5rem;
	}
}
.footerBtn {
    border-radius: 0;
    font-size: 0.8rem;
    max-width: 200px;
    padding: 0.5rem 1rem;
    text-align: left;
}
.footerBtn:after {
    width: 1.5rem;
	height: 1.5rem;
}

.site-footer-content > .row > div:nth-child(2) > aside,
.site-footer-content > .row > div:nth-child(2) > aside > div {
	height: 100%;
}
footer.site-footer iframe {
	width: 100%;
	height: 100%;
}
div#ctr-bnr {
	display: none;
}
@media(max-width:767px){
	div#ctr-bnr {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: var(--color-gray);
		padding: 1rem;
	}
	div#ctr-bnr > .d-flex {
		column-gap: 1rem;
	}
	.ctr-bnrBox {
		width: 50%;
	}
	div#ctr-bnr a {
		border: 1px solid var(--color-red);
        color: var(--color-red);
        font-size: 0.9rem;
        line-height: 1rem;
        background-color: #fff;
		font-weight: bold;
	}
	div#ctr-bnr a i {
		font-size: 1.5rem;
	}
	.site-footer-copyright {
		padding-bottom: 100px;
	}
}



/* 固定ページ ----------------------------------------------------------- */
.sectionHead {
	position: absolute;
	max-width: 50%;
	top: 0;
}
.sectionHead.left {
	left: 0;
}
.sectionHead.right {
	right: 0;
}
.sectionHead img {
/* 	max-height: 300px; */
	display: block;
}
@media(max-width:767px){
	.sectionHead {
		max-width: 70%;
	}
}

.page-header {
	background-color: #f2f2f2;
	background-image: url(/wp-content/uploads/2026/01/page-header-bg.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: contain;
}
.page-header-inner {
    padding-top: 30px;
    padding-bottom: 30px;
}
.page-header-title, h1.page-header-title {
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
	letter-spacing: 0.2rem;
	text-indent: 0.2rem;
	color: var(--color-navy);
}
.page-header-sub {
    color: var(--color-red);
    font-weight: 600;
    font-family: "Noto Sans JP", serif;
    font-size: 1.2rem;
    text-transform: capitalize;
	margin-bottom: 0;
}
@media(max-width:991px){
	.page-header {
		background-image: url(/wp-content/uploads/2026/01/page-header-bg-sp.png);
		background-position: right center;
		min-height: 4rem;
	}
	.page-header-inner {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.page-header-title, h1.page-header-title {
		font-size: 1.2rem;
	}
	.page-header-sub {
		font-size: 1rem;
	}
/* 	.breadcrumb {
		text-align: center;
	} */
}


/* TOPページ ----------------------------------------------------------- */
.home .site-body {
	padding-bottom: 0;
}
.home .main-section--margin-bottom--on {
    margin-bottom: 0;
}

.topMv {
    position: relative;
}
.topMv:before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(/wp-content/uploads/2026/01/brand-pc.png);
	display: block;
	position: absolute;
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
.topMv .twillMv {
    width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: left bottom;
	display: block;
}
/* .topMv .topMes {
    position: absolute;
    top: 50%;
	right: 3%;
    transform: translateY(-50%);
	text-align: right;
} */
.topMv .topMes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	width: 100%;
}
.topMv .topMes .topMesBox {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
@media (min-width: 576px) {.topMv .topMes .topMesBox {max-width: 540px;}}
@media (min-width: 768px) {.topMv .topMes .topMesBox {max-width: 720px;}}
@media (min-width: 992px) {.topMv .topMes .topMesBox {max-width: 960px;}}
@media (min-width: 1200px) {.topMv .topMes .topMesBox {max-width: 1140px;}}
.topMv .topMes h2 {
	font-size: 2rem;
	font-weight: 500;
	writing-mode: vertical-rl;
	line-height: 3.5rem;
	letter-spacing: 0.2rem;
}
.topMv .topMes h2 span {
    letter-spacing: .06em;
}
.topMv .topMes h2 span,
.topMv .topMes h3,
.topMv .topMes p {
	opacity: 0;
    animation: textanimation 1s forwards;
}
.topMv .topMes h2 span:nth-of-type(1) {animation-delay: 0.1s}
.topMv .topMes h2 span:nth-of-type(2) {animation-delay: 0.2s}
.topMv .topMes h2 span:nth-of-type(3) {animation-delay: 0.3s}
.topMv .topMes h2 span:nth-of-type(4) {animation-delay: 0.4s}
.topMv .topMes h2 span:nth-of-type(5) {animation-delay: 0.5s}
.topMv .topMes h2 span:nth-of-type(6) {animation-delay: 0.6s}
.topMv .topMes h2 span:nth-of-type(7) {animation-delay: 0.7s}
.topMv .topMes h2 span:nth-of-type(8) {animation-delay: 0.8s}
.topMv .topMes h2 span:nth-of-type(9) {animation-delay: 0.9s}
.topMv .topMes h2 span:nth-of-type(10) {animation-delay: 1s}
.topMv .topMes h2 span:nth-of-type(11) {animation-delay: 1.1s}
.topMv .topMes h2 span:nth-of-type(12) {animation-delay: 1.2s}
.topMv .topMes h2 span:nth-of-type(13) {animation-delay: 1.3s}
.topMv .topMes h2 span:nth-of-type(14) {animation-delay: 1.4s}
.topMv .topMes h2 span:nth-of-type(15) {animation-delay: 1.5s}
.topMv .topMes h2 span:nth-of-type(16) {animation-delay: 1.6s}
.topMv .topMes h2 span:nth-of-type(17) {animation-delay: 1.7s}
.topMv .topMes h2 span:nth-of-type(18) {animation-delay: 1.8s}
.topMv .topMes h2 span:nth-of-type(19) {animation-delay: 1.9s}
.topMv .topMes h2 span:nth-of-type(20) {animation-delay: 2s}
.topMv .topMes h2 span:nth-of-type(21) {animation-delay: 2.1s}
.topMv .topMes h3,.topMv .topMes p {animation-delay: 3.1s}
@keyframes textanimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.topMv .topMes h3 {
	font-size: 1.2rem;
}
.topMv .topMes p {
	margin-right: auto;
	font-size: 1rem;
}
@media(max-width:1200px){
	.topMv .topMes h2 {
		margin: 0 auto;
/* 		width: 100%;
		display: flex;
		align-items: center; */
	}
	.topMv .topMes h3 {
		width: 100%;
		text-align: center;
	}
	.topMv .topMes p {
		text-align: center;
		margin: auto;
	}
}
@media(max-width:992px){
	.topMv:before {
		background-image: url(/wp-content/uploads/2026/01/brand-sp.png);
	}
	.topMv .topMes h2 {
		font-size: 1.4rem;
		margin: 0 auto;
/* 		width: 100%;
		display: flex;
		align-items: center; */
	}
	.topMv .topMes h3 {
		font-size: 0.8rem;
		width: 100%;
		text-align: center;
	}
	.topMv .topMes p {
		font-size: 0.8rem;
		text-align: center;
		margin: auto;
	}
}
@media(max-width:767px){
	.topMv .twillMv {
		aspect-ratio: 1 / 1;
		height: 100%;
		object-fit: cover;
		object-position: left;
	}
	.topMv .topMes {
		text-align: left;
	}
}



/* ニュース */
section.newsBox {
	margin-top: 5rem;
}
.info-list {
/* 	border: 2px solid var(--color-red);
	padding: 1rem;
	border-radius: 10px; */
	margin-bottom: 0.5rem;
}
.info-item {
	margin-bottom: 0.5rem;
}
.info-box {
    position: relative;
    gap: 1.5rem;
    padding: 0.8rem 1rem;
    transition: 0.2s;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #333;
}
/* .info-box:last-child {
	border-bottom: none;
} */
.info-box:after {
	content: "\f061";
	width: 1.2rem;
	height: 1.2rem;
	right: 15px;
	border: 1px solid var(--vk-color-primary);
	border-radius: 70px;
	font-family: "font awesome 7 free";
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vk-color-primary);
	margin-left: auto;
	aspect-ratio: 1 / 1;
	    font-size: 0.8rem;
}
.info-box:hover {
    background-color: var(--color-red);
    color: #fff;
}
.info-box:hover:after {
    color: #fff;
	border: 1px solid #fff;
}
.info-title {
	display: inline-flex;
	align-items: center;
	gap: .35em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.info-pin{
	transform: rotate(45deg);
	flex-shrink: 0; /* 省略時も消えない */
	font-size: .9em;
}
/* .newsLink {
    margin-bottom: 20px;
} */

@media (max-width: 767.98px){
	section.newsBox {
		margin-top: 2.5rem;
	}
  .info-box{
    flex-wrap: wrap;      /* 2段にできるように */
    gap: .25rem .75rem;   /* 行間/列間を調整 */
    padding-right: 3.5rem;/* 右の矢印分の余白（afterが被らないように） */
    align-items: flex-start;
  }
  .info-meta,
  .info-title{
    display: block;
    width: 100%;
  }
  .info-title{
    white-space: nowrap;
  }
  .info-box:after{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0; /* flexのauto押し出しを無効化 */
  }
}

/* サービス */
/* section.serviceSection {
    margin-top: 40px;
} */
.serviceSection .sectionHead {
    max-width: 52%;
}
/* .sectionBox.serviceBox:before {
    content: "";
    width: 200px;
    height: 170px;
    background-image: url(/wp-content/uploads/2026/01/en.png);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 100px;
} */
.serviceBtn {
    display: flex;
	flex-wrap: wrap;
    margin: 200px auto 0;
	gap: 1rem;
	max-width: 800px;
}
.serviceBtn > div {
	width: calc(50% - 0.5rem);
	margin-top: 80px;
}
@media(max-width:1199px){
	.sectionBox.serviceBox:before {
		width: 100px;
		height: 100px;
		right: 30px;
	}
}
@media(max-width:767px){
	.serviceSection .sectionHead {
		max-width: 73%;
	}
	.sectionBox.serviceBox:before {
		display: none;
	}
}

a.serviceBox {
    position: relative;
    z-index: 0;
    border: 1px solid #f2f2f2;
    height: 100%;
    color: #333;
    transition: 0.2s;
	border: 1px solid var(--color-red);
	border-top: 5px solid var(--color-red);
    min-height: 120px;
    padding: 1rem;
    font-family: "Noto Sans JP", serif;
/*     text-align: right; */
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px #ddd;
}
a.serviceBox:hover{
	box-shadow:0 8px 20px rgba(0,0,0,.08);
	transform:translateY(-2px);
}
span.service-image {
    display: block;
    max-width: 50%;
    position: absolute;
    top: -15%;
    right: 0;
    transform: translateY(-50%);
}
span.service-image img {
    display: block;
}
/* a.serviceBox:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.6;
    z-index: 0;
	transition: 0.2s;
} */
/* a.serviceBox img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
	display: block;
	background-color: #fcfcfc;
	transition: 0.2s;
} */
/* a.serviceBox > span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
	display: block;
    padding: 0.5rem;
}
a.serviceBox > span > span {
	display: block;
	font-size: 1rem;
} */
/* a.serviceBox:hover:before {
    opacity: 0.4;
} */
/* a.serviceBox:hover img {
    transform: scale(1.1);
} */
span.service-title {
    display: block;
    font-weight: 600;
    color: var(--color-red);
    font-size: 2.2rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
}
span.service-cap {
    font-size: 1.1rem;
}
@media(max-width:767px){
	.serviceBtn {
		max-width: 250px;
		margin-top: 100px;
	}
	.serviceBtn > div {
		width: 100%;
		margin-top: 65px;
	}
	a.serviceBox {
		padding: 0.5rem;
		height: 80px;
		min-height: auto;
	}
	span.service-image {
		top: -10%;
	}
	span.service-title {
		font-size: 1.5rem;
	}
	span.service-cap {
		font-size: 0.8rem;
	}
/* 	a.serviceBox > span {
		font-size: 1rem;
	}
	a.serviceBox > span > span {
		font-size: 0.8rem;
	} */
}


/* 導入実績 */
.ir-list {
    margin: 200px auto 20px;
}
@media(max-width:767px){
	.ir-list {
		max-width: 250px;
		margin-top: 100px;
	}
}
.ir-list .row {
	row-gap: 1.5rem;
}
.ir-card{
	border:1px solid #e5e5e5;
	overflow:hidden;
	background:#fff;
	transition:.2s;
	border-radius: 10px;
	display: block;
}
.ir-card:hover{
	box-shadow:0 8px 20px rgba(0,0,0,.08);
	transform:translateY(-2px);
}
.ir-thumb{
	display:block;
	background:#f5f5f5;
}
.ir-thumb img{
	object-fit:cover;
	aspect-ratio: 3 / 2;
	display: block;
}
.ir-thumb-noimg{
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
	color:#999;
	font-size:.75rem;
	aspect-ratio: 3 / 2;
}
.ir-card-body{
	padding:16px;
	display:flex;
	flex-direction:column;
}
.ir-head{
	display:flex;
	justify-content:space-between;
	align-items:center;
	font-size:.8rem;
	color:#666;
	margin-bottom:8px;
}
.ir-term {
    background-color: var(--color-navy);
    color: #fff;
    padding: 0.1rem 0.5rem;
    border-radius: 5px;
}
.ir-term{
	font-size:.7rem;
	padding:2px 8px;
	border-radius:3px;
	background:var(--color-navy);
	text-decoration:none;
	white-space:nowrap;
	color: #fff;
}
.ir-title{
	font-size:1rem;
	font-weight:600;
	line-height:1.5;
	margin:0 0 8px;
	color:#222;
	text-decoration: none;
}
.ir-excerpt{
	font-size:.85rem;
	color:#555;
	line-height:1.6;
	font-family: "Noto Sans JP", serif;
}
.ir-link{
	text-decoration:none;
}
/* .ir-link:hover .ir-title{
	text-decoration:underline;
} */
/* ブログ */
/* .blog-item{
	margin:0 0 18px;
}
.blog-box{
	background:#fff;
	border-radius:14px;
	padding:14px;
	gap:18px;
	box-shadow:0 6px 18px rgba(0,0,0,.12);
	color:inherit;
}
.blog-thumb{
	width:20%;
	aspect-ratio:16/9;
	overflow:hidden;
	border-radius:10px;
	background:#eee;
}
.blog-thumb img{
	object-fit:cover;
	display:block;
}
.blog-thumb-noimg{
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
	color:#999;
	font-size:.75rem;
}
.blog-body {
	width: calc(80% - 2rem);
}
.blog-date{
	font-size:.85rem;
	letter-spacing:.06em;
	color:#666;
	margin-bottom:6px;
}
.blog-title{
	font-weight:700;
	line-height:1.45;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
}
.blog-box{
	transition: transform .18s ease, box-shadow .18s ease;
	will-change: transform;
}
.blog-box:hover{
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.blog-box:active{
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
@media (prefers-reduced-motion: reduce){
	.blog-box{ transition:none; }
	.blog-box:hover, .blog-card:active{
		transform:none;
		box-shadow: 0 6px 18px rgba(0,0,0,.12);
	}
}
.blog-list .btn-primary {
	border: 1px solid #fff;
}
@media (max-width: 576px){
	.blog-box{
		padding:12px;
		gap:12px;
	}
	.blog-thumb{
		width:20%; 
		aspect-ratio: 1 / 1;
	}
	.blog-title{
		font-size:1rem;
	}
} */

/* 私たちの想い */
section.sectionBox.visionSection {
	background-image: url(/wp-content/uploads/2026/02/our-vision-bg.jpg);
	background-position: center;
    background-size: cover;
    padding-top: 6rem;
    padding-bottom: 8rem;
	position: relative;
}
.visionSection img {
/* 	max-width: 65%; */
/* 	width: 65%; */
}
.visionSection .img img {
/* 	max-width: 65%; */
    display: block;
/* 	max-height: 200px; */
/*     width: auto; */
}
.visionSection h2 {
    position: relative;
	font-size: 2.2rem;
	color: #fff;
	letter-spacing: 0.3rem;
	font-weight: 500;
	margin: 0 0 0 auto;
	writing-mode: vertical-rl;
	margin-top: -3rem;
	padding: 0;
}
/* .visionBox h2:before {
	content: "";
	display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/wp-content/uploads/2026/01/our-vision.png);
	height: 230px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    left: -1.5rem;
} */
.visionBox {
	width: 65%;
/* 	margin-top: -5rem; */
}
/* .visionSection .visionText {
	font-weight: bold;
} */
/* .visionSection .visionText .name {
	font-size: 1.1rem;
} */
.visionSection .visionText .btn-primary {
	max-width: 200px;
}
@media(max-width:1200px){
/* 	section.sectionBox.visionBox {
		background-image: url(/wp-content/uploads/2026/01/vision-bg-md.jpg);
	} */
	.visionSection h2:before {
		height: 150px;
	}
}
@media(max-width:767px){
	section.sectionBox.visionSection {
		background-image: url(/wp-content/uploads/2026/02/our-vision-bg-sp.jpg);
		padding-top: 5rem;
		padding-bottom: 3rem;
	}
	.visionBox {
		width: auto;
	}
	.visionSection h2 {
		position: unset;
	}
	.visionSection h2:before {
		top: unset;
		transform: unset;
		bottom: 0;
		left: 1rem;
		height: 110px;
	}
	.visionSection .visionText {
		width: 100%;
		margin-bottom: 200px;
	}
}

/* .p-top-intent{
	margin:16px 0;
	padding:16px 18px;
	border:1px solid rgba(0,0,0,.07);
	border-radius:12px;
	background:#fff;
} */
/* .p-top-intent__inner{
max-width:1100px;
margin:0 auto;
} */
/* .p-top-intent__body{
	display:flex;
	gap: 2rem;
	align-items:flex-start;
}
.p-top-intent__photo{
	flex:0 0 auto;
	border-radius:999px;
	overflow:hidden;
	background:rgba(0,0,0,.05);
	border: 2px solid var(--color-gray);
}
.p-top-intent__photo img{
	object-fit:cover;
	display:block;
}
.p-top-intent__text{
	flex:1 1 auto;
}
.p-top-intent__ttl{
	margin:0 0 6px;
	font-size:1rem;
	letter-spacing:.04em;
	line-height:1.3;
}
.p-top-intent__msg{
	margin-bottom: 0.5rem;
	font-size: 1rem;
	line-height:1.85;
}
@media (max-width:768px){
	.p-top-intent__body{
		flex-wrap: wrap;
	}
	.p-top-intent{
		padding:14px;
	}
	.p-top-intent__photo{
		width:64px;
		height:64px;
		margin: 0 auto;
	}
	.p-top-intent__msg{
		font-size:.92rem;
		line-height:1.75;
	}
} */

/* 会社概要 */
section.companyBox {
    margin-top: 150px;
}
section.companyBox .sectionHead {
	max-width: 59%;
}
.companyList {
	margin: 200px auto 0;
    max-width: 800px;
}
.p-top-company__dl{
	margin:0;
}
.p-top-company__item{
	display: grid;
	grid-template-columns: 115px 1fr;
	border-bottom: 1px solid var(--color-red);
	overflow: hidden;
}
.p-top-company__item:first-child{
	border-top: 1px solid var(--color-red);
}
.p-top-company__item dt{
	margin:0;
    padding: 0.7rem 1rem 0;
    font-weight: 500;
}
.p-top-company__item dd{
	margin:0;
	padding: 0.7rem 1rem;
	background-color: #fff;
}
@media (max-width:767px){
	section.companyBox {
		margin-top: 75px;
	}
	section.companyBox .sectionHead {
		max-width: 81%;
	}
	.companyList {
		margin: 150px auto 0;
		max-width: 250px;
	}
	.p-top-company{
		padding:12px 14px;
	}
	.p-top-company__item{
		grid-template-columns:100px 1fr;
		display: flex;
		flex-direction: column;
		text-align: center;
	}
	.p-top-company__item:first-child {
		border-top: none;
	}
	.p-top-company__item:nth-child(6) {
		border-bottom: 1px solid var(--color-red);
	}
	.p-top-company__item dt {
		    font-weight: 600;
	}
}
@media(max-width:425px){
	.companyList {
		margin: 100px auto 0;
	}
}

/* 沿革 */
.history {
    margin: 200px auto 20px;
    max-width: 800px;
}
.history table,
.history table tr td {
	border: none;
}
.history table tr th {
	width: 105px;
	font-size: 116%;
	color: var(--color-red);
	position: relative;
	text-align: left;
	border: none;
	vertical-align: top;
}
.history table tr th:before {
    content: " ";
    display: block;
    width: 1px;
    background: var(--color-red);
    height: 100%;
    position: absolute;
    top: 16px;
    right: 4px;
}
.history table tr th:after {
    content: " ";
    display: block;
    width: 9px;
    height: 9px;
    background: var(--color-red);
    border-radius: 4.5px;
    position: absolute;
    top: 16px;
    right: 0px;
}
.history table tr td {
	width: calc(100% - 105px);
	font-size: 108%;
}
.history table tr td dl {
	margin: 0 0 10px 5px;
}
.history table tr td dl dt {
	width: 46px;
	padding: 0;
	display: table-cell;
}
.history table tr td dl dd {
	width: calc(100% - 50px);
	display: table-cell;
	border-left: 1px solid #DDD;
	line-height: 140%;
}
.cf:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
.history table tr td dl dd ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 1rem;
}
.history table tr td dl dd ul li {
    margin: 0;
}
@media(max-width:767px){
	.history {
		margin: 100px auto 20px;
	}
	.history table tr th {
		width: 90px;
	}
	.history table tr td dl {
		display: flex;
		flex-wrap: wrap;
	}
	.history table tr td dl dt {
		width: 100%;
	}
	.history table tr td dl dd {
		width: 100%;
		border: none;
	}
	.history table tr td dl dd ul {
		padding-left: 0;
	}
}


/* 問い合わせ */
section.contactBox {
	background-image: url(/wp-content/uploads/2026/01/top-contact-bg-w-scaled.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding-top: 9rem !important;
	padding-bottom: 10rem !important;
}
.contactBox:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: linear-gradient(90deg, #ffe9d2, transparent);
	z-index: -1;
}
.contactBox h2 {
    position: relative;
	margin: 50px 0;
	padding: 0;
	text-align: left;
}
.contactBox h2:after {
	content: "";
	display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
	background-image: url(/wp-content/uploads/2026/01/contact-title.png);
	height: 200px;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
	left: -1.5rem;
}
.contactBox .row {
    margin-top: 4rem;
}
.contact-box {
	border: 2px solid var(--color-red);
	padding: 2rem;
	text-align: center;
	background-color: #ffffffdb;
}
.contact-box p {
    font-size: 1rem;
}
.contactBtn .btn-primary {
    max-width: 100%;
	background-color: var(--color-orange);
	color: #fff;
	border: 1px solid var(--color-orange);
/* 	border-radius: 0; */
	font-size: 1.2rem;
}
.contactBtn .btn-primary:after {
	color: var(--color-orange);
	background-color: #fff;
}
.contactBtn .btn-primary:hover {
	color: var(--color-orange);
	background-color: #fff;
}
@media(max-width:767px){
	section.contactBox {
		padding-top: 2rem !important;
		padding-bottom: 4rem !important;
	}
	.contact-box {
		padding: 1rem;
	}
	.contactBox h2:after {
		height: 100px;
	}
	.contact-box p {
		font-size: 0.9rem;
		line-height: 1.5rem;
		font-weight: 600;
	}
	.contactBtn .btn-primary {
		font-size: 1rem;
		padding: 0.5rem 2.5rem 0.5rem 1rem;
	}
	.btn-primary:after {
		width: 1.5rem;
		height: 1.5rem;
		font-size: 0.9rem;
		right: 10px;
	}
}


/* 投稿 アーカイブ ----------------------------------------------------------- */
.vk_post-btn-display.media .vk_post_body {
    padding-bottom: 0;
}
.vk_post-btn-display .vk_post_btnOuter {
	position: unset;
	margin-top: 1rem;
}
h4.widget-title.sub-section-title {
    font-family: "Noto Sans JP", serif;
    color: var(--color-navy);
    font-weight: 600;
    letter-spacing: 0.1rem;
	margin-bottom: 0.5rem !important;
}
.vk_post .vk_post_btn.btn-primary {
	padding: 0.5rem 2.5rem 0.5rem 1rem;
}
.vk_post .vk_post_btn.btn-primary:after {
	width: 1.2rem;
    height: 1.2rem;
    right: 10px;
	font-size: 0.7rem;
}
.widget_categories > ul li {
    margin-bottom: 0.5rem;
	transition: 0.2s;
}
.widget_categories > ul li a {
    border: 1px solid #ccc;
    padding: 0.65rem 1rem;
}
.widget_categories > ul li:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
.veu_postList .postList_miniThumb .postList_item {
    border: 1px solid #ccc;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
	transition: 0.2s;
}
.veu_postList .postList_miniThumb .postList_item:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
ul.page-numbers {
    border: 1px solid var(--color-red);
    border-radius: 4px;
}
section.recommended-posts {
    margin-top: 100px;
}
h2.recommended-posts__title {
    font-size: 1.1rem;
    color: var(--color-navy);
    font-weight: 600;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1rem;
}
.recommended-posts__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.recommended-posts__item {
	width: calc(50% - 0.3rem);
}
a.recommended-posts__link {
	border: 1px solid var(--color-navy);
    display: block;
	height: 100%;
    padding: 0.5rem;
	transition: 0.2s;
}
a.recommended-posts__link:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
span.recommended-posts__thumb {
	display: block;
	margin-bottom: 0.5rem;
}
span.recommended-posts__thumb img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
span.recommended-posts__ttl {
    font-size: 0.9rem;
    color: #333;
    display: block;
}


/* 投稿 ----------------------------------------------------------- */
.type-post .entry-body,
.type-post .entry-footer,
.vk_post .vk_post_excerpt,
.vk_post .vk_post_btn.btn-primary,
.vk_post_imgOuter_singleTermLabel {
	font-family: "Noto Sans JP", serif;
}
.entry-meta-item-date i {
    display: none;
}
.entry-meta-item-updated, .entry-meta-item-author {
    display: none;
}
aside.relatedPosts {
    margin-top: 100px;
	margin-bottom: 0.5rem;
}
.relatedPosts .relatedPostsTitle {
    font-size: 1.1rem;
    color: var(--color-navy);
    font-weight: 600;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 00.1rem;
}
.relatedPosts .relatedPostsItem {
	transition: 0.2s;
	display: block;
	border: 1px solid #ccc;
	padding: 0.5rem;
	height: 100%;
}
.relatedPosts .relatedPostsItem:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
.relatedPostsThumb img {
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.relatedPostsHeadline {
    font-size: 1rem;
    margin-bottom: 0;
	color: #333;
}
.relatedPosts .relatedPostsItem:hover .relatedPostsHeadline {
	color: var(--color-red);
}
.relatedPostsDate {
	font-size: 0.8rem;
}

/* 投稿ページ　事例 ----------------------------------------------------------- */
.type-support .entry-body {
	font-family: "Noto Sans JP", serif;
}
#ez-toc-container p.ez-toc-title {
    text-align: center;
    display: block;
    margin: 1rem 0;
}
.type-support p + h3,
.type-support ol + h3,
.type-support ul + h3 {
    margin-top: 5rem;
}
.type-support h3:first-of-type {
	margin-top: 4rem;
}
.type-support h3 {
	position: relative;
	padding-left: 2.5rem;
}
.type-support h3:before {
	content: "";
    width: 25px;
    height: 25px;
    background: linear-gradient(125deg, var(--color-red) 35%, #eb8886 45%, var(--color-red) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 100px;
}
.type-support h3:after {
	content: "";
	width: 21px;
	height: 21px;
	display: block;
	position: absolute;
	left: 2px;
    top: 7px;
	border: 3px solid #fff;
	border-radius: 100px;
}
.type-support h4 > .yellow {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 40%);
    background-position: left -100% bottom;
    background-size: 200% 0.5em;
    background-repeat: repeat-x;
}
.type-support h4 + ul {
	margin-top: 0;
}
/* .type-support h3:before {
    content: "";
    width: 200px;
    height: 2px;
    background-color: var(--color-red);
    display: block;
    position: absolute;
    z-index: -1;
    top: -0.5rem;
    left: -0.5rem;
}
.type-support h3:after {
    content: "";
    width: 2px;
    height: 60px;
    display: block;
    background-color: var(--color-orange);
    position: absolute;
    left: 0rem;
    top: -1rem;
    z-index: -2;
} */

/* 会社概要ページ ----------------------------------------------------------- */
.post-name-company .site-body {
	padding-top: 0;
}
.post-name-company section.sectionBox.visionSection {
	background-image: url(/wp-content/uploads/2026/02/yohaku_company.jpg);
}
.post-name-company .visionSection h2 {
	color: var(--color-red);
	margin-top: 0;
	writing-mode: lr;
	text-align: left;
	padding-left: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.post-name-company .visionSection h2 .bg {
    left: 0;
    transform: translate(0, -50%);
    display: block;
	margin-left: -1rem;
}
.post-name-company .visionSection .visionBox {
	width: 84%;
}
/* .post-name-company .visionSection .visionText {
	font-size: 0.9rem;
} */
.representative {
	text-align: right;
	padding-right: 100px;
}
.representative .name {
	font-size: 1.2rem;
}
.strengthsBox {
	counter-reset: number 0;
}
.strengthsBox h3 {
    padding-left: 2rem;
	position: relative;
}
.strengthsBox h3:before {
	counter-increment: number 1;
	content: counter(number) ". "; 
	position: absolute;
	left: 0;
}
.post-name-company .history {
	max-width: 100%;
	margin: 0;
}
section.sectionBox.achievementsSection {
    background-color: #f2f2f2;
}

.achievementsBox h4 {
	font-size: 1.2rem;
}
.achievementsBox {
	overflow: hidden;
}
.achievementsBox .swiper {
	overflow: visible;
}
.achievementsBox .swiper-slide {
	width: 16rem;
}
.achievementsBox .img {
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 3px;
    box-shadow: 2px 2px 6px #ccc;
}
.achievementsBox .img img {
	display: block;
}
.post-name-company .companyList {
	max-width: 100%;
	margin: 0;
}
@media(max-width:767px){
	.post-name-company section.sectionBox.visionSection {
		background-image: url(/wp-content/uploads/2026/02/yohaku_company-tb.jpg);
	}
	.post-name-company .visionSection h2 {
		position: relative;
	}
	.post-name-company .visionSection h2 .bg {
		max-height: 110px;
	}
	.post-name-company .visionSection .visionBox {
		width: auto;
	}
	.representative {
		text-align: left;
	}
	section.strengthsSection {
		padding-bottom: 2rem;
	}
	.achievementsBox h3 {
		text-align: center;
	}
}
@media(max-width:425px){
	.post-name-company section.sectionBox.visionSection {
		background-image: url(/wp-content/uploads/2026/02/yohaku_company-sp.jpg);
	}

}

/* 採用広報ページ ----------------------------------------------------------- */
section.sectionBox.rmStep {
	padding-top: 7rem;
}
.rmBox h2.sectionTitle {
    color: var(--color-red);
}
.rmBox h2.sectionTitle > span {
    display: block;
    color: #333;
    font-size: 1.2rem;
}
h2.capTitle {
    writing-mode: vertical-rl;
	letter-spacing: 0.4rem;
}
p.capText {
	line-height: 2rem;
}
strong.capTextPu {
    line-height: 3.5rem;
    font-size: 1.25rem;
}
@media(max-width:767px){
	section.sectionBox.rmStep {
		padding-top: 4rem;
	}
	h2.capTitle {
        font-size: 1.5rem;
        margin: 0 auto 1rem;
	}
}
.stepCap {
    max-width: 650px;
    margin: 0 auto;
}
.stepCap .stepCap-img img {
	max-height: 250px;
	width: auto;
	display: block;
	margin: 0 0 0 auto;
}
.stepCap-fukidashi {
    margin-bottom: 1rem;
    max-width: 350px;
}
@media(min-width:768px){
	.stepCap p {
		font-size: 1.2rem;
	}
}
.stepCap span.yellow {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 40%);
    background-position: left -100% bottom;
    background-size: 200% 0.5em;
    background-repeat: repeat-x;
}
.stepCap ul {
	margin: 3rem;
	list-style: none;
	padding-left: 0;
}
.stepCap ul li {
	position: relative;
	padding-left: 2.5rem;
}
.stepCap ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background: linear-gradient(125deg, var(--color-red) 35%, #eb8886 45%, var(--color-red) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100px;
}
.stepCap ul li:after {
    content: "";
    width: 21px;
    height: 21px;
    display: block;
    position: absolute;
    left: 2.5px;
    top: 2px;
    border: 3px solid #fff;
    border-radius: 100px;
}
.stepBox {
    background-color: #fff;
    padding: 4rem 3rem 2rem;
    border-radius: 30px;
	position: relative;
	margin-top: 8rem;
	margin-bottom: 4rem;
}
ul.out {
    list-style: none;
    padding-left: 5rem;
	counter-reset: number 0;
}
ul.out > li {
    position: relative;
	margin-bottom: 3rem;
}
ul.out > li:before {
    counter-increment: number 1;
    content: "STEP " counter(number, decimal-leading-zero);
    margin-right: 10px;
    color: var(--color-red);
    font-size: 1.5rem;
    position: absolute;
    left: -5rem;
    line-height: 1.4em;
	font-size: 1.8rem;
}
.stepBox > h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
}
h2.blockTxet {
	display: flex;
	column-gap: 4px;
	font-family: "Noto Sans JP", serif;
	justify-content: center;
}
h2.blockTxet .d-flex {
    column-gap: 4px;
}
h2.blockTxet span {
	color: #fff;
	padding: 0.2rem;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 50px;
	height: 50px;
	font-weight: 500;
	font-size: 2.2rem;
}
h2.blockTxet span.r {
	background-color: var(--color-red);
}
h2.blockTxet span.b {
	background-color: var(--color-navy);
}
.stepBox h3 {
    font-size: 1.8rem;
	margin-bottom: 1rem;
}
ul.in {
	margin-bottom: 0;
	list-style-type: disc;
}
ul.in > li {
    margin: 0;
}
ul.in > li::marker {
    color: var(--color-red);
}
.stepBox .plus {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-red);
}
.stepBoxBottom h3 {
    color: var(--color-navy);
    font-size: 2rem;
}
.stepBoxBottom p {
	font-size: 1.2rem;
}
@media(max-width:767px){
	.stepCap ul {
		margin: 3rem 0rem;
	}
	.stepCap ul li:before {
		width: 20px;
		height: 20px;
	}
	.stepCap ul li:after {
		width: 16px;
		height: 16px;
		left: 2px;
	}
	.stepBox {
		margin-top: 9rem;
		padding: 4rem 1.5rem 2rem;
	}
	.stepBox > h2 {
		top: -3rem;
	}
	ul.out {
		padding-left: 0;
	}
	ul.out > li:before {
		position: unset;
	}
	.stepBox h3 {
		font-size: 1.6rem;
	}
	.stepBox .plus {
		font-size: 2rem;
	}
	.stepBoxBottom h3 {
        font-size: 1.4rem;
	}
	.stepBoxBottom p {
		font-size: 1rem;
	}
	h2.blockTxet {
		flex-wrap: wrap;
		row-gap: 4px;
	}
	h2.blockTxet span {
		width: 40px;
		height: 40px;
		font-size: 1.75rem;
	}
}

.rmFlow {
    max-width: 600px;
    margin: 0 auto;
	counter-reset: number 0;
}
.rmfBox {
    background-color: var(--color-orange);
    padding: 0.25rem;
    margin-bottom: 5rem;
    border-radius: 7px;
	position: relative;
	z-index: 0;
}
.rmfBox:after {
    content: "\f063";
    font-family: 'Font Awesome 7 Free';
    font-weight: 600;
    color: var(--color-orange);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.5rem;
    font-size: 3rem;
	z-index: -1;
}
.rmfBox:last-child:after {
	content: none;
}
.rmfBox h3 {
    color: #fff;
    text-align: center;
	margin-bottom: 0;
    padding: 1.5rem 1rem 0.5rem;
    position: relative;
    z-index: 0;
    font-size: 1.3rem;
}
.rmfBox h3:before {
    content: "";
	width: 50px;
    height: 50px;
    position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
    background-color: var(--color-orange);
	border-radius: 50px;
    display: block;
    z-index: -1;
}
.rmfBox h3:after {
	counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
	width: 40px;
	height: 40px;
	position: absolute;
	top: -21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
	background-color: var(--color-orange);
	border: 3px solid #fff;
	border-radius: 50px;
    color: #fff;
    font-family: "Bebas Neue", "Noto Sans JP", serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rmfBox p {
	background-color: #fff;
	padding: 1rem;
	margin-bottom: 0;
}
.rmFlowBottom > p {
    font-size: 1.3rem;
    font-weight: 600;
}
h2.rmBoxFaqT {
    font-family: "Shippori Mincho", "EB Garamond", "Noto Serif JP", serif;
    position: relative;
	font-size: 2.5rem;
	color: var(--color-navy);
}
h2.rmBoxFaqT > span {
	color: var(--color-red);
}
h2.rmBoxFaqT > span.bg {
    font-size: 11rem;
    font-family: "Bebas Neue", "Noto Sans JP", serif;
    color: #fff;
    font-weight: 500;
    opacity: 0.8;
}
dl.rmFaq {
    padding-left: 4.5rem;
    position: relative;
    border-bottom: 2px solid var(--color-red);
	padding-top: 4rem;
	max-width: 800px;
	margin: 3rem auto;
}
dl.rmFaq:first-of-type {
    margin-top: 0;
}
dl.rmFaq img {
    position: absolute;
	top: 0;
    left: 0;
    height: 6rem;
    display: block;
    width: auto;
}
dl.rmFaq dt {
    font-size: 1.3rem;
    margin-bottom: 2rem;
	color: var(--color-navy);
	font-weight: 500;
}
dl.rmFaq dd {
    margin-bottom: 3rem;
    color: var(--color-red);
}
@media(max-width:767px){
	.rmFlowBottom > p {
		font-size: 1.2rem;
	}
	h2.rmBoxFaqT {
		font-size: 2rem;
	}
	dl.rmFaq {
		padding-left: 0rem;
		padding-top: 0rem;
	}
	dl.rmFaq dt {
		padding-left: 3rem;
		font-size: 1.1rem;
	}
	dl.rmFaq img {
        height: 3rem;
	}
}

/* お問い合わせページ ----------------------------------------------------------- */
.post-name-contact .contactBox {
	display: none;
}
.post-name-thanks .contactBox {
	display: none;
}
dl.contact-list dt p {
    font-size: 1.2rem;
    display: inline-block;
    color: #333;
	margin-bottom: 1rem;
}
dl.contact-list dd {
    max-width: 600px;
    margin: 0 auto;
}
dl.contact-list dd p {
	position: relative;
}
dl.contact-list dd.required p:after {
    content: "必須";
    display: block;
    font-size: 0.9rem;
    width: 100px;
    background-color: var(--vk-color-primary);
    color: #fff;
    border-radius: 100px;
    top: -1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: bold;
	border: 2px solid #fff;
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url], select, textarea {
    border-radius: 30px;
    border: 2px solid var(--color-navy);
}

/* お問い合わせ種別（btn-select）だけをボタン型に */
.wpcf7-form .btn-select.wpcf7-radio{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	padding-top: 2rem;
}
.wpcf7-form .btn-select.wpcf7-radio .wpcf7-list-item{
	margin:0;
	display: block;
	width: calc(50% - 5px);
}
.wpcf7-form .btn-select.wpcf7-radio input[type="radio"]{
	position:absolute;
	opacity:0;
	pointer-events:none;
}
.wpcf7-form .btn-select.wpcf7-radio label{
    display: block;
    text-align: center;
	overflow: hidden;
    border: 2px solid var(--color-navy);
	border-radius: 50px;
	background:#fff;
	cursor:pointer;
	user-select:none;
	line-height:1.2;
	transition:background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.wpcf7-form .btn-select.wpcf7-radio label:hover{
	border-color:#9a9a9a;
}
.wpcf7-form .btn-select.wpcf7-radio input[type="radio"] + .wpcf7-list-item-label{
	padding: 15px;
	display: block;
	width: 100%;
	height: 100%;
}
.wpcf7-form .btn-select.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label{
	background-color: var(--color-navy);
	color:#fff;
}
.wpcf7-form .btn-select.wpcf7-radio input[type="radio"]:focus-visible + .wpcf7-list-item-label{
	outline:2px solid #111;
	outline-offset:2px;
}
