@charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
	--font-primary: "TazuganeGothicStdN-Light", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
	--font-primary-strong: 'Work Sans', "TazuganeGothicStdN-Medium", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
	--font-secondary: "Overpass", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
	--c-body: #213764; 
	--c-primary: #1bb4e8;
	--c-secondary: #a9c4d4;
	--c-bk: #2f3030;
	--c-bk02: #5c6163;
	--bg-color: #f0f7fb;
	--border-color: #cedce0;
	--sec-block-lg: 180px;
	--sec-block-md: 100px;
	--sec-inline-md: 100px;
}
@media screen and (max-width: 1440px) {
	:root {
		--sec-block-lg: 160px;
		--sec-block-md: 60px;
		--sec-inline-md: 60px;
	}
}
@media screen and (max-width: 1280px) {
	:root {
		--sec-block-lg: 140px;
	}
}
@media screen and (max-width: 960px) {
	:root {
		--sec-block-lg: 110px;
		--sec-block-md: 50px;
		--sec-inline-md: 50px;
	}
}
@media screen and (max-width: 768px) {
	:root {
		--sec-block-lg: 90px;
		--sec-block-md: 20px;
		--sec-inline-md: 20px;
	}
}
@media screen and (max-width: 600px) {
	:root {
		--sec-block-lg: 70px;
	}
}

/* Base
------------------------------------------------- */
* {
	font-weight: 400;
	font-style: normal;
	font-family: var(--font-primary);
	margin: 0;
	padding: 0;
	line-height: 2;
	letter-spacing: .1em;
	color: var(--c-body);
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 16px;
	font-size: 1.6rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-display: swap;
	overflow-x: hidden;
	background: var(--bg-color);
}
@media screen and (max-width: 960px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
html.is-overflow,
body.is-overflow {
	width: 100%;
	position: fixed !important;
	overflow: hidden;
}
img {
	border: 0;
	vertical-align: bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}


/* =================================================
Animation
================================================= */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes translate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform : translate(0, 0);
	}
}
@keyframes blur {
	0% {
		opacity: 0;
		-ms-filter: blur(10px);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		-ms-filter: blur(0);
		filter: blur(0);
	}
}
.-fadein {
	opacity: 0;
}
.-translate {
	opacity: 0;
	transform : translate(0, 5px);
}
.-blur {
	opacity: 0;
}
.fv-fadein {
	opacity: 0;
	animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}
.fv-translate {
	opacity: 0;
	animation: translate 0.3s ease-in-out 0.5s forwards;
}
.fv-blur {
	opacity: 0;
	animation: blur 0.5s ease-in-out 0.5s forwards;
}
.js-effect__fade {
	animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}
.js-effect__blur {
	animation: blur 0.2s ease-in-out 0.5s forwards;
}
.js-effect__translate {
	animation: translate 0.5s ease-in-out 0.5s forwards;
}


/* =================================================
Layout
================================================= */
#l-container {
	overflow: hidden;
}

/* Header
------------------------------------------------- */
.l-header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.l-header__inner {
	width: 100%;
	padding-block: var(--sec-block-md) 25px;
	padding-inline: var(--sec-inline-md);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: fixed;
	opacity: 0;
	animation: blur 1.2s ease-in-out 1.0s forwards;
	transition: all .5s ease-in-out;
}
.l-header.is-active .l-header__inner {
	padding-block: 25px;
	padding-inline: 25px;
}
.l-header.is-back .l-header__inner {
	padding-block: 25px;
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.01) 99%,rgba(255,255,255,0) 100%);
}
.l-header__logo {
	width: 354px;
	position: relative;
	transition: width .3s ease-in-out;
}
.l-header__logo img {
	width: 100%;
	transition: opacity .5s ease-in-out;
}
.l-header-logo__wt {
	opacity: 1;
}
.l-header-logo__bk {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.l-header.is-back .l-header-logo__wt {
	opacity: 0;
}
.l-header.is-back .l-header-logo__bk {
	opacity: 1;
}
.l-header__unit {
	display: flex;
	gap: 10px;
}

@media screen and (max-width: 1280px) {
	.l-header__logo {
		width: 283px;
	}
}
@media screen and (max-width: 960px) {
	.l-header__inner {
		align-items: center;
	}
	.l-header__logo {
		width: 226px;
	}
}
@media screen and (max-width: 768px) {
	.l-header.is-active .l-header__inner {
		padding-inline: var(--sec-inline-md);
	}
	.l-header.is-back .l-header__inner {
		padding-block: 20px;
	}
}
@media screen and (max-width: 600px) {
	.l-header__logo {
		width: 181px;
	}
}

/* Button */
.l-header-btn__txt {
	position: absolute;
	top: -23px;
	left: 50%;
	color: #fff;
	transform: translateX(-50%);
	transition: opacity .3s ease-in-out;
}
.l-header.is-active .l-header-btn__txt {
	opacity: 0;
}
.l-header-btn__txt:before,
.l-header-btn__txt:after {
	background: #fff;
}
.l-header-btn__inner:before,
.l-header-btn__inner:after {
	transition: all .3s ease-in-out;
}
.l-header-btn__inner:before {
	background: url(../images/btn_line_wt_lt.svg) no-repeat 0 0 / 100%;
}
.l-header-btn__inner:after {
	background: url(../images/btn_line_wt_rt.svg) no-repeat 0 0 / 100%;
}
.l-header-btn__inner span {
	color: #fff;
	background: url(../images/ico_mail_wt.svg) no-repeat center right / 20px 13px;
}
.l-header-btn__inner span:before,
.l-header-btn__inner span:after {
	width: calc(100% + 32px);
	height: 1px;
	content: '';
	position: absolute;
	background: #fff;
	transition: transform .4s ease;
}
.l-header-btn__inner span:before {
	top: -12px;
	left: -16px;
	transform: scale(0, 1);
	transform-origin: right top;
}
.l-header-btn__inner span:after {
	right: -16px;
	bottom: -13px;
	transform: scale(0, 1);
	transform-origin: left bottom;
}

.l-header.is-back .l-header-btn__inner:before {
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .l-header-btn__inner:after {
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .l-header-btn__inner span {
	color: var(--c-bk);
	background: url(../images/ico_mail_bk.svg) no-repeat center right / 20px 13px;
}
.l-header.is-back .l-header-btn__inner span:before,
.l-header.is-back .l-header-btn__inner span:after {
	background: var(--c-bk);
}

.l-header__btn--sp {
	width: 64px;
	height: 28px;
	display: none;
}
.l-header__btn--sp a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all .3s ease-in-out;
}
.l-header__btn--sp a:before,
.l-header__btn--sp a:after {
	width: 14px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
	transition: all .3s ease-in-out;
}
.l-header__btn--sp a:before {
	left: 0;
	background: url(../images/btn_line_wt_lt.svg) no-repeat 0 0 / 100%;
}
.l-header__btn--sp a:after {
	right: 0;
	background: url(../images/btn_line_wt_rt.svg) no-repeat 0 0 / 100%;
}
.l-header__btn--sp img {
	width: 20px;
	height: 13px;
	transition: all .3s ease-in-out;
}
.l-header-btn__wt {
	opacity: 1;
}
.l-header-btn__bk {
	margin-top: -6px;
	margin-left: -10px;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
}

.l-header.is-back .l-header__btn--sp a:before {
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .l-header__btn--sp a:after {
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .l-header-btn__wt {
	opacity: 0;
}
.l-header.is-back .l-header-btn__bk {
	opacity: 1;
}


@media (hover: hover) and (pointer: fine) {
	.l-header-btn__inner:hover span:before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
	.l-header-btn__inner:hover span:after {
		transform: scale(1, 1);
		transform-origin: right bottom;
	}
}

@media screen and (max-width: 960px) {
	.l-header-btn__inner span:before,
	.l-header-btn__inner span:after {
		width: calc(100% + 12px);
		height: 1px;
		content: '';
		position: absolute;
		background: #fff;
		transition: transform .4s ease;
	}
	.l-header-btn__inner span:before {
		top: -9px;
		left: -6px;
	}
	.l-header-btn__inner span:after {
		right: -6px;
		bottom: -11px;
	}
}
@media screen and (max-width: 768px) {
	.l-header__btn {
		display: none;
	}
	.l-header__btn--sp {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.l-header__btn--sp {
		width: 50px;
	}
}

/* ---------- Global Nav ----------*/
.l-header__nav {
	position: absolute;
	top: 250px;
	right: var(--sec-inline-md);
	z-index: -1;
	transition: all .5s ease-in-out;
	opacity: 0;
	animation: blur 1.2s ease-in-out 1.0s forwards;
}
.l-header-nav__li {
	margin-bottom: 25px;
	text-align: right;
	overflow: hidden;
	width: fit-content;
}
.l-header-nav__li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.l-header-nav__li a {
	display: block;
	color: #fff;
	font-family: var(--font-primary-strong);
	font-weight: 700;
	letter-spacing: .3em;
	line-height: 1;
	transition: all .3s ease-in-out;
	position: relative;
	/*padding-left: 20px;*/
}
/*.l-header-nav__li a:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	width: 10px;
	height: 1px;
	content: '';
	background: #fff;
	transition: .3s ease-in-out;
	opacity: 0;
}*/
.l-header-nav__li a:after {
	width: 10px;
	height: 1px;
	margin-left: 20px;
	content: '';
	display: inline-block;
	background: #fff;
	transform: translateY(-4px);
	transition: .3s ease-in-out;
	opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
	.l-header-nav__li a:hover {
		transform: translateX(10px);
	}
	/*.l-header-nav__li a:hover:before {
		opacity: 1;
	}*/
	.l-header-nav__li a:hover:after {
		opacity: 0;
	}
}

@media screen and (max-width: 1440px) {
	.l-header__nav {
		top: 150px;
	}
}
@media screen and (max-width: 960px) {
	.l-header__nav {
		top: 125px;
	}
}
@media screen and (max-width: 768px) {
	.l-header__nav {
		display: none;
	}
}

/* ---------- Sp Nav ----------*/
.l-gnav {
	display: none;
	width: 100%;
	height: 100vh;
	height: 100svh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: #e8eff3;
}
.l-gnav__outer {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
.l-gnav__img {
	width: calc(100% - 670px);
}
.l-gnav__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.l-gnav__inner {
	width: 670px;
	height: 100%;
	position: relative;
	background: var(--bg-color);
	overflow-y: auto;
}
.l-gnav__inner:after {
	width: 883px;
	aspect-ratio: 883 / 722;
	content: '';
	position: fixed;
	bottom: -10px;
	left: -165px;
	z-index: 0;
	background: url(../images/logo_lg.png) no-repeat 0 0 / 100%;
	opacity: .03;
	pointer-events: none;
}
.l-gnav__main {
	width: 100%;
	padding: 60px;
}
.l-gnav__logo {
	width: 278px;
	margin-bottom: 60px;
}
.l-gnav__logo img {
	width: 100%;
}

.l-nav-list__ul {
    margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--border-color);
}
.l-nav-list__li {
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
}
.l-nav-list__li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.l-nav-list__li a {
	display: block;
    transition: .3s ease-in-out;
    position: relative;
}
.l-nav-list__li a:before {
	position: absolute;
	content: "";
    width: 10px;
    height: 1px;
    top: 8px;
    left: -20px;
    background: var(--c-primary);
}
.l-nav-list-li__ja,
.l-nav-list-li__en {
	display: block;
	line-height: 1;
}
.l-nav-list-li__ja {
	margin-bottom: 10px;
	font-family: var(--font-primary-strong);
	font-size: 1.8rem;
	font-weight: 700;
	transition: color .3s ease-in-out;
}
.l-nav-list-li__en {
	color: var(--c-primary);
	font-family: var(--font-primary);
	font-size: 1.2rem;
	font-weight: 200;
	letter-spacing: .05em;
}

.l-nav-list__sub {
	margin-bottom: 80px;
	display: flex;
	gap: 0 35px;
}
.l-nav-list-sub__li {
    overflow: hidden;
}
.l-nav-list-sub__li a {
    display: block;
    color: var(--c-bk);
	font-family: var(--font-primary-strong);
	font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .3em;
    line-height: 1;
    transition: .3s ease-in-out;
}
.l-nav-list-sub__li a:after {
    width: 10px;
    height: 1px;
    margin-left: 20px;
    content: '';
    display: inline-block;
    background: var(--c-primary);
    vertical-align: 4px;
}

@media (hover: hover) and (pointer: fine) {
	.l-nav-list__li a:hover .l-nav-list-li__ja {
		color: var(--c-primary);
	}
	.l-nav-list__li a:hover {
		transform: translateX(20px);
	}
	.l-nav-list-sub__li a:hover {
		color: var(--c-primary);
		transform: translateX(10px);
	}
}

.l-gnav__btnarea {
	display: flex;
	align-items: flex-end;
}
.l-gnav__btn {
	margin-right: 15px;
}
.l-gnav-btn__txt {
	margin-bottom: 10px;
	display: block;
	color: var(--c-primary);
	text-align: center;
}
.l-gnav-btn__txt:before,
.l-gnav-btn__txt:after {
	background: var(--c-primary);
}

.l-gnav__btn,
.l-gnav__tel {
	width: 250px !important;
}
.l-gnav-btn__inner span {
	padding-right: 25px !important;
}
.l-gnav-btn__inner:before {
	background: url(../images/btn_line_b_lt.svg) no-repeat 0 0 / 100%;
}
.l-gnav-btn__inner:after {
	background: url(../images/btn_line_b_rt.svg) no-repeat 0 0 / 100%;
}
.l-gnav-btn__inner span {
	padding-right: 35px;
	position: relative;
	color: var(--c-primary);
	background: url(../images/ico_mail_b.svg) no-repeat center right / 20px 13px;
}
.l-gnav-btn__inner span:before,
.l-gnav-btn__inner span:after {
	width: calc(100% + 32px);
    height: 1px;
    content: '';
    position: absolute;
	background: var(--c-primary);
    transform: scale(0, 1);
    transition: transform .4s ease;
}
.l-gnav-btn__inner span:before {
    top: -12px;
    left: -16px;
    transform-origin: right top;
}
.l-gnav-btn__inner span:after {
    right: -16px;
    bottom: -13px;
    transform-origin: left bottom;
}

.l-gnav__tel {
	position: relative;
}
.l-gnav__tel:before,
.l-gnav__tel:after {
	width: 22px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
}
.l-gnav__tel:before {
	left: 0;
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-gnav__tel:after {
	right: 0;
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}

.l-gnav-tel__inner,
.l-gnav-tel__inner span.l-gnav-tel__num {
	color: var(--c-bk);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
	transition: all .3s ease-in-out;
}
.l-gnav-tel__inner {
	padding-block: 14px 10px !important;
	display: block;
	position: relative;
	font-size: 1.2rem;
	text-align: center;
	transition: all .3s ease-in-out;
	border-radius: 22px;
	overflow: hidden;
}
.l-gnav-tel__inner:before,
.l-gnav-tel__inner:after {
	width: calc(100% - 44px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-bk);
	transform: scale(0, 1);
	transition: transform .4s ease;
}
.l-gnav-tel__inner:before {
	top: 0;
	left: 22px;
	transform-origin: right top;
}
.l-gnav-tel__inner:after {
	right: 22px;
	bottom: 0;
	transform-origin: left bottom;
}

.l-gnav-tel__inner span.l-gnav-tel__num {
	margin-left: 5px;
	padding-right: 0;
	font-size: 2rem;
	letter-spacing: .05em;
}

@media (hover: hover) and (pointer: fine) {
	.l-gnav-btn__inner:hover span:before,
	.l-gnav-btn__inner:hover span:after {
		transform: scale(1, 1);
	}
	.l-gnav-btn__inner:hover span:before {
		transform-origin: left top;
	}
	.l-gnav-btn__inner:hover span:after {
		transform-origin: right bottom;
	}
	.l-gnav-tel__inner:hover:before,
	.l-gnav-tel__inner:hover:after {
		transform: scale(1, 1);
	}
	.l-gnav-tel__inner:hover:before {
		transform-origin: left top;
	}
	.l-gnav-tel__inner:hover:after {
		transform-origin: right bottom;
	}
}


@media screen and (max-width: 1440px) {
	.l-gnav__inner:after {
		width: 795px;
		bottom: -9px;
		left: -145px
	}
}
@media screen and (max-width: 1280px) {
	.l-gnav__img {
		width: calc(100% - 540px);
	}
	.l-gnav__inner {
		width: 540px;
	}
	.l-gnav__inner:after {
		width: 705px;
		bottom: -8px;
		left: -130px;
	}
	.l-gnav__main {
		padding: 40px;
	}
}
@media screen and (max-width: 960px) {
	.l-gnav__outer {
		width: 100%;
	}
	.l-gnav__img {
		display: none;
	}
	.l-gnav__inner {
		width: 100%;
	}
	.l-gnav__inner:after {
		width: 565px;
		bottom: -7px;
		left: -105px;
	}
	.l-gnav__logo {
		width: 222px
	}
	.l-nav-list__ul {
		margin-bottom: 35px;
		padding-bottom: 35px;
	}
	.l-nav-list__sub {
		margin-bottom: 60px;
	}
	.l-gnav__btn,
	.l-gnav__tel {
		width: 230px !important;
	}
	.l-gnav-btn__inner span:before,
	.l-gnav-btn__inner span:after {
		width: calc(100% + 26px);
	}
	.l-gnav-btn__inner span:before {
		top: -9px;
		left: -18px;
	}
	.l-gnav-btn__inner span:after {
		right: -18px;
		bottom: -11px;
	}
	.l-gnav__tel:before,
	.l-gnav__tel:after {
		width: 18px;
	}
	.l-gnav-tel__inner {
		padding-block: 9px 7px !important;
	}
	.l-gnav-tel__inner:before,
	.l-gnav-tel__inner:after {
		width: calc(100% - 36px);
	}
	.l-gnav-tel__inner:before {
		left: 18px;
	}
	.l-gnav-tel__inner:after {
		right: 18px;
	}
}
@media screen and (max-width: 768px) {
	.l-gnav__inner:after {
		width: 452px;
		bottom: -6px;
		left: -85px;
	}
	.l-gnav__main {
		padding: 20px;
	}
	.l-gnav__logo {
		width: 178px;
		margin-bottom: 45px;
	}
	.l-nav-list__li {
		margin-bottom: 25px;
	}
	.l-nav-list-li__ja {
		font-size: 1.6rem;
	}
	.l-nav-list-li__en {
		font-size: 1rem;
	}
	.l-nav-list__sub {
		align-items: center;
		gap: 0 30px;
	}
	.l-nav-list-sub__li a {
		font-size: 1.3rem;
		letter-spacing: .1em;
	}
	.l-gnav-tel__inner span.l-gnav-tel__num {
		font-size: 1.8rem;
	}
	.l-gnav-tel__inner {
		padding-block: 11px 8px !important;
	}
	.l-gnav-btn__inner span:before,
	.l-gnav-btn__inner span:after,
	.l-gnav-tel__inner:before,
	.l-gnav-tel__inner:after {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.l-gnav__btnarea {
		flex-direction: column;
		align-items: center;
	}
	.l-gnav__btn {
		margin: 0 0 15px;
	}
}


/* Footer
------------------------------------------------- */
.l-footer {
	padding-bottom: 110px;
	position: relative;
	z-index: 0;
}
.l-footer:after {
	width: 883px;
	aspect-ratio: 883 / 722;
	content: '';
	position: absolute;
	bottom: -10px;
	left: -165px;
	z-index: -1;
	background: url(../images/logo_lg.png) no-repeat 0 0 / 100%;
	opacity: .03;
}

@media screen and (max-width: 1440px) {
	.l-footer {
		padding-bottom: 90px;
	}
	.l-footer:after {
		width: 795px;
		bottom: -9px;
		left: -145px
	}
}
@media screen and (max-width: 1280px) {
	.l-footer {
		padding-bottom: 70px;
	}
	.l-footer:after {
		width: 705px;
		bottom: -8px;
		left: -130px;
	}
}
@media screen and (max-width: 960px) {
	.l-footer {
		padding-bottom: 60px;
	}
	.l-footer:after {
		width: 565px;
		bottom: -7px;
		left: -105px;
	}
}
@media screen and (max-width: 768px) {
	.l-footer {
		padding-bottom: 20px;
	}
	.l-footer:after {
		width: 452px;
		bottom: -6px;
		left: -85px;
	}
}

/*----- Contact -----*/
.l-footer__ctc {
	margin-bottom: 170px;
	padding-block: 200px;
	display: flex;
	position: relative;
	border-bottom: 1px solid var(--border-color);
}
.l-footer__ctc:after {
	width: 100%;
	content: 'HIROSHI TAKAHASHI TAX ACCOUNTANT OFFICE';
	position: absolute;
	bottom: -14px;
	left: calc(50% + .15em);
	color: #cedce0;
	font-family: var(--font-secondary);
	font-size: 5.1rem;
	letter-spacing: .3em;
	line-height: 1;
	text-align: center;
	transform: translateX(-50%);
	opacity: .3;
}
.l-footer-ctc__hdr {
	width: 495px;
	padding-block: 30px 20px;
	padding-right: 50px;
	position: relative;
}
.l-footer-ctc__hdr:after {
	width: 1px;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--border-color);
}
.l-footer-ctc-hdr__ttl {
	margin-bottom: 20px;
}
.l-footer-ctc-hdr-ttl--ja,
.l-footer-ctc-hdr-ttl--en {
	display: block;
	color: var(--c-bk);
	line-height: 1;
}
.l-footer-ctc-hdr-ttl--ja {
	margin-bottom: 30px;
	font-family: var(--font-primary-strong);
	font-size: 1.8rem;
	font-weight: 700;
}
.l-footer-ctc-hdr-ttl--en {
	font-family: var(--font-secondary);
	font-size: 5rem;
	font-weight: 200;
}
.l-footer-ctc-hdr__txt {
	color: var(--c-bk);
}
.l-footer-ctc__cont {
	width: calc(100% - 495px);
	display: flex;
	justify-content: flex-start;
	padding-inline: 120px 50px;
	gap: 0 130px;
	gap: 0 100px;
}
.l-footer-ctc__info,
.l-footer-ctc__mail {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.l-footer-ctc-info__tel,
.l-footer-ctc-info__tel a {
	color: var(--c-bk);
	font-family: var(--font-secondary);
	font-weight: 200;
	letter-spacing: 0;
	line-height: 1;
}
.l-footer-ctc-info__tel {
	margin-bottom: 5px;
	font-size: 2rem;
}
.l-footer-ctc-info__tel--sp {
	display: none;
}
.l-footer-ctc-info__tel:before,
.l-footer-ctc-info__tel--sp:before {
	width: 27px;
	aspect-ratio: 192 / 234;
	margin: 0 auto 30px;
	content: '';
	display: block;
	background: url(../images/ico_tel_b.svg) no-repeat 0 0 / 100%;
}
.l-footer-ctc-info__tel a {
	margin-left: 3px;
	font-size: 5rem;
}
.l-footer-ctc-info__addr {
	color: #121212;
	font-weight: 500;
	line-height: 1.5;
}
.l-footer-ctc-mail__btn {
	position: relative;
}
.l-footer-ctc-mail__btn:before {
	width: 40px;
	aspect-ratio: 35 / 25;
	margin: 0 auto 24px;
	content: '';
	display: block;
	background: url(../images/ico_mail_b.svg) no-repeat 0 0 / 100%;
}
.l-footer-ctc-mail-btn__inner {
	width: 514px;
	display: block;
	position: relative;
	border-radius: 40px;
	overflow: hidden;
}
.l-footer-ctc-mail-btn__inner:before,
.l-footer-ctc-mail-btn__inner:after {
	width: calc(100% - 80px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-primary);
	transform: scale(0, 1);
	transition: transform .4s ease;
}
.l-footer-ctc-mail-btn__inner:before {
	top: 0;
	left: 40px;
	transform-origin: right top;
}
.l-footer-ctc-mail-btn__inner:after {
	right: 40px;
	bottom: 0;
	transform-origin: left bottom;
}
.l-footer-ctc-mail-btn__inner span {
	padding: 31px 25px 29px 0;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-family: var(--font-primary-strong);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: url(../images/ico_mail_b.svg) no-repeat right 65px center / 26px 18px;
	transition: color .3s ease-in-out;
}
.l-footer-ctc-mail-btn__inner span:before,
.l-footer-ctc-mail-btn__inner span:after {
	width: 40px;
	aspect-ratio: 1 / 2;
	content: '';
	position: absolute;
	top: 0;
}
.l-footer-ctc-mail-btn__inner span:before {
	left: 0;
	background: url(../images/btn_line_b_lt_lg.svg) no-repeat 0 0 / 100%;
}
.l-footer-ctc-mail-btn__inner span:after {
	right: 0;
	background: url(../images/btn_line_b_rt_lg.svg) no-repeat 0 0 / 100%;
}

@media (hover: hover) and (pointer: fine) {
	.l-footer-ctc-mail-btn__inner:hover:before,
	.l-footer-ctc-mail-btn__inner:hover:after {
		transform: scale(1, 1);
	}
	.l-footer-ctc-mail-btn__inner:hover:before {
		transform-origin: left top;
	}
	.l-footer-ctc-mail-btn__inner:hover:after {
		transform-origin: right bottom;
	}
}

@media screen and (max-width: 1920px) {
	.l-footer__ctc:after {
		bottom: -0.73vw;
		font-size: 2.65vw;
		letter-spacing: .25em;
	}
	.l-footer-ctc-mail-btn__inner {
		width: 400px;
	}
	.l-footer-ctc-mail-btn__inner:before,
	.l-footer-ctc-mail-btn__inner:after {
		width: calc(100% - 64px);
	}
	.l-footer-ctc-mail-btn__inner:before {
		left: 32px;
	}
	.l-footer-ctc-mail-btn__inner:after {
		right: 32px;
		bottom: 1px;
	}
	.l-footer-ctc-mail-btn__inner span {
		padding: 25px 25px 24px 0;
		font-size: 1.6rem;
		background: url(../images/ico_mail_b.svg) no-repeat right 50px center / 21px 14px;
	}
	.l-footer-ctc-mail-btn__inner span:before,
	.l-footer-ctc-mail-btn__inner span:after {
		width: 32px;
	}
}
@media screen and (max-width: 1919px) {
	.l-footer-ctc__hdr {
		width: 28.78%;
	}
	.l-footer-ctc__cont {
		width: calc(100% - 28.78%);
	}
	.l-footer-ctc-info__tel a {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 1680px) {
	.l-footer-ctc-hdr-ttl--en {
		font-size: 4.5rem;
	}
	.l-footer-ctc__cont {
		padding-inline: 50px 0;
		gap: 0 20px;
	}
	.l-footer-ctc-mail-btn__inner span:after {
		margin-left: 10px;
	}
}
@media screen and (max-width: 1440px) {
	.l-footer__ctc {
		margin-bottom: 140px;
		padding-block: 160px;
	}
	.l-footer-ctc-hdr-ttl--ja {
		margin-bottom: 35px;
		font-size: 1.6rem;
	}
	.l-footer-ctc-mail-btn__inner {
		width: 380px;
	}
	.l-footer-ctc-mail-btn__inner span {
		letter-spacing: 0em;
	}
}
@media screen and (max-width: 1280px) {
	.l-footer__ctc {
		margin-bottom: 110px;
		padding-block: 130px;
	}
	.l-footer-ctc-hdr-ttl--en {
		font-size: 4rem;
	}
	.l-footer-ctc-info__tel a {
		font-size: 4rem;
	}
	.l-footer-ctc-info__tel:before {
		width: 22px;
		margin: 0 auto 24px;
	}
	.l-footer-ctc-mail__btn:before {
		width: 32px;
		margin: 0 auto 20px;
	}
}
@media screen and (max-width: 1279px) {
	.l-footer__ctc {
		flex-direction: column;
	}
	.l-footer-ctc__hdr {
		width: 100%;
		padding-block: 0 50px;
		padding-right: 0;
		text-align: center;
	}
	.l-footer-ctc__hdr:after {
		display: none;
	}
	.l-footer-ctc__cont {
		width: 100%;
		padding-inline: 0;
		justify-content: center;
		gap: 0 50px;
	}
}
@media screen and (max-width: 960px) {
	.l-footer__ctc {
		margin-bottom: 90px;
		padding-block: 100px;
	}
	.l-footer-ctc__hdr {
		padding-block: 0 40px;
	}
	.l-footer-ctc-hdr-ttl--ja {
		margin-bottom: 25px;
		font-size: 1.4rem;
	}
	.l-footer-ctc-hdr-ttl--en {
		font-size: 3.2rem;
	}
	.l-footer-ctc-info__tel {
		font-size: 1.8rem;
	}
	.l-footer-ctc-info__tel a {
		font-size: 3.2rem;
	}
	.l-footer-ctc-info__tel a {
		font-size: 2.6rem;
	}
	.l-footer-ctc-info__tel:before {
		width: 18px;
		margin: 0 auto 20px;
	}
	.l-footer-ctc-mail__btn:before {
		width: 26px;
		margin: 0 auto 16px;
	}
	.l-footer-ctc-mail-btn__inner {
		width: 330px;
	}
	.l-footer-ctc-mail-btn__inner:before,
	.l-footer-ctc-mail-btn__inner:after {
		width: calc(100% - 40px);
	}
	.l-footer-ctc-mail-btn__inner:before {
		left: 20px;
	}
	.l-footer-ctc-mail-btn__inner:after {
		right: 20px;
	}
	.l-footer-ctc-mail-btn__inner span {
		padding: 12px 24px 13px 0;
		background: url(../images/ico_mail_b.svg) no-repeat right 27px center / 21px 14px;
	}
	.l-footer-ctc-mail-btn__inner span:before,
	.l-footer-ctc-mail-btn__inner span:after {
		width: 20px;
	}
}
@media screen and (max-width: 768px) {
	.l-footer__ctc {
		margin-bottom: 70px;
		padding-block: 80px;
	}
	.l-footer__ctc:after {
		width: 100%;
		content: 'HIROSHI TAKAHASHI';
		position: absolute;
		left: calc(50% + .15em);
		color: #cedce0;
		line-height: 1;
		text-align: center;
		transform: translateX(-50%);
		opacity: .3;
		bottom: -1.5vw;
		font-size: 5.65vw;
		letter-spacing: .25em;
	}
	.l-footer-ctc__hdr {
		padding-block: 0 30px;
	}
	.l-footer-ctc-hdr-ttl--ja {
		margin-bottom: 20px;
		font-size: 1.2rem;
	}
	.l-footer-ctc-hdr-ttl--en {
		font-size: 2.6rem;
	}
	.l-footer-ctc-info__tel {
		font-size: 1.6rem;
	}
	.l-footer-ctc-info__tel:before,
	.l-footer-ctc-info__tel--sp:before {
		width: 14px;
		margin: 0 auto 15px;
	}
	.l-footer-ctc-mail__btn:before {
		width: 21px;
		margin: 0 auto 12px;
	}
	.l-footer-ctc-mail-btn__inner {
		width: 290px;
	}
	.l-footer-ctc-mail-btn__inner:before,
	.l-footer-ctc-mail-btn__inner:after {
		display: none;
	}
	.l-footer-ctc-mail-btn__inner span {
		padding: 19px 33px 20px 0;
		font-size: 1.4rem;
		background: url(../images/ico_mail_b.svg) no-repeat right 26px center / 21px 14px;
	}
	.l-footer-ctc-mail-btn__inner span:before,
	.l-footer-ctc-mail-btn__inner span:after {
		width: 26px;
	}
}
@media screen and (max-width: 767px) {
	.l-footer-ctc__cont {
		flex-direction: column;
	}
	.l-footer-ctc__info {
		margin-bottom: 30px;
	}
	.l-footer-ctc-info__tel {
		display: none;
	}
	.l-footer-ctc-info__tel--sp {
		width: 290px;
		margin-bottom: 10px;
		display: block;
	}
	.l-footer-ctc-info__tel--sp a,
	.l-footer-ctc-info__tel--sp a span {
		color: var(--c-bk);
		font-family: var(--font-secondary);
		font-weight: 200;
		letter-spacing: 0;
		line-height: 1;
		transition: all .3s ease-in-out;
	}
	.l-footer-ctc-info__tel--sp a {
		padding: 15px 35px 13px;
		display: block;
		position: relative;
		border-radius: 40px;
		overflow: hidden;
	}
	.l-footer-ctc-info__tel--sp span {
		margin-left: 4px;
		font-size: 2.4rem;
	}
	.l-footer-ctc-info__tel--sp a:before,
	.l-footer-ctc-info__tel--sp a:after {
		width: 26px;
		aspect-ratio: 1 / 2;
		content: '';
		position: absolute;
		top: 0;
	}
	.l-footer-ctc-info__tel--sp a:before {
		left: 0;
		background: url(../images/btn_line_bk_lt_lg.svg) no-repeat 0 0 / 100%;
	}
	.l-footer-ctc-info__tel--sp a:after {
		right: 0;
		background: url(../images/btn_line_bk_rt_lg.svg) no-repeat 0 0 / 100%;
	}
}

/*----- Main -----*/
.l-footer__upper {
	margin-bottom: 100px;
	display: flex;
	justify-content: space-between;
}
.l-footer__logo {
	width: 348px;
	margin-bottom: 70px;
}
.l-footer__logo img {
	width: 100%;
}
.l-footer__addr {
	margin-bottom: 10px;
	color: var(--c-bk);
	font-weight: 500;
	letter-spacing: .3em;
	line-height: 1.5;
}
.l-footer__tel {
	display: flex;
}
.l-footer__tel dt,
.l-footer-tel__num {
	color: var(--c-bk);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
}
.l-footer__tel dt {
	padding-top: 8px;
}
.l-footer__tel dd {
	padding-left: 5px;
}
.l-footer-tel__num {
	font-size: 2.4rem;
}

.l-footer__lower {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.l-footer-lower__txt,
.l-footer-lower__txt a,
.l-footer-lower__copy {
	color: var(--c-bk);
	font-size: 1.4rem;
}
.l-footer-lower__txt {
	font-weight: 500;
	line-height: 1.4;
}
.l-footer-lower__txt a {
	text-decoration: underline;
}
.l-footer-lower__copy {
	line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
	.l-footer-lower__txt a:hover {
		text-decoration: none;
	}
}

@media screen and (max-width: 960px) {
	.l-footer__upper {
		margin-bottom: 80px;
		flex-direction: column;
		align-items: center;
	}
	.l-footer__logogroup {
		order: 2;
	}
	.l-footer__logo {
		width: 278px;
		margin-bottom: 30px;
	}
	.l-footer__addr {
		text-align: center;
	}
	.l-footer__tel {
		justify-content: center;
	}
	.l-footer__navgroup {
		margin-bottom: 50px;
		order: 1;
	}
	.l-footer__btn {
		margin-bottom: 30px;
		margin-inline: auto;
	}
	.l-footer__lower {
		flex-direction: column;
		align-items: center;
	}
	.l-footer-lower__txt {
		margin-bottom: 30px;
		text-align: center;
	}
	.l-footer-lower__copy {
		text-align: center;
	}
}
@media screen and (max-width: 600px) {
	.l-footer__upper {
		margin-bottom: 65px;
	}
	.l-footer__logo {
		width: 222px;
	}
	.l-footer__tel dt {
		font-size: 1.2rem;
	}
	.l-footer-lower__txt,
	.l-footer-lower__txt a {
		font-size: 1.2rem;
	}
	.l-footer-lower__copy {
		font-size: 1.2rem;
	}
}

/* Button */
.l-footer__btn {
	margin-left: auto;
	margin-bottom: 50px;
}
.l-footer-btn__txt {
	margin-bottom: 10px;
	display: block;
	color: var(--c-bk);
	text-align: center;
}
.l-footer-btn__txt:before,
.l-footer-btn__txt:after {
	background: var(--c-bk);
}
.l-footer-btn__inner:before {
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-footer-btn__inner:after {
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.l-footer-btn__inner span {
	color: var(--c-bk);
	background: url(../images/ico_mail_bk.svg) no-repeat center right / 22px;
}
.l-footer-btn__inner span:before,
.l-footer-btn__inner span:after {
	width: calc(100% + 32px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-bk);
	transition: transform .4s ease;
}
.l-footer-btn__inner span:before {
	top: -12px;
	left: -16px;
	transform: scale(0, 1);
	transform-origin: right top;
}
.l-footer-btn__inner span:after {
	right: -16px;
	bottom: -13px;
	transform: scale(0, 1);
	transform-origin: left bottom;
}

@media (hover: hover) and (pointer: fine) {
	.l-footer-btn__inner:hover span:before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
	.l-footer-btn__inner:hover span:after {
		transform: scale(1, 1);
		transform-origin: right bottom;
	}
}

@media screen and (max-width: 960px) {
	.l-footer-btn__inner span {
		background: url(../images/ico_mail_bk.svg) no-repeat center right / 18px;
	}
	.l-footer-btn__inner span:before,
	.l-footer-btn__inner span:after {
		width: calc(100% + 13px);
	}
	.l-footer-btn__inner span:before {
		top: -9px;
		left: -7px;
	}
	.l-footer-btn__inner span:after {
		right: -7px;
		bottom: -11px;
	}
}
@media screen and (max-width: 767px) {
	.l-footer-btn__inner span:before,
	.l-footer-btn__inner span:after {
		display: none;
	}
}

/* Navi Group */
.l-footer__nav {
	display: flex;
	justify-content: flex-end;
	gap: 90px;
}
.l-footer-nav__li {
	margin-bottom: 25px;
	text-align: right;
	overflow: hidden;
}
.l-footer-nav__li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.l-footer-nav__li a {
	display: block;
	color: var(--c-bk);
	font-family: var(--font-primary-strong);
	font-weight: 700;
	letter-spacing: .3em;
	line-height: 1;
	transition: .3s ease-in-out;
}
.l-footer-nav__li a:after {
	width: 10px;
	height: 1px;
	margin-left: 20px;
	content: '';
	display: inline-block;
	background: var(--c-primary);
	vertical-align: 4px;
}

@media (hover: hover) and (pointer: fine) {
	.l-footer-nav__li a:hover {
		color: var(--c-primary);
		transform: translateX(10px);
	}
}

@media screen and (max-width: 600px) {
	.l-footer__nav {
		gap: 30px;
	}
	.l-footer-nav__li {
		margin-bottom: 20px;
	}
	.l-footer-nav__li a {
		letter-spacing: .1em;
	}
	.l-footer-nav__li a:after {
		margin-left: 10px;
	}
}

/* =================================================
Object
================================================= */

/*---------- Compornent ----------*/
/*----- Contents -----*/
.c-sec-unit {
	position: relative;
	z-index: 0;
	background: #fff;
}
.c-sec-unit:after {
	width: 100%;
	height: 300px;
	content: '';
	position: absolute;
	bottom: -90px;
	left: 0;
	z-index: -1;
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(240,247,251,1) 100%);
}
.c-sec,
.c-sec02 {
	margin-bottom: var(--sec-block-lg);
	position: relative;
	z-index: 0;
}
.c-sec02 {
	background: #fff;
}
.c-sec:before,
.c-sec02:before {
	width: 100%;
	height: 300px;
	content: '';
	position: absolute;
	top: -180px;
	left: 0;
	z-index: -1;
}
.c-sec:before {
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
.c-sec02:before {
	background: linear-gradient(to bottom,  rgba(240,247,251,1) 0%,rgba(255,255,255,1) 100%);
}
.c-sec-last:after {
	width: 100%;
	height: 300px;
	content: '';
	position: absolute;
	bottom: -300px;
	left: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}
.c-cont {
	margin-inline: var(--sec-inline-md);
}

@media screen and (max-width: 1440px) {
	.c-sec:before,
	.c-sec02:before {
		height: 270px;
		top: -160px;
	}
}
@media screen and (max-width: 1280px) {
	.c-sec:before,
	.c-sec02:before {
		height: 240px;
		top: -140px;
	}
}
@media screen and (max-width: 960px) {
	.c-sec:before,
	.c-sec02:before {
		height: 190px;
		top: -110px;
	}
}
@media screen and (max-width: 768px) {
	.c-sec:before,
	.c-sec02:before {
		height: 150px;
		top: -90px;
	}
}
@media screen and (max-width: 600px) {
	.c-sec:before,
	.c-sec02:before {
		height: 120px;
		top: -70px;
	}
}

/*----- Title -----*/
/* Page Title */
.c-page-mv {
	width: 100%;
	height: 100vh;
	height: 100svh;
	margin-bottom: 60px;
	position: relative;
	z-index: 0;
	background: url(../images/page_mv.jpg) no-repeat center center / cover;
	opacity: 0;
	animation: blur 0.5s ease-in-out 0s forwards;
}
.c-page-mv:after {
	width: 100%;
	height: 350px;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(to bottom,  rgba(240,247,251,0) 0%,rgba(240,247,251,1) 50%);
}
.c-page-ttl {
	position: absolute;
	top: 50%;
	left: var(--sec-inline-md);
	transform: translateY(-100%);
	opacity: 0;
	animation: blur 0.5s ease-in-out .5s forwards;
}
.c-page-ttl--en,
.c-page-ttl--ja {
	display: block;
	color: #fff;
	line-height: 1;
}
.c-page-ttl--en {
	margin-bottom: 15px;
	font-family: var(--font-secondary);
	font-size: 7.5rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.c-page-ttl--ja {
	font-family: var(--font-primary-strong);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .3em;
}

@media screen and (max-width: 1440px) {
	.c-page-mv {
		height: 500px;
	}
	.c-page-mv:after {
		height: 300px;
		background: linear-gradient(to bottom,  rgba(240,247,251,0) 0%,rgba(240,247,251,1) 70%);
	}
	.c-page-ttl--en {
		font-size: 6.7rem;
	}
	.c-page-ttl--ja {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1280px) {
	.c-page-ttl--en {
		margin-bottom: 12px;
		font-size: 6rem;
	}
}
@media screen and (max-width: 960px) {
	.c-page-mv:after {
		height: 200px;
	}
	.c-page-ttl--en {
		margin-bottom: 10px;
		font-size: 5rem;
	}
	.c-page-ttl--ja {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 768px) {
	.c-page-mv {
		height: 350px;
		margin-bottom: 20px;
	}
	.c-page-mv:after {
		height: 200px;
	}
	.c-page-ttl--en {
		margin-bottom: 10px;
		font-size: 4rem;
	}
	.c-page-ttl--ja {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 600px) {
	.c-page-ttl--en {
		margin-bottom: 8px;
		font-size: 3rem;
	}
}

/* Section Title */
.c-sec-ttl01 {
	margin-bottom: 60px;
	padding-bottom: 40px;
	position: relative;
}
.c-sec-ttl01:before,
.c-sec-ttl01:after {
	content: '';
	position: absolute;
	bottom: 0;
}
.c-sec-ttl01:before {
	width: calc(100% - 10px);
	height: 1px;
	right: 0;
	background: var(--border-color);
}
.c-sec-ttl01:after {
	width: 50px;
	height: 7px;
	left: 0;
	background: var(--c-primary);
	border-radius: 0 7px 0 7px;
}
.c-sec-ttl02 {
	margin-bottom: 70px;
	position: relative;
	text-align: center;
}
.c-sec-ttl02:after {
	width: 50px;
	height: 7px;
	margin-top: 20px;
	margin-inline: auto;
	content: '';
	display: block;
	background: var(--c-primary);
	border-radius: 0 7px 0 7px;
}
.c-sec-ttl03 {
	margin-bottom: 50px;
}
.c-sec-ttl03:after {
	width: 50px;
	height: 7px;
	margin-top: 20px;
	content: '';
	display: block;
	background: var(--c-primary);
	border-radius: 0 7px 0 7px;
}
.c-sec-ttl--ja,
.c-sec-ttl--en {
	display: block;
}
.c-sec-ttl--ja {
	margin-bottom: 35px;
	font-family: var(--font-primary-strong);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}
.c-sec-ttl--en {
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 7rem;
	font-weight: 200;
	letter-spacing: .05em;
	line-height: 1;
}
.c-sec-ttl02 .c-sec-ttl--en,
.c-sec-ttl03 .c-sec-ttl--en {
	letter-spacing: .1em;
}

@media screen and (max-width: 1440px) {
	.c-sec-ttl01 {
		padding-bottom: 35px;
	}
	.c-sec-ttl01:after,
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		width: 45px;
		height: 6px;
	}
	.c-sec-ttl--ja {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}
	.c-sec-ttl--en {
		font-size: 6.3rem;
	}
}
@media screen and (max-width: 1280px) {
	.c-sec-ttl01 {
		padding-bottom: 30px;
	}
	.c-sec-ttl02 {
		margin-bottom: 55px;
	}
	.c-sec-ttl03 {
		margin-bottom: 40px;
	}
	.c-sec-ttl01:after,
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		width: 40px;
	}
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		margin-top: 15px;
	}
	.c-sec-ttl--en {
		font-size: 5.6rem;
	}
}
@media screen and (max-width: 960px) {
	.c-sec-ttl01 {
		padding-bottom: 25px;
	}
	.c-sec-ttl02 {
		margin-bottom: 45px;
	}
	.c-sec-ttl03 {
		margin-bottom: 30px;
	}
	.c-sec-ttl01:after,
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		width: 30px;
		height: 5px;
	}
	.c-sec-ttl--ja {
		margin-bottom: 25px;
		font-size: 1.4rem;
	}
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		margin-top: 12px;
	}
	.c-sec-ttl--en {
		font-size: 5rem;
	}
}
@media screen and (max-width: 768px) {
	.c-sec-ttl01 {
		padding-bottom: 20px;
	}
	.c-sec-ttl02 {
		margin-bottom: 35px;
	}
	.c-sec-ttl03 {
		margin-bottom: 25px;
	}
	.c-sec-ttl01:after,
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		width: 25px;
		height: 4px;
	}
	.c-sec-ttl02:after,
	.c-sec-ttl03:after {
		margin-top: 10px;
	}
	.c-sec-ttl--ja {
		margin-bottom: 20px;
		font-size: 1.2rem;
	}
	.c-sec-ttl--en {
		font-size: 4rem;
	}
}

/* Other Title */
.c-cont-ttl {
	margin-bottom: 50px;
	color: var(--c-primary);
	font-family: var(--font-primary-strong);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
}
.c-cont-ttl:after {
	width: 100px;
	height: 1px;
	margin-left: 30px;
	display: inline-block;
	content: '';
	background: var(--c-primary);
	vertical-align: 9px;
}

@media screen and (max-width: 1280px) {
	.c-cont-ttl {
		margin-bottom: 40px;
		font-size: 2.2rem;
	}
	.c-cont-ttl:after {
		width: 80px;
		margin-left: 25px;
		width: 100px;
	}
}
@media screen and (max-width: 960px) {
	.c-cont-ttl {
		margin-bottom: 30px;
		font-size: 2rem;
	}
	.c-cont-ttl:after {
		width: 65px;
		margin-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	.c-cont-ttl {
		margin-bottom: 25px;
		font-size: 1.8rem;
	}
	.c-cont-ttl:after {
		width: 50px;
		margin-left: 15px;
		vertical-align: 6px;
	}
}

/*----- Burger -----*/
.c-nav-btn {
	width: 80px;
	height: 44px;
	position: relative;
	border-radius: 22px;
	background: none;
	transition: background-color .3s ease-in-out;
	cursor: pointer;
}
.c-nav-btn:before,
.c-nav-btn:after {
	width: 22px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
	transition: all .3s ease-in-out;
}
.c-nav-btn:before {
	left: 0;
	background: url(../images/btn_line_wt_lt.svg) no-repeat 0 0 / 100%;
}
.c-nav-btn:after {
	right: 0;
	background: url(../images/btn_line_wt_rt.svg) no-repeat 0 0 / 100%;
}
.c-nav-btn__inner {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.c-nav-btn__inner:before,
.c-nav-btn__inner:after {
	width: calc(100% - 44px);
	height: 1px;
	content: '';
	position: absolute;
	background: #fff;
	transition: transform .4s;
}
.l-header.is-back .c-nav-btn__inner:before,
.l-header.is-back .c-nav-btn__inner:after,
.l-gnav .c-nav-btn__inner:before,
.l-gnav .c-nav-btn__inner:after {
	background: var(--c-bk);
}
.c-nav-btn__inner:before {
	top: 0;
	left: 22px;
	transform: scale(0, 1);
	transform-origin: right top;
}
.c-nav-btn__inner:after {
	right: 22px;
	bottom: 0;
	transform: scale(0, 1);
	transform-origin: left bottom;
}
.c-nav-btn__line {
	width: 30px;
	height: 1px;
	margin-left: -15px;
	display: inline-block;
	position: absolute;
	left: 50%;
	background: #fff;
	transition: all .3s ease-in-out;
}
.c-nav-btn__line:nth-of-type(1) {
	top: calc(50% - 4px);
}
.c-nav-btn__line:nth-of-type(2) {
	top: calc(50% + 3px);
}

.l-header.is-back .c-nav-btn:before {
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .c-nav-btn:after {
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.l-header.is-back .c-nav-btn__line {
	background: var(--c-bk);
}

@media (hover: hover) and (pointer: fine) {
	.c-nav-btn:hover .c-nav-btn__inner:before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
	.c-nav-btn:hover .c-nav-btn__inner:after {
		transform: scale(1, 1);
		transform-origin: right bottom;
	}
}

@media screen and (max-width: 960px) {
	.c-nav-btn {
		width: 64px;
		height: 36px;
	}
	.c-nav-btn:before,
	.c-nav-btn:after {
		width: 18px;
	}
	.c-nav-btn__line {
		width: 24px;
		margin-left: -12px;
	}
	.c-nav-btn__inner:before,
	.c-nav-btn__inner:after {
		width: calc(100% - 36px);
	}
	.c-nav-btn__inner:before {
		left: 18px;
	}
	.c-nav-btn__inner:after {
		right: 18px;
	}
}
@media screen and (max-width: 768px) {
	.c-nav-btn {
		height: 28px;
	}
	.l-header.is-back .c-nav-btn:hover {
		background: none;
	}
	.c-nav-btn:before,
	.c-nav-btn:after {
		width: 14px;
	}
	.c-nav-btn__inner:before,
	.c-nav-btn__inner:after {
		display: none;
	}
	.c-nav-btn__line {
		width: 20px;
		margin-left: -10px;
	}
	.c-nav-btn__line:nth-of-type(1) {
		top: calc(50% - 3px);
	}
	.c-nav-btn__line:nth-of-type(2) {
		top: calc(50% + 2px);
	}
	.l-header.is-back .c-nav-btn:hover .c-nav-btn__line {
		background: var(--c-bk);
	}
}
@media screen and (max-width: 600px) {
	.c-nav-btn {
		width: 50px;
	}
}

.l-gnav .c-nav-btn {
	position: absolute;
	top: 55px;
	right: 60px;
	z-index: 1;
}
.l-gnav .c-nav-btn:before {
	background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.l-gnav .c-nav-btn:after {
	background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.l-gnav .c-nav-btn__line {
	background: var(--c-bk);
}

.is-tgl .c-nav-btn__line:nth-of-type(1) {
    transform: translateY(3px) rotate(30deg);
}
.is-tgl .c-nav-btn__line:nth-of-type(2) {
    transform: translateY(-4px) rotate(-30deg);
}

@media screen and (max-width: 1280px) {
	.l-gnav .c-nav-btn {
		top: 40px;
		right: 40px;
	}
}
@media screen and (max-width: 960px) {
	.l-gnav .c-nav-btn {
		position: absolute;
		top: 38px;
		right: 40px;
	}
	.is-tgl .c-nav-btn__line:nth-of-type(1) {
		transform: translateY(3px) rotate(30deg);
	}
	.is-tgl .c-nav-btn__line:nth-of-type(2) {
		transform: translateY(-4px) rotate(-30deg);
	}
}
@media screen and (max-width: 768px) {
	.l-gnav .c-nav-btn {
		position: absolute;
		top: 20px;
		right: 20px;
	}
	.is-tgl .c-nav-btn__line:nth-of-type(1) {
		transform: translateY(2px) rotate(30deg);
	}
	.is-tgl .c-nav-btn__line:nth-of-type(2) {
		transform: translateY(-3px) rotate(-30deg);
	}
}

/*----- Button -----*/
.c-btn-cta {
	width: 286px;
	position: relative;
}
.c-btn-cta__txt {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
}

.c-btn-cta__txt:before,
.c-btn-cta__txt:after {
	width: 1px;
	height: 12px;
	content: '';
	display: inline-block;
	vertical-align: -1px;
}
.c-btn-cta__txt:before {
	margin-right: 12px;
	transform: rotate(-30deg);
}
.c-btn-cta__txt:after {
	margin-left: 12px;
	transform: rotate(30deg);
}
.c-btn-cta__inner {
	padding-block: 6px;
	display: block;
	position: relative;
	text-align: center;
	transition: all .3s ease-in-out;
	border-radius: 22px;
	overflow: hidden;
}
.c-btn-cta__inner:before,
.c-btn-cta__inner:after {
	width: 22px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
}
.c-btn-cta__inner:before {
	left: 0;
}
.c-btn-cta__inner:after {
	right: 0;
}
.c-btn-cta__inner span {
	padding-right: 35px;
	position: relative;
	font-family: var(--font-primary-strong);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transition: all .3s ease-in-out;
}

.c-btn {
	width: fit-content;
	margin-inline: auto;
	position: relative;
}
.c-btn.-attach {
	width: 300px;
}
.c-btn:before,
.c-btn:after {
	width: 22px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
}
.c-btn:before {
	left: 0;
	background: url(../images/btn_line_b_lt.svg) no-repeat 0 0 / 100%;
}
.c-btn:after {
	right: 0;
	background: url(../images/btn_line_b_rt.svg) no-repeat 0 0 / 100%;
}
.c-btn a {
	padding: 6px 41px;
	display: block;
	position: relative;
	text-align: center;
	transition: background-color .3s ease-in-out;
	border-radius: 22px;
	overflow: hidden;
}
.c-btn.-attach a {
	padding: 6px 0;
}
.c-btn a:before,
.c-btn a:after {
	width: calc(100% - 44px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-primary);
	transform: scale(0, 1);
	transition: transform .4s ease;
}
.c-btn a:before {
	top: 0;
	left: 22px;
	transform-origin: right top;
}
.c-btn a:after {
	right: 22px;
	bottom: 0;
	transform-origin: left bottom;
}

.c-btn a span {
	position: relative;
	color: var(--c-primary);
	font-family: var(--font-primary-strong);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	transition: color .3s ease-in-out;
}
.c-btn a.c-btn-inner span:after {
	width: 20px;
	aspect-ratio: 20 / 9;
	content: '';
}
.c-btn a.c-btn-inner span:after {
	margin-left: 10px;
	display: inline-block;
	background: url(../images/arr_btn_b.svg) no-repeat 0 0 / 100%;
	transition: opacity .3s ease-in-out, transform .4s ease-in-out;
	opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
	.c-btn a:hover:before,
	.c-btn a:hover:after {
		transform: scale(1, 1);
	}
	.c-btn a:hover:before {
		transform-origin: left top;
	}
	.c-btn a:hover:after {
		transform-origin: right bottom;
	}
	.c-btn a.c-btn-inner:hover span:after {
		transform: translateX(8px);
	}
}

.c-trig,
.c-trig:before {
	transition: all .4s ease-in-out;
}
.c-trig {
	width: 20px;
	height: 1px;
	display: inline-block;
	position: absolute;
	top: 50px;
	right: 20px;
	vertical-align: middle;
	background: var(--border-color);
}
.c-trig:before {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: var(--border-color);
	transform: rotate(90deg);
}
.c-trig.is-trig {
	transform: rotate(360deg);
}
.c-trig.is-trig:before {
	opacity: 0;
}

@media screen and (max-width: 960px) {
	.c-btn-cta {
		width: 230px;
	}
	.c-btn-cta__txt {
		font-size: 1.2rem;
	}
	.c-btn a:before,
	.c-btn a:after {
		width: calc(100% - 36px);
	}
	.c-btn a:before {
		left: 18px;
	}
	.c-btn a:after {
		right: 18px;
	}
	.c-btn-cta__inner {
		padding-block: 4px;
	}
	.c-btn-cta__inner:before,
	.c-btn-cta__inner:after {
		width: 18px;
	}
	.c-btn-cta__inner span {
		padding-right: 28px;
		font-size: 1.4rem;
	}

	.c-btn a {
		padding: 4px 30px;
	}
	.c-btn:before,
	.c-btn:after {
		width: 18px;
	}
	.c-btn.-attach a {
		padding: 4px 0;
	}
}
@media screen and (max-width: 768px) {
	.c-btn-cta__txt {
		top: -17px;
	}
	.c-btn a.c-btn-inner span:before,
	.c-btn a.c-btn-inner span:after {
		width: 16px;
	}
	.c-btn a.c-btn-inner span:before {
		top: 5px;
	}
	.c-btn a.c-btn-inner:hover span:before {
		right: 0;
	}
	.c-btn a.c-btn-inner:hover span:after {
		transform: inherit;
	}
	.c-btn.-attach {
		width: 200px;
	}
	.c-trig {
		width: 15px;
		top: 37px;
	}
	.c-btn a:before,
	.c-btn a:after {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.c-trig {
		top: 31px;
		right: 0;
	}
}

/*----- Breadcrumb -----*/
.c-breadcrumb {
	position: absolute;
	bottom: 135px;
	left: var(--sec-inline-md);
	opacity: 0;
	animation: blur 0.5s ease-in-out .5s forwards;
}
.c-breadcrumb__ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.c-breadcrumb__li,
.c-breadcrumb__li a {
	color: var(--c-bk02);
	font-size: 1.4rem;
	font-weight: 500;
}
.c-breadcrumb__li {
	margin-right: 10px;
	padding-right: 20px;
	position: relative;
}
.c-breadcrumb__li:not(:nth-last-of-type(1)) {
	flex-shrink: 0;
}
.c-breadcrumb__li:not(:nth-last-of-type(1)):after {
	width: 10px;
	height: 1px;
	content: '';
	position: absolute;
	top: 13px;
	right: 0;
	background: var(--c-bk02);
}
.c-breadcrumb__li a {
	display: inline-block;
	transition: all .3s ease-in-out;
}
.c-breadcrumb__li:nth-of-type(1) a {
	width: 20px;
	height: 25px;
	font-size: 0;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../images/ico_home.png) no-repeat center top 5px / 20px;
	overflow: hidden;
}

@media screen and (max-width: 1440px) {
	.c-breadcrumb {
		bottom: 80px;
	}
}
@media screen and (max-width: 768px) {
	.c-breadcrumb {
		bottom: 50px;
	}
	.c-breadcrumb__li,
	.c-breadcrumb__li a {
		font-size: 1.2rem;
		letter-spacing: .05em;
	}
	.c-breadcrumb__li:not(:nth-last-of-type(1)):after {
		top: 11px;
	}
	.c-breadcrumb__li:nth-of-type(1) a {
		width: 16px;
		background: url(../images/ico_home.png) no-repeat center top 5px / 16px;
	}
}

/*----- Form -----*/
/* Text, Textarea, Selectbox */
.c-topics-select,
.c-form-select {
	width: 100%;
	height: 45px;
	padding-inline: 20px;
	background: #fff url(../images/arr_select.svg) no-repeat right 10px center / 6px 8px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
}

.c-form-select {
	width: 100%;
	max-width: 300px;
	background: #fff url(../images/arr_select02.png) no-repeat right 10px center / 9px;
}
.c-form {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	background: #fff;
	border: 1px solid var(--border-color);
}
.c-form.-lg {
	max-width: 650px;
}
.c-form.-md {
	max-width: 445px;
}
.c-form.-sm {
	max-width: 250px;
}
.c-textarea {
	width: 100%;
	max-width: 650px;
	height: 240px;
	padding: 15px 20px;
	background: #fff;
	border: 1px solid var(--border-color);
}

.c-btn-submit {
	width: 510px;
    position: relative;
    text-align: center;
    transition: color .3s ease-in-out;
	cursor: pointer;
}
.c-btn-submit:before,
.c-btn-submit:after {
	width: 40px;
	aspect-ratio: 1 / 2;
	content: '';
	position: absolute;
	top: 0;
}
.c-btn-submit:before {
    left: 0;
    background: url(../images/btn_line_b_lt_lg.svg) no-repeat 0 0 / 100%;
}
.c-btn-submit:after {
    right: 0;
    background: url(../images/btn_line_b_rt_lg.svg) no-repeat 0 0 / 100%;
}

.c-btn-submit span {
	width: 100%;
	padding: 31px 0 29px;
	display: block;
	position: relative;
}
.c-btn-submit span:before,
.c-btn-submit span:after {
	width: calc(100% - 80px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-primary);
	transform: scale(0, 1);
	transition: transform .4s ease;
}
.c-btn-submit span:before {
	top: 0;
	left: 40px;
	transform-origin: right top;
}
.c-btn-submit span:after {
	right: 40px;
	bottom: 0;
	transform-origin: left top;
}

.c-btn-submit input[type="submit"] {
	width: 100%;
	display: block;
    color: var(--c-primary);
	font-family: var(--font-primary-strong);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
	background: url(../images/arr_btn_b.svg) no-repeat right 35px center / 20px 9px;
	border-radius: 40px;
	transition: all .3s ease-in-out;
    overflow: hidden;
}
.c-btn-submit.-submit:before,
.c-btn-submit.-submit:after {
	width: 22px;
}
.c-btn-submit.-submit:before {
    background: url(../images/btn_line_b_lt.svg) no-repeat 0 0 / 100%;
}
.c-btn-submit.-submit:after {
    background: url(../images/btn_line_b_rt.svg) no-repeat 0 0 / 100%;
}
.c-btn-submit.-submit input[type="submit"] {
	padding: 15px 0 13px;
	font-size: 1.6rem;
}

.c-btn-submit:hover span:before,
.c-btn-submit:hover span:after {
	transform: scale(1, 1);
}
.c-btn-submit:hover span:before {
	transform-origin: left top;
}
.c-btn-submit:hover span:after {
	transform-origin: right top;
}

@media screen and (max-width: 768px) {
	.c-btn-submit {
		width: 310px;
	}
	.c-btn-submit:before,
	.c-btn-submit:after {
		width: 26px;
	}
	.c-btn-submit.-submit:before,
	.c-btn-submit.-submit:after {
		width: 22px;
	}
	.c-btn-submit span {
		padding: 20px 20px 18px;
	}
	.c-btn-submit span:before, .c-btn-submit span:after {
		display: none;
	}
	.c-btn-submit input[type="submit"] {
		font-size: 1.4rem;
	}
	.c-btn-submit.-submit input[type="submit"] {
		font-size: 1.4rem;
	}
}

.c-btn-submit.-submit,
.c-btn-submit.-back {
    width: 250px;
	position: relative;
}
.c-btn-submit.-back:before,
.c-btn-submit.-back:after {
    width: 22px;
    aspect-ratio: 11 / 22;
    content: '';
    position: absolute;
    top: 0;
}
.c-btn-submit.-back:before {
    background: url(../images/btn_line_bk_lt.svg) no-repeat 0 0 / 100%;
}
.c-btn-submit.-back:after {
    background: url(../images/btn_line_bk_rt.svg) no-repeat 0 0 / 100%;
}
.c-submit-btn {
	width: 100%;
	padding-block: 6px;
	display: block;
	color: var(--c-bk);
	font-family: var(--font-primary-strong);
	font-weight: 700;
	background: none;
	border-radius: 22px !important;
    overflow: hidden !important;
	transition: all .3s ease-in-out;
}

.c-btn-submit.-back span,
.c-btn-submit.-submit span {
	width: 100%;
	height: 100%;
	padding: 0;
	display: block;
	position: relative;
}
.c-btn-submit.-back span:before,
.c-btn-submit.-back span:after,
.c-btn-submit.-submit span:before,
.c-btn-submit.-submit span:after {
	width: calc(100% - 44px);
}
.c-btn-submit.-back span:before,
.c-btn-submit.-back span:after {
	background: var(--c-bk);
}
.c-btn-submit.-back span:before,
.c-btn-submit.-submit span:before {
	left: 22px;
}
.c-btn-submit.-back span:after,
.c-btn-submit.-submit span:after {
	right: 22px;
}

@media screen and (max-width: 960px) {
	.c-submit-btn {
		padding-block: 8px;
	}
}

/* Check, Radio */

/* Required */
.c-req {
	padding: 9px 16px;
	position: absolute;
	top: 0;
	right: 0;
	color: var(--c-primary);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	border: 1px solid var(--c-primary);
	border-radius: 5px;
}

@media screen and (max-width: 768px) {
	.c-req {
		margin-left: 20px;
		padding: 4px 9px;
		position: inherit;
		font-size: 1.2rem;
	}
}

/* Button */

/*----- Other -----*/
.c-sec-box__num,
.c-sec-box__num span {
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
}
.c-sec-box__num {
	font-size: 1.4rem;
}
.c-sec-box__num span {
	margin-left: 5px;
	font-size: 3rem;
	vertical-align: -1px;
}
.c-page-lead {
	margin-bottom: 90px;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}

@media screen and (max-width: 1440px) {
	.c-sec-box__num span {
		font-size: 2.5rem;
	}
	.c-page-lead {
		margin-bottom: 80px;
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 1280px) {
	.c-page-lead {
		margin-bottom: 70px;
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 960px) {
	.c-page-lead {
		margin-bottom: 55px;
		font-size: 2rem;
	}
}
@media screen and (max-width: 768px) {
	.c-page-lead {
		margin-bottom: 45px;
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 600px) {
	.c-sec-box__num {
		font-size: 1.2rem;
	}
	.c-sec-box__num span {
		font-size: 2rem;
	}
}

.c-box-ttl {
	margin-bottom: 15px;
	font-family: var(--font-primary-strong);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
}
.c-box-txt {
	font-weight: 500;
}
@media screen and (max-width: 1280px) {
	.c-box-ttl {
		font-size: 2rem !important;
	}
}
@media screen and (max-width: 600px) {
	.c-box-ttl {
		margin-bottom: 10px !important;
		font-size: 1.8rem !important;
		line-height: 1.75 !important;
	}
	.c-box-txt {
		font-weight: 500 !important;
	}
}

/* Index
------------------------------------------------- */
/* ----- Top Mv -----*/
/* Contents */
.p-mv {
	height: 100vh;
	height: 100svh;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.p-mv:after {
	width: 100%;
	height: 250px;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom,  rgba(240,247,251,0) 0%,rgba(240,247,251,1) 95%);
}
.p-mv__slider,
.slick-list,
.slick-track {
	height: 100%;
}
.p-mv__slider {
	opacity: 0;
	animation: blur 1.2s ease-in-out 0s forwards;
}
.p-mv-slider__img,
.p-mv-slider__img img {
	width: 100%;
	height: 100%;
}
.p-mv-slider__img img {
	object-fit: cover;
}

@media screen and (max-width: 960px) {
	.p-mv:after {
		height: 200px;
	}
}
@media screen and (max-width: 768px) {
	.p-mv:after {
		height: 160px;
	}
}
@media screen and (max-width: 600px) {
	.p-mv:after {
		height: 130px;
	}
}

/* Catch */
.p-mv__catch {
	position: absolute;
	top: 50%;
	left: 180px;
	transform: translateY(-17.7vh);
	writing-mode: vertical-rl;
	white-space: nowrap;
	opacity: 0;
	animation: blur 1.2s ease-in-out 1.0s forwards;
}
.p-mv-catch__copy,
.p-mv-catch__txt {
	color: #fff;
	letter-spacing: .25em;
}
.p-mv-catch__copy {
	margin-left: 30px;
	font-family: var(--font-primary-strong);
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 1.6;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.12),  0 0 40px rgba(0, 0, 0, 0.08),  0 0 80px rgba(0, 0, 0, 0.05),  0 0 120px rgba(0, 0, 0, 0.03);
}
.p-mv-catch__txt {
	font-family: var(--font-secondary);
	font-size: 1.4rem;
	line-height: 1;
}

@media screen and (max-width: 1440px) {
	.p-mv__catch {
		left: 110px;
	}
	.p-mv-catch__copy {
		font-size: 4.3rem;
	}
	.p-mv-catch__txt {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-mv-catch__copy {
		font-size: 3.8rem;
	}
}
@media screen and (max-width: 960px) {
	.p-mv__catch {
		left: 90px;
	}
	.p-mv-catch__copy {
		font-size: 3rem;
	}
}
@media screen and (max-width: 768px) {
	.p-mv__catch {
		top: auto;
		bottom: 18.1vh;
		left: 30px;
		transform: inherit;
	}
}
@media screen and (max-width: 600px) {
	.p-mv-catch__copy {
		margin-left: 20px;
		font-size: 2.5rem;
	}
}

/* ----- Top About -----*/
.p-tp-about {
	margin-bottom: 380px;
	position: relative;
}
.p-tp-about:before {
	width: 883px;
	aspect-ratio: 883 / 722;
	content: '';
	position: absolute;
	top: 50px;
	left: -165px;
	background: url(../images/logo_lg.png) no-repeat 0 0 / 100%;
	opacity: .03;
}
.p-tp-about__inner {
	padding-top: 300px;
	display: flex;
}
.p-tp-about__hdr {
	width: 43%;
	padding-inline: 100px 60px;
	position: relative;
}
.p-tp-about__ttl {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--c-secondary);
	font-family: var(--font-secondary);
	letter-spacing: .3em;
	line-height: 1;
	writing-mode: vertical-rl;
}
.p-tp-about__catch {
	margin-bottom: 105px;
	font-family: var(--font-primary-strong);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.75;
	transform: translateY(-17px);
}
.p-tp-about__txt {
	width: 57%;
	color: #121212;
	font-size: 2rem;
	font-weight: 500;
	line-height: 3;
	transform: translateY(-20px);
}
.p-tp-about__btn {
	margin: 0;
}
.p-tp-about__btn--sp {
	margin-left: 60px;
	display: none;
}

@media screen and (max-width: 1440px) {
	.p-tp-about {
		margin-bottom: 300px;
	}
	.p-tp-about:before {
		width: 795px;
		top: 50px;
		left: -145px;
	}
	.p-tp-about__hdr {
		padding-left: 60px;
	}
	.p-tp-about__catch {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1360px) {
	.p-tp-about__txt br.-br {
		display: none;
	}
}
@media screen and (max-width: 1280px) {
	.p-tp-about {
		margin-bottom: 240px;
	}
	.p-tp-about:before {
		width: 705px;
		top: 50px;
		left: -130px;
	}
	.p-tp-about__inner {
		padding-top: 200px;
	}
	.p-tp-about__catch {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 1200px) {
	.p-tp-about__inner {
		flex-direction: column;
	}
	.p-tp-about__hdr {
		width: 100%;
		padding-inline: 60px 0;
	}
	.p-tp-about__catch {
		margin-bottom: 30px;
	}
	.p-tp-about__catch br.-br {
		display: none;
	}
	.p-tp-about__txt {
		width: 100%;
		margin-bottom: 30px;
		padding-left: 60px;
	}
	.p-tp-about__btn {
		display: none;
	}
	.p-tp-about__btn--sp {
		display: block;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-about {
		margin-bottom: 190px;
	}
	.p-tp-about:before {
		width: 564px;
		left: -105px;
	}
	.p-tp-about__inner {
		padding-top: 150px;
	}
	.p-tp-about__catch {
		margin-bottom: 20px;
		font-size: 3rem;
	}
	.p-tp-about__txt {
		margin-bottom: 40px;
		font-size: 1.6rem;
		line-height: 2.4;
	}
}
@media screen and (max-width: 768px) {
	.p-tp-about {
		margin-bottom: 150px;
	}
	.p-tp-about:before {
		width: 450px;
		left: -85px;
	}
	.p-tp-about__inner {
		padding-top: 100px;
	}
	.p-tp-about__ttl {
		margin-bottom: 20px;
		position: inherit;
		top: inherit;
		font-size: 1.2rem;
		writing-mode: horizontal-tb;
	}
	.p-tp-about__hdr {
		padding-inline: 0;
	}
	.p-tp-about__catch {
		margin-bottom: 15px;
		font-size: 2.4rem;
		transform: inherit;
	}
	.p-tp-about__txt {
		padding-left: 0;
	}
	.p-tp-about__btn--sp {
		margin-inline: auto;
	}
}
@media screen and (max-width: 600px) {
	.p-tp-about {
		margin-bottom: 100px;
	}
	.p-tp-about__ttl {
		font-size: 1rem;
	}
	.p-tp-about__catch {
		font-size: 2.2rem;
	}
	.p-tp-about__catch br.-br {
		display: block;
	}
	.p-tp-about__txt {
		font-size: 1.4rem;
		line-height: 2;
	}
}

/* ----- Top Features -----*/
.p-tp-features__ttl {
	margin-bottom: 0;
}
.p-tp-features__block {
	margin-bottom: 100px;
	display: flex;
	border-bottom: 1px solid var(--border-color);
}
.p-tp-features__box {
	padding-block: 100px 90px;
	position: relative;
}
.p-tp-features__box:nth-of-type(1) {
	width: calc(100% / 3 - 17px);
	padding-right: 50px;
}
.p-tp-features__box:nth-of-type(2) {
	width: calc(100% / 3 + 33px);
	padding-inline: 50px;
}
.p-tp-features__box:nth-of-type(3) {
	width: calc(100% / 3 - 17px);
	padding-left: 50px;
}
.p-tp-features__box:after {
	width: 1px;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--border-color);
}
.p-tp-features__box:nth-of-type(3):after {
	display: none;
}
.p-tp-features-box__img {
	margin-bottom: 30px;
	position: relative;
}
.p-tp-features-box__img:after {
	width: 100%;
	aspect-ratio: 506 / 400;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
}
.p-tp-features__box:nth-of-type(1) .p-tp-features-box__img:after {
	background: url(../images/tp_features_img01_cover.png) no-repeat 0 0 / 100%;
}
.p-tp-features__box:nth-of-type(2) .p-tp-features-box__img:after {
	background: url(../images/tp_features_img02_cover.png) no-repeat 0 0 / 100%;
}
.p-tp-features__box:nth-of-type(3) .p-tp-features-box__img:after {
	background: url(../images/tp_features_img03_cover.png) no-repeat 0 0 / 100%;
}
.p-tp-features-box__img img {
	width: 100%;
}
.p-tp-features-box__num {
	margin-bottom: 5px;
}
.p-tp-features-box__ttl br.-br {
	display: none;
}

@media screen and (max-width: 1440px) {
	.p-tp-features__box {
		padding-block: 80px 70px;
	}
	.p-tp-features__box:nth-of-type(1) {
		width: calc(100% / 3 - 10px);
		padding-right: 30px;
	}
	.p-tp-features__box:nth-of-type(2) {
		width: calc(100% / 3 + 20px);
		padding-inline: 30px;
	}
	.p-tp-features__box:nth-of-type(3) {
		width: calc(100% / 3 - 10px);
		padding-left: 30px;
	}
}
@media screen and (max-width: 1280px) {
	.p-tp-features__box {
		padding-block: 65px 55px;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-features__block {
		margin-bottom: 80px;
		flex-direction: column;
	}
	.p-tp-features__box {
		padding-block: 50px;
	}
	.p-tp-features__box:nth-of-type(1),
	.p-tp-features__box:nth-of-type(2),
	.p-tp-features__box:nth-of-type(3) {
		width: 100%;
	}
	.p-tp-features__box:nth-of-type(1) {
		padding-right: 0;
	}
	.p-tp-features__box:nth-of-type(2) {
		padding-inline: 0;
	}
	.p-tp-features__box:nth-of-type(3) {
		padding-left: 0;
	}
	.p-tp-features__box:after {
		width: 100%;
		height: 1px;
		top: auto;
		bottom: 0;
	}
	.p-tp-features-box__img {
		max-width: 600px;
		margin-inline: auto;
	}
}
@media screen and (max-width: 768px) {
	.p-tp-features__block {
		margin-bottom: 65px;
	}
	.p-tp-features__box {
		padding-block: 40px;
	}
}
@media screen and (max-width: 600px) {
	.p-tp-features__block {
		margin-bottom: 50px;
	}
	.p-tp-features-box__ttl br.-br {
		display: block;
	}
}

/* ----- Top Service -----*/
.p-tp-service {
	margin-bottom: 0;
	z-index: 1;
}
.p-tp-service__inner {
	padding-bottom: var(--sec-block-lg);
	border-bottom: 1px solid var(--border-color);
}
.p-tp-service-ttl {
	margin-bottom: 40px;
}
.p-tp-service__lead {
	margin-bottom: 60px;
	text-align: center;
}
.p-tp-service__block {
	margin-bottom: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.p-tp-service__box {
	width: calc((100% - 10px) / 3);
	position: relative;
}
.p-tp-service-box__num {
	margin-bottom: 20px;
}
.p-tp-serivce-box__inner {
	position: relative;
}
.p-tp-service-box__img {
	position: relative;
}
.p-tp-service-box__img:before,
.p-tp-service-box__img:after {
	width: 100%;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
}
.p-tp-service-box__img:before {
	aspect-ratio: 57 / 70;
}
.p-tp-service__box:nth-of-type(1) .p-tp-service-box__img:before {
	background: url(../images/tp_service_img01_cover.png) no-repeat 0 0 / 100%;
}
.p-tp-service__box:nth-of-type(3) .p-tp-service-box__img:before {
	background: url(../images/tp_service_img03_cover.png) no-repeat 0 0 / 100%;
}
.p-tp-service-box__img:after {
	height: 46%;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
}
.p-tp-service-box__img img {
	width: 100%;
}
.p-tp-service-box__cont {
	padding: 0 50px 40px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.p-tp-service-box__ttl,
.p-tp-service-box__txt {
	color: #fff;
}
.p-tp-service-box__ttl {
	margin-bottom: 15px;
	font-family: var(--font-primary-strong);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5;
}
.p-tp-service-box__txt {
	font-weight: 500;
	letter-spacing: .05em;
}

@media screen and (max-width: 1440px) {
	.p-tp-service-box__cont {
		padding: 0 30px 25px;
	}
	.p-tp-service-box__ttl {
		margin-bottom: 10px;
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-tp-service-box__txt {
		line-height: 1.65;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-service__block {
		margin-bottom: 80px;
		flex-direction: column;
	}
	.p-tp-service__box {
		width: 100%;
		margin-bottom: 60px;
	}
	.p-tp-service__box:nth-last-of-type(1) {
		margin-bottom: 0;
	}
	.p-tp-service-box__img {
		max-width: 600px;
		margin-inline: auto;
		margin-bottom: 30px;
	}
	.p-tp-service-box__img:before {
		aspect-ratio: 506 / 400;
	}
	.p-tp-service__box:nth-of-type(1) .p-tp-service-box__img:before,
	.p-tp-service__box:nth-of-type(2) .p-tp-service-box__img:before,
	.p-tp-service__box:nth-of-type(3) .p-tp-service-box__img:before {
		background: url(../images/tp_service_img_cover_sp.png) no-repeat 0 0 / 100%;
	}
	.p-tp-service-box__img:after {
		display: none;
	}
	.p-tp-service-box__cont {
		padding: 0;
		position: inherit;
	}
	.p-tp-service-box__num {
		margin-bottom: 5px;
	}
	.p-tp-service-box__ttl,
	.p-tp-service-box__txt {
		color: inherit;
	}
}
@media screen and (max-width: 768px) {
	.p-tp-service-ttl {
		margin-bottom: 25px;
	}
	.p-tp-service__lead {
		margin-bottom: 45px;
		text-align: left;
	}
	.p-tp-service__block {
		margin-bottom: 65px;
	}
	.p-tp-service__box {
		margin-bottom: 40px;
	}
	.p-tp-service-box__ttl,
	.p-tp-service-box__txt {
		color: inherit;
	}
	.p-tp-service-box__ttl {
		margin-bottom: 15px;
	}
	.p-tp-service-box__txt {
		line-height: 2;
	}
}
@media screen and (max-width: 600px) {
	.p-tp-service__block {
		margin-bottom: 50px;
	}
}

/* ----- Top Faq -----*/
.p-tp-faq {
	margin-bottom: var(--sec-block-lg);
	padding-top: 0;
}
.p-tp-faq__inner {
	padding-block: 190px 150px;
	display: flex;
	justify-content: space-between;
	gap: 80px;
	border-bottom: 1px solid var(--border-color);
}

@media screen and (max-width: 1440px) {
	.p-tp-faq__inner {
		padding-block: var(--sec-block-lg) 120px;
	}
}
@media screen and (max-width: 1280px) {
	.p-tp-faq__inner {
		padding-block-end: 105px;
		gap: 50px;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-faq__inner {
		padding-block-end: 90px;
		flex-direction: column;
		gap: 0;
	}
}

/* Header */
.p-tp-faq__hdr {
	width: 310px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}
.p-tp-faq-hdr__txt {
	margin-bottom: 50px;
}
.p-tp-faq__btn {
	margin: auto 0 0;
}

@media screen and (max-width: 1280px) {
	.p-tp-faq__hdr {
		width: 275px;
	}
	.p-tp-faq-hdr__txt {
		margin-bottom: 100px;
	}
	.p-tp-faq__btn {
		margin: 0;
	}
	.p-tp-faq__btn a {
		padding-inline: 25px;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-faq__hdr {
		width: 100%;
		margin-bottom: 45px;
	}
	.p-tp-faq-hdr__txt {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 768PX) {
	.p-tp-faq__hdr {
		margin-bottom: 30px;
	}
}

/* Contents */
.p-tp-faq__cont {
	width: 1260px;
	border-top: 1px solid var(--border-color);
}
.p-tp-faq__group {
	width: 100%;
	padding-block: 35px 40px;
	padding-left: 20px;
	position: relative;
	border-bottom: 1px solid var(--border-color);
	cursor: pointer;
}
.p-tp-faq-group__hdr,
.p-tp-faq-group__ansarea {
	padding-inline: 85px 100px;
}
.p-tp-faq-group__hdr {
	position: relative;
}
.p-tp-faq-group__hdr:before {
	content: 'Q';
	position: absolute;
	top: 3px;
	left: 0;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
}
.p-tp-faq-group-hdr__txt {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}
.p-tp-faq-group__ansarea {
	padding-block: 15px 0;
}
.p-tp-faq-group-ansarea__txt {
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
	.p-tp-faq__cont {
		width: calc(100% - 325px);
	}
	.p-tp-faq-group__hdr,
	.p-tp-faq-group__ansarea {
		padding-inline: 50px 55px;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-faq__cont {
		width: 100%;
		margin-bottom: 65px;
	}
}
@media screen and (max-width: 768px) {
	.p-tp-faq__group {
		padding-block: 25px 25px;
	}
	.p-tp-faq-group__hdr,
	.p-tp-faq-group__ansarea {
		padding-inline: 30px 50px;
	}
	.p-tp-faq-group__hdr:before {
		font-size: 2.4rem;
	}
	.p-tp-faq-group-hdr__txt {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 600px) {
	.p-tp-faq__group {
		padding-block: 20px;
		padding-inline: 0;
	}
	.p-tp-faq-group__hdr,
	.p-tp-faq-group__ansarea {
		padding-inline: 25px 30px;
	}
	.p-tp-faq-group__hdr:before {
		top: 2px;
		font-size: 2rem;
	}
	.p-tp-faq-group-hdr__txt {
		font-size: 1.6rem;
	}
	.p-tp-faq-group-ansarea__txt {
		line-height: 1.75;
	}
}

/* ----- Top News -----*/
.p-tp-news__inner {
	padding-bottom: var(--sec-block-lg);
	position: relative;
	border-bottom: 1px solid var(--border-color);
}
.p-tp-news__ttl {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 3rem;
	font-weight: 200;
	line-height: 1;
	writing-mode: vertical-rl;
}
.p-tp-news__group {
	width: 69.8%;
	margin: 0 auto 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}
.p-tp-news__box {
	width: calc((100% - 100px) / 3);
}
.p-tp-news__box a {
	display: block;
}
.p-tp-news-box__img {
	aspect-ratio: 366 / 265;
	margin-bottom: 25px;
	overflow: hidden;
}
.p-tp-news-box__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(0, 0, 0);
	transition: all .4s ease-in-out;
}
.p-tp-news-box__ttl {
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}
.p-tp-news-box__date {
	font-family: var(--font-secondary);
	font-size: 1.4rem;
	font-weight: 200;
	line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
	.p-tp-news__box a:hover .p-tp-news-box__img img {
		transform: translate3d(0, 0, 0) scale(1.08);
	}
}
@media screen and (max-width: 1920px) {
	.p-tp-news__group {
		width: calc(100% - 120px);
		max-width: 1200px;
	}
}
@media screen and (max-width: 960px) {
	.p-tp-news__ttl {
		font-size: 2rem;
	}
	.p-tp-news__group {
		width: calc(100% - 60px);
		margin: 0 0 70px auto;
	}
	.p-tp-news__box {
		width: 100%;
	}
	.p-tp-news-box__img {
		max-width: 600px;
		margin-inline: auto;
	}
}
@media screen and (max-width: 768px) {
	.p-tp-news__group {
		width: calc(100% - 40px);
		margin: 0 0 70px auto;
	}
	.p-tp-news__ttl {
		font-size: 1.2rem;
		letter-spacing: .3em;
	}
	.p-tp-news-box__ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 600px) {
	.p-tp-news__group {
		margin: 0 0 50px auto;
		gap: 40px;
	}
	.p-tp-news-box__ttl {
		font-size: 1.6rem;
	}
}

/* =================================================
下層ページ
================================================= */

/* Common
------------------------------------------------- */
.p-internal {
	margin-bottom: 100px;
	padding-inline: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 30px;
}
.p-internal-btn {
	width: 300px;
	position: relative;
}
.p-internal-btn:before,
.p-internal-btn:after {
	width: 22px;
	aspect-ratio: 11 / 22;
	content: '';
	position: absolute;
	top: 0;
}
.p-internal-btn:before {
	left: 0;
	background: url(../images/btn_line_b_lt.svg) no-repeat 0 0 / 100%;
}
.p-internal-btn:after {
	right: 0;
	background: url(../images/btn_line_b_rt.svg) no-repeat 0 0 / 100%;
}
.p-internal-btn-inner {
	padding-block: 14px;
	display: block;
	border-radius: 22px;
	overflow: hidden;
}
.p-internal-btn-inner:before,
.p-internal-btn-inner:after {
	width: calc(100% - 44px);
	height: 1px;
	content: '';
	position: absolute;
	background: var(--c-primary);
	transform: scale(0, 1);
	transition: transform .4s ease;
}
.p-internal-btn-inner:before {
	top: 0;
	left: 22px;
	transform-origin: right top;
}
.p-internal-btn-inner:after {
	right: 22px;
	bottom: 0;
	transform-origin: left bottom;
}

.p-internal-btn-inner span {
	width: 100%;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-family: var(--font-primary-strong);
	font-weight: 700;
	text-align: center;
	line-height: 1;
}
.p-internal-btn-inner span:after {
	width: 8px;
	aspect-ratio: 8 / 5;
	content: '';
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	transition: opacity .3s ease-in-out;
}
.p-internal-btn-inner span:after {
	background: url(../images/arr_down_b.svg) no-repeat 0 0 / 100%;
	opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
	.p-internal-btn-inner:hover:before,
	.p-internal-btn-inner:hover:after {
		transform: scale(1, 1);
	}
	.p-internal-btn-inner:hover:before {
		transform-origin: left top;
	}
	.p-internal-btn-inner:hover:after {
		transform-origin: right bottom;
	}
}

@media screen and (max-width: 1440px) {
	.p-internal,
	.p-service-biz,
	.p-service-sec-ttl,
	.p-service-sec-lead {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
}
@media screen and (max-width: 960px) {
	.p-internal-btn {
		width: 240px;
	}
	.p-internal-btn-inner {
		padding-block: 11px;
	}
	.p-internal-btn:before,
	.p-internal-btn:after {
		width: 18px;
	}
	.p-internal-btn-inner:before,
	.p-internal-btn-inner:after {
		width: calc(100% - 36px);
	}
	.p-internal-btn-inner:before {
		left: 18px;
	}
	.p-internal-btn-inner:after {
		right: 18px;
	}
}
@media screen and (max-width: 768px) {
	.p-internal {
		margin-bottom: 80px;
		gap: 10px 15px;
	}
	.p-internal-btn {
		width: 200px;
	}
	.p-internal-btn-inner:before,
	.p-internal-btn-inner:after {
		display: none;
	}
	.p-internal-btn-inner span:after {
		right: 20px;
	}
}
@media screen and (max-width: 600px) {
	.p-internal-btn {
		width: 170px;
	}
	.p-internal-btn-inner span {
		font-size: 1.3rem;
		letter-spacing: 0;
	}
	.p-internal-btn-inner span:after {
		right: 20px;
	}
}

.p-link-area {
	padding-bottom: 200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 60px;
	z-index: 0;
	border-bottom: 1px solid var(--border-color);
}
.p-link-btn {
	margin-inline: 0;
}

@media screen and (max-width: 1440px) {
	.p-link-area {
		padding-bottom: 160px;
	}
}
@media screen and (max-width: 1280px) {
	.p-link-area {
		padding-bottom: 130px;
	}
}
@media screen and (max-width: 960px) {
	.p-link-area {
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 768px) {
	.p-link-area {
		padding-bottom: 80px;
		gap: 15px 30px;
	}
}


/* 会社案内
------------------------------------------------- */
/* ----- Overview -----*/
.p-com-overview {
	margin-bottom: var(--sec-block-lg);
}
.p-com-tbl {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
}
.p-com-tbl dl {
	width: 100%;
	padding-block: 26px 24px;
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid var(--c-secondary);
}
.p-com-tbl dl:nth-of-type(1) {
	border-top: 1px solid var(--c-secondary);
}
.p-com-tbl dl dt,
.p-com-tbl dl dd {
	font-weight: 500;
	line-height: 1.75;
}
.p-com-tbl dl dt {
	width: 30%;
	padding-left: 50px;
}
.p-com-tbl dl dd {
	width: 70%;
	padding-right: 50px;
}

@media screen and (max-width: 1440px) {
	.p-com-overview .c-sec-ttl02,
	.p-com-tbl {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
}
@media screen and (max-width: 768px) {
	.p-com-tbl dl {
		padding-block: 20px 18px;
	}
	.p-com-tbl dl dt {
		padding-left: 0;
	}
	.p-com-tbl dl dd {
		padding-right: 0;
	}
}
@media screen and (max-width: 600px) {
	.p-com-tbl dl {
		flex-direction: column;
	}
	.p-com-tbl dl dt {
		width: 100%;
		margin-bottom: 5px;
		padding-left: 0;
		font-family: var(--font-primary-strong);
		font-weight: 700;
	}
	.p-com-tbl dl dd {
		width: 100%;
		padding-right: 0;
	}
}

/* ----- Access -----*/
.p-com-access__cont {
	display: flex;
	gap: var(--sec-inline-md);
}
.p-com-access__info {
	width: 420px;
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--c-secondary);
}
.p-com-access-info__logo {
	width: 348px;
	margin-block: auto 50px;
}
.p-com-access-info__logo img {
	width: 100%;
}
.p-com-access-info__addr {
	margin-bottom: 20px;
	color: var(--c-bk);
	font-weight: 500;
	letter-spacing: .3em;
	line-height: 1;
}
.p-com-access-info__tel,
.p-com-access-info__tel a {
	color: var(--c-bk);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
}
.p-com-access-info__tel a {
	font-size: 2.4rem;
}
.p-com-access__gmap {
	width: calc(100% - 520px);
	height: 600px;
}
.p-com-access__gmap iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media screen and (max-width: 1440px) {
	.p-com-access__info {
		width: 350px;
	}
	.p-com-access__gmap {
		width: calc(100% - 350px);
		height: 480px;
	}
}
@media screen and (max-width: 960px) {
	.p-com-access__cont {
		flex-direction: column;
		gap: 50px;
	}
	.p-com-access__info {
		width: 100%;
		order: 2;
		text-align: center;
		border-top: none;
	}
	.p-com-access-info__logo {
		width: 278px;
		margin-block: auto 50px;
		margin-inline: auto;
	}
	.p-com-access__gmap {
		width: 100%;
		height: 380px;
		order: 1;
	}
}
@media screen and (max-width: 768px) {
	.p-com-access-info__logo {
		width: 222px;
		margin-block: auto 30px;
	}
	.p-com-access-info__tel a {
		font-size: 2rem;
	}
}
@media screen and (max-width: 600px) {
	.p-com-access-info__tel {
		font-size: 1.2rem;
	}
}


/* 高橋宏税理士事務所について
------------------------------------------------- */
/*----- Intro -----*/
.p-about-intro {
	margin-block: 100px 220px;
	position: relative;
	z-index: 0;
}
.p-about-intro:before {
	width: 883px;
	aspect-ratio: 883 / 722;
	margin-left: -442px;
	content: '';
	position: absolute;
	top: -65px;
	left: 50%;
	z-index: -1;
	background: url(../images/logo_lg.png) no-repeat 0 0 / 100%;
	opacity: .03;
}
.p-about-intro__ttl {
	margin-bottom: 35px;
	text-align: center;
}
.p-about-intro-ttl--en,
.p-about-intro-ttl--ja {
	display: block;
}
.p-about-intro-ttl--en {
	margin-bottom: 25px;
	color: var(--c-secondary);
	font-family: var(--font-secondary);
	font-size: 1.6rem;
}
.p-about-intro-ttl--ja {
	font-family: var(--font-primary-strong);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.5;
}
.p-about-intro__txt {
	font-size: 2rem;
	font-weight: 500;
	line-height: 3;
	text-align: center;
}

@media screen and (max-width: 1440px) {
	.p-about-intro {
		margin-block: 0 200px;
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-about-intro:before {
		width: 795px;
		margin-left: -398px;
		top: -55px;
	}
	.p-about-intro__ttl {
		margin-bottom: 30px;
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-about-intro__txt {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-about-intro-ttl--ja {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-about-intro {
		margin-bottom: 175px;
	}
	.p-about-intro:before {
		width: 705px;
		margin-left: -354px;
		top: -50px;
	}
	.p-about-intro-ttl--ja {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 960px) {
	.p-about-intro {
		margin-bottom: 140px;
	}
	.p-about-intro:before {
		width: 564px;
		margin-left: -283px;
		top: -40px;
	}
	.p-about-intro__ttl {
		margin-bottom: 25px;
	}
	.p-about-intro-ttl--en {
		margin-bottom: 20px;
		font-size: 1.4rem;
	}
	.p-about-intro-ttl--ja {
		font-size: 3rem;
	}
	.p-about-intro__txt {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 768px) {
	.p-about-intro {
		margin-bottom: 100px;
	}
	.p-about-intro:before {
		width: 450px;
		margin-left: -226px;
		top: -30px;
	}
	.p-about-intro__ttl {
		margin-bottom: 20px;
	}
	.p-about-intro-ttl--ja {
		font-size: 2.5rem;
	}
	.p-about-intro__txt {
		line-height: 1.75;
		text-align: left;
	}
}
@media screen and (max-width: 600px) {
	.p-about-intro {
		margin-bottom: 80px;
	}
	.p-about-intro-ttl--ja {
		font-size: 2rem;
	}
	.p-about-intro__txt {
		font-size: 1.4rem;
	}
}

/* ----- Greeting -----*/
.p-about-greeting {
	display: flex;
	align-items: flex-start;
}
.p-about-greeting:before {
	top: 0;
}
.p-about-greeting__img {
	width: 40.63%;
	position: relative;
}
.p-about-greeting__img:after {
	width: 100%;
	aspect-ratio: 780 / 890;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/about_greeting_img_cover.png) no-repeat 0 0 / 100%;
}
.p-about-greeting__img img {
	width: 100%;
}
.p-about-greeting__cont {
	width: 59.37%;
	padding-top: 40px;
	padding-inline: 130px var(--sec-inline-md);
	position: relative;
}
.p-about-greeting__ttl {
	position: absolute;
	top: 0;
	right: var(--sec-inline-md);
	color: var(--c-primary);
	font-family: var(--font-secondary);
	letter-spacing: .3em;
	line-height: 1;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.p-about-greeting__ttl:after {
	width: 1px;
	height: 70px;
	content: '';
	position: absolute;
	bottom: -95px;
	left: 10px;
	background: var(--c-primary);
}
.p-about-greeting__txtarea {
	padding-right: 115px;
}
.p-about-greeting__catch {
	margin-bottom: 30px;
	font-family: var(--font-primary-strong);
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.6;
}
.p-about-greeting__txt {
	margin-bottom: 30px;
}
.p-about-greeting__txt:nth-last-of-type(2) {
	margin-bottom: 70px;
}
.p-about-greeting__txt--name,
.p-about-greeting__txt--name span {
	line-height: 1;
}
.p-about-greeting__txt--name {
	text-align: right;
}
.p-about-greeting__txt--name span {
	font-size: 2.4rem;
}

@media screen and (max-width: 1920px) {
	.p-about-greeting__img {
		max-width: 780px;
	}
}
@media screen and (max-width: 1440px) {
	.p-about-greeting__cont {
		padding-inline-start: 100px;
	}
	.p-about-greeting__txtarea {
		padding-right: 105px;
	}
	.p-about-greeting__catch {
		font-size: 3rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-about-greeting__cont {
		padding-inline-start: 80px;
	}
	.p-about-greeting__txtarea {
		padding-right: 90px;
	}
	.p-about-greeting__catch {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 960px) {
	.p-about-greeting {
		flex-direction: column;
		align-items: center;
	}
	.p-about-greeting__img {
		width: 100%;
		max-width: 600px;
		margin-bottom: 50px;
	}
	.p-about-greeting__cont {
		width: 100%;
		padding-top: 0;
		padding-inline: calc(var(--sec-inline-md) + 60px) var(--sec-inline-md);
	}
	.p-about-greeting__txtarea {
		padding-right: 0;
	}
	.p-about-greeting__ttl {
		top: 10px;
		right: auto;
		left: var(--sec-inline-md);
	}
	.p-about-greeting__ttl:after {
		bottom: -75px;
		left: 8px;
	}
	.p-about-greeting__catch {
		font-size: 2.2rem;
	}
	.p-about-greeting__txt:nth-last-of-type(2) {
		margin-bottom: 55px;
	}
	.p-about-greeting__txt--name span {
		font-size: 2rem;
	}
}
@media screen and (max-width: 768px) {
	.p-about-greeting__img {
		margin-bottom: 30px;
	}
	.p-about-greeting__catch {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}
	.p-about-greeting__ttl {
		top: 6px;
		font-size: 1.2rem;
	}
	.p-about-greeting__ttl:after {
		height: 50px;
		bottom: -60px;
		left: 6px;
	}
	.p-about-greeting__cont {
		padding-inline-start: calc(var(--sec-inline-md) + 40px);
	}
	.p-about-greeting__txt {
		margin-bottom: 15px;
	}
	.p-about-greeting__txt:nth-last-of-type(2) {
		margin-bottom: 45px;
	}
	.p-about-greeting__txt--name span {
		font-size: 1.8rem;
	}
}

/* ----- Features -----*/
.p-about-features-ttl {
	margin-bottom: 40px;
}
.p-about-features__lead {
	margin-bottom: 50px;
	text-align: center;
}
.p-about-features__cont {
	display: flex;
	gap: 0 var(--sec-inline-md);
}

@media screen and (max-width: 960px) {
	.p-about-features__cont {
		flex-direction: column;
	}
	.p-about-features-ttl {
		margin-bottom: 30px;
	}
	.p-about-features__lead {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 768px) {
	.p-about-features-ttl {
		margin-bottom: 25px;
	}
	.p-about-features__lead {
		margin-bottom: 30px;
		text-align: left;
	}
}

/* Header */
.p-about-features__hdr {
	width: 340px;
	padding-block: var(--sec-block-md);
	position: relative;
	border-right: 1px solid var(--border-color);
}
.p-about-features__cont:nth-of-type(1) .p-about-features__hdr {
	padding-block-start: 50px;
}
.p-about-features-hdr__txt,
.p-about-features-hdr__txt span {
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
}
.p-about-features-hdr__txt {
	font-size: 2rem;
}
.p-about-features-hdr__txt:before {
	width: 30px;
	height: 1px;
	margin-right: 20px;
	display: inline-block;
	content: '';
	background: var(--c-primary);
	vertical-align: 5px;
}
.p-about-features-hdr__txt span {
	font-size: 4rem;
	margin-left: 10px;
}

@media screen and (max-width: 1280px) {
	.p-about-features__hdr {
		width: 300px;
	}
	.p-about-features-hdr__txt span {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 960px) {
	.p-about-features__cont {
		padding-block: 50px;
		border-bottom: 1px solid var(--border-color);
	}
	.p-about-features__cont:nth-of-type(1) {
		padding-block-start: 0;
	}
	.p-about-features__cont:nth-of-type(3) {
		padding-block-end: 0;
		border-bottom: none;
	}
	.p-about-features__hdr {
		width: 100%;
		margin-bottom: 30px;
		padding-block: 0 !important;
		border-right: none;
	}
	.p-about-features-hdr__txt {
		font-size: 1.8rem;
	}
	.p-about-features-hdr__txt span {
		font-size: 2.5rem;
	}
	.p-about-features-hdr__txt:before {
		width: 25px;
		margin-right: 15px;
	}
}
@media screen and (max-width: 768px) {
	.p-about-features__hdr {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.p-about-features-hdr__txt {
		font-size: 1.6rem;
	}
	.p-about-features-hdr__txt span {
		font-size: 2rem;
	}
	.p-about-features-hdr__txt:before {
		width: 20px;
		margin-right: 15px;
		vertical-align: 4px;
	}
}
@media screen and (max-width: 600px) {
	.p-about-features-hdr__txt {
		font-size: 1.2rem;
	}
	.p-about-features-hdr__txt span {
		margin-left: 5px;
	}
}

/* Contents */
.p-about-features__block {
	width: calc(100% - 440px);
	display: flex;
	align-items: center;
	padding-block: var(--sec-block-md);
	border-bottom: 1px solid var(--border-color);
}
.p-about-features__cont:nth-of-type(1) .p-about-features__block {
	padding-block-start: 50px;
}
.p-about-features__cont:nth-last-of-type(1) .p-about-features__block {
	border-bottom: none;
}
.p-about-features-block__img {
	width: 560px;
	position: relative;
}
.p-about-features-block__img:after {
	width: 100%;
	aspect-ratio: 560 / 443;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/cont_img_cover.png) no-repeat 0 0 / 100%;
}
.p-about-features-block__img img {
	width: 100%;
}
.p-about-features-block__txtarea {
	width: calc(100% - 560px);
	padding-left: 80px;
}
.p-about-features-block__ttl {
	margin-bottom: 15px;
	font-family: var(--font-primary-strong);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.4;
}
.p-about-features-block__txt {
	margin-bottom: 30px;
	font-weight: 500;
}
.p-about-features-block__txt:nth-last-of-type(1) {
	margin-bottom: 0;
}

@media screen and (max-width: 1920px) {
	.p-about-features-block__txtarea {
		width: 720px;
	}
}
@media screen and (max-width: 1919px) {
	.p-about-features__block {
		align-items: flex-start;
	}
}
@media screen and (max-width: 1440px) {
	.p-about-features-block__ttl {
		margin-bottom: 15px;
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-about-features__block {
		width: calc(100% - 300px);
	}
	.p-about-features-block__ttl {
		font-size: 3rem;
	}
}
@media screen and (max-width: 1200px) {
	.p-about-features__block {
		flex-direction: column;
	}
	.p-about-features-block__img {
		width: 100%;
		max-width: 560px;
		margin-bottom: 50px;
	}
	.p-about-features-block__txtarea {
		width: 100%;
		padding-left: 0;
	}
}
@media screen and (max-width: 960px) {
	.p-about-features__block {
		width: 100%;
		padding-block: 0 !important;
	}
	.p-about-features-block__img {
		margin-inline: auto;
	}
	.p-about-features-block__ttl {
		font-size: 2.5rem;
	}
	.p-about-features__block {
		border-bottom: none;
	}
}
@media screen and (max-width: 768px) {
	.p-about-features-block__img {
		margin-bottom: 30px;
	}
	.p-about-features-block__ttl {
		font-size: 2rem;
	}
	.p-about-features-block__txt {
		margin-bottom: 15px;
	}
}


/* サービス
------------------------------------------------- */
/*----- Business -----*/
.p-service-biz {
	margin-bottom :var(--sec-block-lg);
}
.p-service-sec-ttl {
	margin-bottom: 40px;
}
.p-service-sec-lead {
	margin-bottom: 100px;
	text-align: center;
}
.p-service-sec-lead.-flow {
	margin-bottom: 60px;
}

@media screen and (max-width: 1280px) {
	.p-service-sec-lead {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 960px) {
	.p-service-sec-ttl {
		margin-bottom: 30px;
	}
	.p-service-sec-lead {
		margin-bottom: 65px;
	}
}
@media screen and (max-width: 768px) {
	.p-service-sec-ttl {
		margin-bottom: 25px;
	}
	.p-service-sec-lead {
		margin-bottom: 50px;
		text-align: left;
	}
}

/* Contents */
.p-service-biz__cont {
	margin-bottom: 100px;
	padding-bottom: 100px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
}
.p-service-biz__cont:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-service-biz__img {
	width: 560px;
	position: relative;
}
.p-service-biz__img:after {
	width: 100%;
	aspect-ratio: 560 / 443;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/cont_img_cover.png) no-repeat 0 0 / 100%;
}
.p-service-biz__block {
	width: calc(100% - 560px);
	padding-left: 80px;
}
.p-service-biz-block__num,
.p-service-biz-block__num span {
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-weight: 300;
	line-height: 1;
}
.p-service-biz-block__num {
	margin-bottom: 60px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}
.p-service-biz-block__num span {
	margin-left: 5px;
	font-size: 3rem;
}
.p-service-biz-block__ttl {
	margin-bottom: 10px;
	font-family: var(--font-primary-strong);
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
}
.p-service-biz-block__txt {
	margin-bottom: 30px;
}
.p-service-biz-block__txt:nth-last-of-type(1) {
	margin-bottom: 0;
}

@media screen and (max-width: 1920px) {
	.p-service-biz__block {
		width: 1160px;
	}
}
@media screen and (max-width: 1919px) {
	.p-service-biz__cont {
		margin-bottom: 100px;
		padding-bottom: 100px;
		align-items: flex-start;
	}
}
@media screen and (max-width: 1440px) {
	.p-service-biz__block {
		padding-left: 60px;
	}
}
@media screen and (max-width: 1280px) {
	.p-service-biz__cont {
		margin-bottom: 80px;
		padding-bottom: 80px;
	}
	.p-service-biz-block__num {
		margin-bottom: 50px;
	}
	.p-service-biz-block__ttl {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 960px) {
	.p-service-biz__cont {
		margin-bottom: 65px;
		padding-bottom: 65px;
		flex-direction: column;
		align-items: center;
	}
	.p-service-biz__img {
		width: 100%;
		max-width: 600px;
		margin-bottom: 50px;
	}
	.p-service-biz__block {
		width: 100%;
		padding-left: 0;
	}
	.p-service-biz-block__num {
		margin-bottom: 30px;
	}
	.p-service-biz-block__ttl {
		font-size: 2rem;
	}
	.p-service-biz-block__num span {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 768px) {
	.p-service-biz__cont {
		margin-bottom: 50px;
		padding-bottom: 50px;
	}
	.p-service-biz__img {
		margin-bottom: 30px;
	}
	.p-service-biz-block__num span {
		font-size: 2rem;
	}
	.p-service-biz-block__ttl {
		font-size: 1.8rem;
	}
	.p-service-biz-block__txt {
		margin-bottom: 15px;
	}
}

/* ----- Price -----*/
.p-service-price__cont:not(:nth-last-of-type(1)) {
	margin-bottom: 90px;
}
.p-service-price-cont__txt {
	font-weight: 500;
}
.p-service-price-tbl__note {
	font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
	.p-service-price__cont:not(:nth-last-of-type(1)) {
		margin-bottom: 70px;
	}
}
@media screen and (max-width: 768px) {
	.p-service-price__cont:not(:nth-last-of-type(1)) {
		margin-bottom: 50px;
	}
}

/* Table */
.p-service-price__tbl {
	margin-bottom: 5px;
}
.p-service-price-btl__wrap {
	margin-bottom: 10px;
	overflow-x: auto;
}
.p-service-price__tbl table {
	width: 100%;
	min-width: 860px;
	border-collapse: collapse;
	border-top: 1px solid var(--c-secondary);
}
.p-service-price__tbl table th,
.p-service-price__tbl table td {
	border-bottom: 1px solid var(--c-secondary);
	border-left: 1px solid var(--c-secondary);
}
.p-service-price__tbl table th,
.p-service-price__tbl table td {
	padding-inline: 5px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.p-service-price__tbl table th:nth-of-type(1) {
	border-left: none;
}
.p-service-price__tbl table th.-sum,
.p-service-price__tbl table td.-sum {
	font-family: var(--font-primary-strong);
	font-weight: 700;
}
.p-service-price__tbl table th {
	width: 12.6%;
	padding-block: 12px;
}
.p-service-price__tbl table th span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
}
.p-service-price__tbl table th.-lg {
	width: 18.6%;
}
.p-service-price__tbl table td {
	padding-block: 18px 17px;
	line-height: 1.5;
}
.p-service-price__tbl table td.-hdr {
	padding-inline: 20px;
	font-family: var(--font-primary-strong);
	font-weight: 700;
	text-align: left;
	border-left: none;
}

@media screen and (max-width: 1440px) {
	.p-service-price__tbl table th.-lg {
		width: 13%;
	}
}
@media screen and (max-width: 768px) {
	.p-service-price__tbl table {
		min-width: 728px;
	}
	.p-service-price__tbl table td.-hdr {
		padding-inline: 5px;
	}
	.p-service-price__tbl table th.-lg {
		width: 11%;
	}
	.p-service-price__tbl table th, .p-service-price__tbl table td {
		font-size: 1.1rem;
		letter-spacing: 0;
	}
	.p-service-price__tbl table th span {
		font-size: 1.1rem;
	}
}

/* ----- Flow -----*/
.p-service-flow__cont {
	display: flex;
	flex-wrap: wrap;
	gap: 80px 100px;
}
.p-service-flow__group {
	width: calc((100% - 300px) / 4);
	display: flex;
	flex-direction: column;
	position: relative;
}
.p-service-flow__group:after {
	width: 25px;
	aspect-ratio: 1;
	content: '';
	position: absolute;
	top: 140px;
	right: -50px;
	border-top: 1px solid var(--c-primary);
	border-right: 1px solid var(--c-primary);
	transform: rotate(45deg);
}
.p-service-flow__group:nth-last-of-type(1):after {
	display: none;
}
.p-service-flow-group__num {
	width: 100px;
	margin-bottom: 40px;
	margin-inline: auto;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 100%;
}
.p-service-flow-group__num span {
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 3rem;
	font-weight: 200;
	letter-spacing: 0;
	line-height: 1;
	transform: translateY(3px);
}
.p-service-flow-group__ttl {
	margin-bottom: 20px;
	font-family: var(--font-primary-strong);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.p-service-flow-group__txt {
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
	.p-service-flow-group__num {
		width: 80px;
		margin-bottom: 30px;
	}
	.p-service-flow-group__num span {
		font-size: 2.5rem;
	}
	.p-service-flow-group__ttl {
		font-size: 2rem;
	}
	.p-service-flow__cont {
		gap: 80px 60px;
	}
	.p-service-flow__group {
		width: calc((100% - 180px) / 4);
	}
	.p-service-flow__group:after {
		width: 20px;
		top: 109px;
		right: -32px;
	}
}
@media screen and (max-width: 960px) {
	.p-service-flow__cont {
		flex-direction: column;
		align-items: center;
	}
	.p-service-flow__group {
		width: 100%;
	}
	.p-service-flow__group:after {
		top: auto;
		right: 50%;
		bottom: -41px;
		transform: translateX(50%) rotate(135deg);
	}
	.p-service-flow-group__num {
		width: 64px;
		margin-bottom: 20px;
	}
	.p-service-flow-group__num span {
		font-size: 2rem;
	}
}
@media screen and (max-width: 768px) {
	.p-service-flow__cont {
		gap: 50px;
	}
	.p-service-flow__group:after {
		bottom: -25px;
	}
	.p-service-flow-group__num {
		width: 50px;
	}
	.p-service-flow-group__num span {
		font-size: 1.8rem;
	}
	.p-service-flow-group__ttl {
		font-size: 1.8rem;
	}
}


/* よくあるご質問
------------------------------------------------- */
.p-faq {
	margin-bottom: var(--sec-block-lg);
}
.p-faq__group {
	width: 100%;
	padding-block: 42px 48px;
	padding-left: 20px;
	border-bottom: 1px solid var(--border-color);
}
.p-faq__group:nth-of-type(1) {
	border-top: 1px solid var(--border-color);
}
.p-faq-group__hdr,
.p-faq-group__ansarea {
    padding-inline: 105px 0;
}
.p-faq-group__hdr {
	position: relative;
}
.p-faq-group__hdr:before {
	content: 'Q';
	position: absolute;
	top: 2px;
	left: 0;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 4rem;
	font-weight: 300;
	line-height: 1;
}
.p-faq-group-hdr__txt {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
}
.p-faq-group__ansarea {
	padding-block: 15px 0;
}
.p-faq-group-ansarea__txt {
	line-height: 1.8;
}

@media screen and (max-width: 1440px) {
	.p-faq__inner .c-page-lead {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-faq__group:nth-of-type(1) {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-faq-group__hdr,
	.p-faq-group__ansarea {
		padding-inline: 85px 0;
	}
	.p-faq-group__hdr:before {
		font-size: 3.5rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-faq-group__hdr,
	.p-faq-group__ansarea {
		padding-inline: 65px 0;
	}
	.p-faq-group__hdr:before {
		font-size: 3.2rem;
	}
	.p-faq-group-hdr__txt {
		font-size: 2rem;
	}
}
@media screen and (max-width: 960px) {
	.p-faq__group {
		padding-block: 35px 38px;
	}
	.p-faq-group__hdr,
	.p-faq-group__ansarea {
		padding-inline: 55px 0;
	}
	.p-faq-group__hdr:before {
		top: 6px;
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 768px) {
	.p-faq__group {
		padding-block: 25px 28px;
		padding-left: 0;
	}
	.p-faq-group__hdr,
	.p-faq-group__ansarea {
		padding-inline: 30px 0;
	}
	.p-faq-group__hdr:before {
		top: 5px;
		font-size: 2rem;
	}
	.p-faq-group-hdr__txt {
		font-size: 1.8rem;
	}
}


/* お知らせ/ブログ
------------------------------------------------- */
.p-tpics__wrap {
	padding-bottom: var(--sec-block-lg);
	display: flex;
	justify-content: space-between;
	gap: 180px;
	border-bottom: 1px solid var(--border-color);
}

@media screen and (max-width: 1440px) {
	.p-topics .c-page-lead,
	.p-topics__item:nth-of-type(1),
	.p-topics__item:nth-of-type(2),
	.p-topics-side__block:nth-of-type(1) {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
}
@media screen and (max-width: 1280px) {
	.p-tpics__wrap {
		gap: 60px;
	}
}
@media screen and (max-width: 960px) {
	.p-tpics__wrap {
		flex-direction: column;
	}
}

/*----- List -----*/
.p-topics__cont {
	width: calc(100% - 520px);
}
.p-topics__item {
	width: 100%;
}
.p-topics__item a {
	padding: 52px 10px 46px;
	display: block;
	position: relative;
	border-bottom: 1px solid var(--border-color);
}
.p-topics__item:nth-of-type(1) a {
	border-top: 1px solid var(--border-color);
}
.p-topics__item a:before,
.p-topics__item a:after {
	content: '';
	position: absolute;
}
.p-topics__item a:before {
	width: 20px;
	aspect-ratio: 20 / 9;
	top: 50%;
	right: 20px;
	background: url(../images/arr_btn_b.svg) no-repeat 0 0 / 100%;
	transition: all .4s ease-in-out;
}
.p-topics__item a:after {
	width: 100%;
	height: 1px;
	bottom: -1px;
	left: 0;
	background: var(--c-primary);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .5s;
}
.p-topics-item__meta {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.p-topics-item__date {
	width: 110px;
	padding-top: 3px;
	font-family: var(--font-secondary);
	font-size: 1.4rem;
	font-weight: 200;
	line-height: 1;
}
.p-topics-item__cat {
	display: flex;
	gap: 10px;
}
.p-topics-item-cat__item {
	padding: 5px 13px;
	color: var(--c-primary);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	border: 1px solid var(--c-primary);
	border-radius: 5px;
}
.p-topics-item__ttl {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
	.p-topics__item a:hover:before {
		right: 10px;
	}
	.p-topics__item a:hover:after {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}

/* ----- Sidebar -----*/
.p-topics__side {
	width: 340px;
	position: relative;
}
.p-topics-side__inner {
	width: 340px;
}
.p-topics-side__block {
	margin-bottom: 70px;
}
.p-topics-side__block:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-topics-side-block__ttl {
	margin-bottom: 50px;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 3rem;
	font-weight: 200;
	letter-spacing: .05em;
	line-height: 1;
}
.p-topics-side__block:nth-of-type(1) .p-topics-side-block__ttl {
	margin-bottom: 25px;
}
.p-topics-side-block__ul li a {
	padding: 25px 10px;
	display: block;
	position: relative;
	color: #121212;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	border-bottom: 1px solid var(--border-color);
}
.p-topics-side-block__ul li a:after {
	width: 100%;
	height: 1px;
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	background: var(--c-primary);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

@media (hover: hover) and (pointer: fine) {
	.p-topics-side-block__ul li a:hover:after {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}

@media screen and (max-width: 1280px) {
	.p-topics__cont {
		width: calc(100% - 290px);
	}
	.p-topics__side,
	.p-topics-side__inner {
		width: 230px;
	}
	.p-topics-side-block__ttl {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 960px) {
	.p-topics__cont,
	.p-topics__side,
	.p-topics-side__inner {
		width: 100%;
	}
	.p-topics-item__ttl {
		font-size: 2rem;
	}
	.p-topics-side__block {
		margin-bottom: 50px;
	}
	.p-topics-side-block__ttl {
		margin-bottom: 20px;
		font-size: 2.2rem;
	}
	.p-topics-side__block:nth-of-type(1) .p-topics-side-block__ttl {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 768px) {
	.p-topics-item__ttl {
		font-size: 1.8rem;
	}
	.p-topics__item a {
		padding: 30px 40px 26px 0;
	}
	.p-topics__item a:before {
		right: 0;
	}
	.p-topics-side-block__ttl {
		font-size: 2rem;
	}
	.p-topics-side__block:nth-of-type(1) .p-topics-side-block__ttl {
		margin-bottom: 10px;
	}
	.p-topics-side-block__ul li a {
		padding: 15px 0px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 600px) {
	.p-topics-side-block__ul li a {
		font-size: 1.4rem;
	}
}

/* ----- pager -----*/
.p-pager {
	display: none;
	font-size: 0;
	text-align: center;
}
.page-numbers {
	width: 70px;
	height: 70px;
	margin: 100px 15px 0 0;
	padding: 28px 0;
	display: inline-block;
	color: var(--c-primary);
	font-family: var(--font-secondary);
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	border: 1px solid var(--c-primary);
	border-radius: 100%;
	transition: all .3s ease-in-out;
}
.next.page-numbers {
	margin: 0;
}
.page-numbers.current {
	color: #fff;
	background: var(--c-primary);
}
@media (hover: hover) and (pointer: fine) {
	.page-numbers:hover {
		color: #fff;
		background: var(--c-primary);
	}
}

@media screen and (max-width: 960px) {
	.page-numbers {
		width: 56px;
		height: 56px;
		margin: 80px 15px 0 0;
		padding: 22px 0;
	}
}
@media screen and (max-width: 768px) {
	.page-numbers {
		width: 40px;
		height: 40px;
		margin: 30px 5px 0 0;
		padding: 14px 0;
		font-size: 1.2rem;
	}
	.prev.page-numbers,
	.next.page-numbers {
		padding: 15px 0;
		font-size: 1rem;
		transform: translateY(-1px);
	}
}


/* 詳細記事
------------------------------------------------- */
.p-entry-header {
	margin-bottom: 40px;
	padding: 80px 0px;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.p-topics-item__meta.-detail {
	margin-bottom: 10px;
}
.p-entry-ttl {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1.5;
}

.p-entry-cont {
	margin-bottom: 100px;
}
.p-entry-cont::after {
  content: "";
  display: block;
  clear: both;
}
.p-entry-cont p {
	margin-bottom: 30px;
}
.p-about-greeting__txt:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-post-cont img {
	margin-bottom: 10px;
}

@media screen and (max-width: 1440px) {
	.p-entry-header {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
}
@media screen and (max-width: 960px) {
	.p-entry-header {
		padding: 60px 0px;
	}
	.p-entry-cont {
		margin-bottom: 80px;
	}
	.p-entry-ttl {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 768px) {
	.p-entry-header {
		padding: 20px 0px;
	}
	.p-entry-cont {
		margin-bottom: 60px;
	}
	.p-entry-ttl {
		font-size: 2rem;
	}
	.p-entry-cont p {
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 600px) {
	.p-entry-cont {
		margin-bottom: 40px;
	}
}

.p-entry-cont h2 {
	font-size: 2.4rem;
	margin: 0 0 20px;
	padding: 0 0 0 14px;
	position: relative;
  font-family: var(--font-primary-strong);
}
.p-entry-cont h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--c-primary);
  border-radius: 5px;
}
.p-entry-cont h3 {
	font-size: 2.0rem;
	margin: 0 0 20px;
	padding: 0 0 0 14px;
	position: relative;
  font-family: var(--font-primary-strong);
}
.p-entry-cont h3::before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 15px;
	width: 2px;
	height: 2px;
	background: var(--c-primary);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-entry-cont h4 {
	font-size: 1.8rem;
	margin-bottom: 20px;
  font-family: var(--font-primary-strong);
}
.p-entry-cont img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-entry-cont img.alignright {
  margin: 0 0 0 10px;
  display: inline;
}	 
.p-entry-cont img.alignleft {
  margin: 0 10px 0 0;
  display: inline;
}			 
.p-entry-cont table {
  margin-bottom: 50px;
  width: 100%;
  border-bottom: 1px solid #c8d8c4;
}				 
.p-entry-cont table th ,.p-entry-cont table td {
  padding: 30px 20px;
  border-top: 1px solid #c8d8c4;
}				 
.p-entry-cont table th {
  width: 20%;
}	 
.p-entry-cont .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
.p-entry-cont .alignright {
  float: right;
} 
.p-entry-cont .alignleft {
  float: left;
}
.p-entry-cont p {
	margin-bottom: 20px;
	font-size: 1.8rem;
}
.p-entry-cont img {
	margin-bottom: 10px;
}
.p-entry-cont a {
	text-decoration: under-line;
}
@media screen and (max-width: 1200px) {
  .p-entry-cont {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 769px) {
  .p-entry-cont {
    margin-bottom: 50px;
  }			 
	.p-entry-cont h2 {
		font-size: 1.8rem;
	}
	.p-entry-cont h3 {
		font-size: 1.6rem;
	}
	.p-entry-cont h3::before {
		top: 12px;
	}
	.p-entry-cont h4 {
		font-size: 1.4rem;
	}
  .p-entry-cont table {
    margin-bottom: 50px;
    width: 100%;
    border-bottom: 1px solid #c8d8c4;
  }				 
  .p-entry-cont table th ,.p-entry-cont table td {
    padding: 25px 0;
    border-top: 1px solid #c8d8c4;
  }				 
  .p-entry-cont table th {
    width: 40%;
  }	 
  .p-entry-cont img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-entry-cont img.alignright {
    margin: 0 auto;
    display: block;
  }	 
  .p-entry-cont img.alignleft {
    margin: 0 auto;
    display: block;
  }		 
  .p-entry-cont .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  .p-entry-cont .alignright {
    float: none;
  } 
  .p-entry-cont .alignleft {
    float: none;
  }
  .p-entry-cont p{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .p-entry-cont {
    padding: 0;
  }
}


/* ----- Pagenation -----*/
.p-pagenation {
    width: 100%;
    max-width: 905px;
    display: flex;
    justify-content: center;
    position: relative;
}
.p-pagenation__turn {
	width: 180px;
	position: absolute;
	top: 0;
}
.p-pagenation__turn.-prev {
    left: 0;
}
.p-pagenation__turn.-next {
    right: 0;
}
.p-pagenation__turn a {
	padding-bottom: 20px;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-weight: 500;
	letter-spacing: .15em;
	line-height: 1;
	border-bottom: 2px solid var(--c-primary);
}
.p-pagenation__turn.-prev a {
	text-align: right;
}
.p-pagenation__turn.-prev a:before,
.p-pagenation__turn.-next a:after {
    width: 20px;
    aspect-ratio: 4 / 3;
	content: '';
	position: absolute;
	top: 3px;
	background: url(../images/arr_t.png) 0px 0px / 100% no-repeat;
}
.p-pagenation__turn.-prev a:before {
	left: 0;
	background: url(../images/arr_btn_b_lt.svg) no-repeat 0 0 / 100%;
}
.p-pagenation__turn.-next a:after {
	right: 0;
	background: url(../images/arr_btn_b.svg) no-repeat 0 0 / 100%;
}
.p-pagenation__turn.-prev a:after,
.p-pagenation__turn.-next a:before {
	width: 0;
	height: 2px;
	content: '';
	position: absolute;
	bottom: -2px;
	background: var(--c-body);
	transition: .4s;
}
.p-pagenation__turn.-prev a:after {
	right: 0;
}
.p-pagenation__turn.-next a:before {
	left: 0;
}
@media (hover: hover) and (pointer: fine) {
	.p-pagenation__turn.-prev a:hover:after,
	.p-pagenation__turn.-next a:hover:before {
		width: 100%;
	}
}

.p-pagenation__btn {
	width: 220px;
}
.p-pagenation__btn a {
	padding-bottom: 20px;
	display: block;
	position: relative;
	color: var(--c-primary);
	font-weight: 500;
	text-align: center;
	letter-spacing: .15em;
	line-height: 1;
	border-bottom: 2px solid var(--c-primary);
}
.p-pagenation__btn a:after {
	width: 0;
	height: 2px;
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	background: var(--c-body);
	transition: .4s;
	transform: translateX(-50%);
}
@media (hover: hover) and (pointer: fine) {
	.p-pagenation__btn a:hover:after {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.p-pagenation {
		max-width: 500px;
		margin-inline: auto;
	}
	.p-pagenation__turn {
		width: 90px;
	}
	.p-pagenation__turn a {
		padding-bottom: 15px;
		font-size: 1.2rem;
	}
	.p-pagenation__turn.-prev a:before,
	.p-pagenation__turn.-next a:after {
		width: 16px;
		top: 2px;
	}
	.p-pagenation__btn {
		width: 100px;
	}
	.p-pagenation__btn a {
		padding-bottom: 15px;
		font-size: 1.2rem;
	}
}


/* お問い合わせ
------------------------------------------------- */
/*----- Tel -----*/
.p-ctc-tel-lead {
	margin-bottom: 120px;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}

.p-ctc-tel {
	margin-bottom: var(--sec-block-lg);
	padding-bottom: var(--sec-block-lg);
	border-bottom: 1px solid var(--border-color);
}
.p-ctc-tel__num,
.p-ctc-tel__num a {
	color: var(--c-bk);
	font-family: var(--font-secondary);
	font-weight: 300;
	letter-spacing: .05em;
	line-height: 1;
}
.p-ctc-tel__num {
	margin-bottom: 15px;
	font-size: 2.5rem;
	text-align: center;
}
.p-ctc-tel__num a {
	font-size: 5rem;
}
.p-ctc-tel__addr {
	color: var(--c-bk);
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
}

@media screen and (max-width: 1440px) {
	.p-ctc-tel-lead {
		margin-bottom: 100px;
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-ctc-tel .c-sec-ttl02 {
		animation: translate 0.5s ease-in-out 0.5s forwards;
	}
	.p-ctc-tel__num a {
		font-size: 4.5rem;
	}
}
@media screen and (max-width: 1280px) {
	.p-ctc-tel-lead {
		margin-bottom: 80px;
	}
	.p-ctc-tel__num a {
		font-size: 4rem;
	}
}
@media screen and (max-width: 960px) {
	.p-ctc-tel-lead {
		font-size: 2rem;
	}
	.p-ctc-tel__num {
		font-size: 2rem;
	}
	.p-ctc-tel__num a {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 768px) {
	.p-ctc-tel-lead {
		margin-bottom: 60px;
		font-size: 1.6rem;
		text-align: left;
	}
	.p-ctc-tel__num {
		font-size: 1.6rem;
	}
	.p-ctc-tel__num a {
		font-size: 2.5rem;
	}
}

/* ----- Mail -----*/
.p-ctc-mail {
	padding-bottom: var(--sec-block-lg);
	border-bottom: 1px solid var(--border-color);
}
.p-ctc-mail-wrap {
	display: flex;
	justify-content: space-between;
	gap: 0 var(--sec-inline-md);
}
.p-ctc-mail__guide {
	width: 260px;
	position: relative;
}
.p-ctc-mail-guide__inner {
	width: 260px;
}
.p-ctc-mail-guide__item {
	margin-bottom: 90px;
	position: relative;
	font-family: var(--font-primary-strong);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .15em;
	line-height: 1;
}
.p-ctc-mail-guide__item:nth-last-of-type(1) {
	margin-bottom: 0;
}
.p-ctc-mail-guide__item:before,
.p-ctc-mail-guide__item:after {
	content: '';
}
.p-ctc-mail-guide__item:before {
	width: 15px;
	aspect-ratio: 1;
	margin-right: 30px;
	display: inline-block;
	border: 1px solid var(--c-secondary);
	border-radius: 100%;
	vertical-align: -1px;
}
#form01 .form01:before,
#form03 .form02:before,
#form04 .form03:before {
	border-width: 3px;
	border-color: var(--c-primary);
}
.p-ctc-mail-guide__item:after {
	width: 1px;
	height: 93px;
	position: absolute;
	bottom: -91px;
	left: 7px;
	background: var(--c-secondary);
}
.p-ctc-mail-guide__item:nth-last-of-type(1):after {
	display: none;
}

@media screen and (max-width: 1440px) {
	.p-ctc-mail__guide,
	.p-ctc-mail-guide__inner {
		width: 200px;
	}
}
@media screen and (max-width: 1280px) {
	.p-ctc-mail__guide,
	.p-ctc-mail-guide__inner {
		width: 150px;
	}
}
@media screen and (max-width: 960px) {
	.p-ctc-mail-wrap {
		flex-direction: column;
		align-items: center;
	}
	.p-ctc-mail__guide {
		width: 100%;
		margin-bottom: 50px;
	}
	.p-ctc-mail-guide__inner {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.p-ctc-mail-guide__item {
		margin-right: 60px;
		margin-bottom: 0;
	}
	.p-ctc-mail-guide__item:nth-last-of-type(1) {
		margin-right: 0;
	}
	.p-ctc-mail-guide__item:before {
		margin-bottom: 10px;
		margin-inline: auto;
		display: block;
	}
	.p-ctc-mail-guide__item:after {
		width: 60px;
		height: 1px;
		top: 7px;
		left: 100%;
	}
}
@media screen and (max-width: 768px) {
	.p-ctc-mail-guide__item {
		font-size: 1.4rem;
	}
}

/* ----- Form -----*/
.p-ctc-form-wrap {
	width: calc(100% - 260px - var(--sec-inline-md));
}
.p-ctc-form__body {
	margin-bottom: 50px;
}
.p-ctc-form__dl {
	border-bottom: 1px solid var(--border-color);
}
.p-ctc-form__dl:nth-of-type(1) {
	border-top: 1px solid var(--border-color);
}
.p-ctc-form__dl {
	padding-block: 24px;
	display: flex;
	align-items: center;
}
.p-ctc-form__dl dt,
.p-ctc-form__dl dd,
.p-ctc-form__note {
	font-weight: 500;
}
.p-ctc-form__dl dt {
	width: 380px;
	padding-left: 50px;
	flex-shrink: 0;
	position: relative;
}
.p-ctc-form__dl dd {
	width: 980px;
	padding-left: 50px;
}
.p-ctc-form__dl input[type="radio"] {
	margin-right: 10px;
}
.p-ctc-form__dl dd label {
	margin-right: 20px;
	display: inline-block;
}
.p-ctc-form__note {
	margin-bottom: 5px;
	display: block;
	color: #121212;
	font-size: 1.4rem;
}

.p-ctc-form__check {
    width: fit-content;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 0;
    text-align: center;
}
.p-ctc-form__check input[type="checkbox"] {
    margin-right: 10px;
    display: inline-block;
    vertical-align: -1px;
}
.p-ctc-form-check__txt {
    display: inline-block;
    position: relative;
    font-size: 1.3rem;
	font-weight: 500;
    line-height: 1;
}

.p-ctc-form__btnarea {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 40px;
}

@media screen and (max-width: 1780px) {
	.p-ctc-form__dl dt {
		padding-left: 0;
	}
}
@media screen and (max-width: 1440px) {
	.p-ctc-form-wrap {
		width: calc(100% - 200px - var(--sec-inline-md));
	}
	.p-ctc-form__dl dt {
		width: 300px;
	}
	.p-ctc-form__dl dd {
		width: calc(100% - 300px);
	}
}
@media screen and (max-width: 1280px) {
	.p-ctc-form-wrap {
		width: calc(100% - 150px - var(--sec-inline-md));
	}
	.p-ctc-form__dl dt {
		width: 260px;
	}
	.p-ctc-form__dl dd {
		width: calc(100% - 260px);
	}
}
@media screen and (max-width: 960px) {
	.p-ctc-form-wrap {
		width: 100%;
	}
	.p-ctc-form__dl {
		flex-direction: column;
		align-items: flex-start;
	}
	.p-ctc-form__dl dt {
		width: 100%;
		margin-bottom: 10px;
	}
	.p-ctc-form__dl dd {
		width: 100%;
		padding-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.p-ctc-form__btnarea {
		flex-direction: column;
		align-items: center;
	}
	.p-ctc-form__note {
		font-size: 1.2rem;
	}
	.p-ctc-form-check__txt {
		font-size: 1.3rem;
	}
}

/* Pp */
.p-ctc-form__pp {
	width: 100%;
	height: 350px;
	margin-bottom: 50px;
	padding: 40px;
	color: #121212;
	font-size: 1.4rem;
	line-height: 1.75;
	border: 1px solid var(--border-color);
	overflow: auto;
}
.p-ctc-form__pp p:not(:nth-last-of-type(1)) {
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.p-ctc-form__pp {
		height: 200px;
		margin-bottom: 30px;
		padding: 15px;
	}
	.p-ctc-form__pp p {
		margin-bottom: 10px;
		font-size: 1.3rem;
		line-height: 1.75;
	}
}

/* ----- 確認画面、完了画面 -----*/
#form02 .form02:before {
	border-width: 3px;
	border-color: var(--c-primary);
}

.p-ctc-lead {
	text-align: center;
	border-radius: 10px;
	font-weight: 700;
	background: #fff;
}
.p-ctc-lead.-complete {
	padding: 50px;
}
#form02 .p-ctc-lead,
#form03 .p-ctc-lead {
	padding: 20px;
	font-size: 1.6rem;
	line-height: 1.75;
}
#form04 .p-ctc-lead {
	margin-bottom: 130px;
}
.p-ctc-lead.-error {
	margin-bottom: 60px;
	color: #b10000;
	border: 3px solid #b10000;
}
.p-ctc-lead.-confirm {
	margin-bottom: 60px;
	color: var(--c-primary);
	border: 3px solid var(--c-primary);
}

.error_messe {
    color: #b10000;
}

@media screen and (max-width: 768px) {
	.p-ctc-lead {
		font-size: 1.4rem;
		text-align: left;
	}
	.p-ctc-lead.-complete {
		padding: 20px;
	}

	#form02 .p-ctc-form__dl dt,
	#form03 .p-ctc-form__dl dt {
		font-family: var(--font-primary-strong);
		font-weight: 700;
	}
}

/* Contactform7 */
.error_messe {
	color: #b10000;
	font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
	.error_messe {
		font-size: 1.3rem;
	}
}
.wpcf7-spinner {
	display: none !important;
}
.wpcf7-not-valid-tip {
	font-size: 1.2rem !important;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors,
div.wpcf7-response-output {
	font-weight: bold;
	text-align: center;
	padding: 20px !important;
	margin: 0 auto 40px !important;
	border-radius: 10px !important;
	background: #fff !important;
}
div.wpcf7-response-output,
div.wpcf7-spam-blocked {
	border: 2px solid #ffa500 !important;
	color: #ffa500 !important;
}
.wpcf7-form-control .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-list-item-label {
	cursor: pointer;
}


/* Utility
------------------------------------------------- */
/* ---------- Display ----------*/
.u-m-xxl,
.u-m-xl,
.u-m-lg,
.u-m-md,
.u-m-sm,
.u-m-xs { display: none;}
.u-p-xxl,
.u-p-xl,
.u-p-lg,
.u-p-md,
.u-p-sm,
.u-p-xs { display: block;}
@media screen and (max-width: 1440px) {
	.u-m-xxl { display: block;}
	.u-p-xxl { display: none;}
}
@media screen and (max-width: 1280px) {
	.u-m-xl { display: block;}
	.u-p-xl { display: none;}
}
@media screen and (max-width: 1024px) {
	.u-m-lg { display: block;}
	.u-p-lg { display: none;}
}
@media screen and (max-width: 960px) {
	.u-m-md { display: block;}
	.u-p-md { display: none;}
}
@media screen and (max-width: 768px) {
	.u-m-sm { display: block;}
	.u-p-sm { display: none;}
}
@media screen and (max-width: 600px) {
	.u-m-xs { display: block;}
	.u-p-xs { display: none;}
}
