@charset "UTF-8"; 
*,
*::before,
*::after {box-sizing:border-box;}
* {margin:0; vertical-align:baseline; padding:0; font-style:inherit; font-family:inherit; font-weight:inherit; text-decoration:none; border:0; outline:0;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {margin:0; vertical-align:baseline; padding:0; font-size:100%; text-decoration:none;color:inherit; background:none; border:0; font:inherit; }
button {cursor:pointer;}
img {display:block; width:100%; height:auto;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
html {font-size:62.5%;}
body {line-height:1; line-height:1.5; --letter-spacing:.05em; font-size:1.8rem; font-family:"Noto Sans JP", sans-serif; font-weight:500; color:var(--text-color-black); overflow-y:auto; scrollbar-gutter:stable; }
* {letter-spacing:var(--letter-spacing);}
.is-navi {overflow:hidden;}
@media screen and (max-width:960px) {
	body {font-size:1.6rem;}
}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {content:""; content:none;}
table {border-collapse:collapse;border-spacing:0;}
::-moz-selection {color:var(--color-white); background-color:var(--color-gold);}
::selection {color:var(--color-white); background-color:var(--color-gold);}

:root {
	--color-black-primary: #333333;
	--color-white-primary:#ffffff;
	--color-lightgray-primary: #F9F9F9;
	--color-lightgray-secondary: #E7E7E7;
	--color-lightgray-tertiary: #dfdfdf;
	--color-red-primary: #C12B2B;
	--color-gray-primary: #C6C6C6;
	--color-green-primary: #2B905A;
	--color-blue-primary: #2A93E0;
	--color-blue-secondary: #2082C9;
	--color-blue-tertiary: #0b6bb0;
	--solid-shadow-primary: 0 3px 0 var(--color-gray-primary);
	--solid-shadow-secondary: 0 3px 0 var(--color-lightgray-tertiary);
	--corner-radius-small: 4px;
	--corner-radius-medium: 16px;
	--letter-spacing: 0;
	--content-padding: 40px;
	--content-width:min(1440px,calc(100vw - var(--content-padding) * 2));
	--content-width-wide:min(1600px,calc(100vw - var(--content-padding) * 2));
	--content-width-narrow:min(1080px,calc(100vw - var(--content-padding) * 2));
}
.is-pagetop:not(.is-navi) {--header-height:104px;}
.keep-all {word-break:keep-all!important;}
.align-center {text-align:center!important;}
@media screen and (max-width:960px) {
	:root {
		--content-padding: 32px;
		--header-height: 60px;
	}
	.is-pagetop:not(.is-navi) {
		--header-height: 60px;
	}
}
@media screen and (max-width:600px) {
	body {
		font-size: 1.4rem;
	}
	:root {
		--content-padding:20px;
	}
}
@media not screen and (max-width:960px) {
	.pc-none {
		display: none!important;
	}
}
@media screen and (max-width:960px) {
	.sp-none {
		display: none!important;
	}
}

.page-wrapper {
	background: url("../images/bg-pattern.svg") center/100% repeat;
	background-color: var(--color-lightgray-primary);
}
.site-main {
	overflow: clip;
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 16px 0 0;
	z-index: 12;
}
.site-header__inner {
	display: flex;
	justify-content: space-between;
	width: var(--content-width-wide);
	align-items: center;
	margin: 0 auto;
}
.site-header__logo {
	position: relative;
	height: 64px;
	z-index: 8;
}
.site-header__logo a {
	display: block;
	height: 100%;
	transition: opacity .25s;
}
.site-header__logo img {
	width: auto;
	height: 100%;
}
.site-header__logo a:hover {
	opacity: .5;
}
.site-navi {
	background: var(--color-white-primary);
	display: flex;
	justify-content: space-between;
	gap: 0 40px;
	height: 72px;
	padding: 0 32px;
	border-radius: var(--corner-radius-medium);
	box-shadow: var(--solid-shadow-secondary);
}
.site-navi__item>a {
	display: flex;
	flex-direction: column;
	justify-content: center;	
	align-items: center;
	gap: 4px;
	height: 100%;
	text-align: center;
	line-height: 1.5;
	transition: opacity 0.25s;
}
.site-navi__item>a::after {
	content: "";
	width: 24px;
	height: 24px;
	background: var(--color-green-primary);
	-webkit-mask: url("../images/arrow-down.svg") center/contain no-repeat;
	mask: url("../images/arrow-down.svg") center/contain no-repeat;
	transition: transform 0.25s;
}
@media (hover: hover) {
	:where(.site-navi:has(.site-navi__item>a:hover)) .site-navi__item>a:not(:hover) {
		opacity: .25;
	}
}
.site-navi__item>a:hover::after {
	transform: translate(0,4px);
}
.header-menu-button {
	position: relative;
	display: none;
	width: 48px;
	height: 48px;
	background: none;
}
.header-menu-button__line {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2px;
	width: 32px;
	transform: translate(-50%,-50%);
	background: var(--color-green-primary);
	transition: transform 0.25s 0s, top 0.25s 0.25s, opacity 0.25s;
}
.header-menu-button__line:first-of-type {
	top: calc(50% - 8px);
}
.header-menu-button__line:last-of-type {
	top: calc(50% + 8px);
}
.is-menu-open .header-menu-button__line {
	transition: transform 0.25s 0.25s, top 0.25s, opacity 0.25s;
}
.is-menu-open .header-menu-button__line:first-of-type {
	top: 50%;
	transform: translate(-50%,-50%) rotate(30deg);
}
.is-menu-open .header-menu-button__line:nth-of-type(2) {
	opacity: 0;
}
.is-menu-open .header-menu-button__line:last-of-type {
	top: 50%;
	transform: translate(-50%,-50%) rotate(-30deg) ;
}
@media screen and (max-width:960px) {
	.site-header__logo {
		height: 48px;
	}
	.header-menu-button {
		display: block;
	}
	.site-navi-wrapper {
		position: fixed;
		inset: 0;
		padding: 80px 16px 16px;
		background: rgba(12,12,12,0.88);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s;
	}
	.site-navi {
		flex-direction: column;
		height: auto;
		justify-content: flex-start;
		padding: 16px 16px;
		transform: translate(0,-16px);
		transition: transform 0.25s;
	}
	.is-menu-open .site-navi-wrapper {
		opacity: 1;
		pointer-events: auto;
	}
	.is-menu-open .site-navi {
		transform: none;
	}
	.site-navi__item>a {
		padding: 16px 0;
		flex-direction: row;
		justify-content: space-between;
		border-bottom: 1px solid var(--color-black-primary);
	}
	.site-navi__item>a::after {
		position: static;
		-webkit-mask-image:url("../images/arrow-right.svg");
		mask-image:url("../images/arrow-right.svg");
	}
}
.fixed-contact-button {
	position: fixed;
	right: 0;
	bottom: 12%;
	z-index: 12;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 12px 24px;
	color: var(--color-white-primary);
	background: var(--color-blue-primary);
	border-radius: 32px 0 0 32px;
	transition: background-color 0.25s;
}
.fixed-contact-button__icon {
	padding: 2px;
	width: 40px;
	border-radius: 1000px;
	background: #2082C9;
	box-shadow: 0 4px 4px rgba(0,0,0,.32) inset;
}
.fixed-contact-button::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: var(--color-white-primary);
	-webkit-mask: url("../images/arrow-right.svg") center/contain no-repeat;
	mask: url("../images/arrow-right.svg") center/contain no-repeat;
}
.fixed-contact-button__label {
	display: block;
	writing-mode: vertical-lr;
}
.fixed-contact-button:hover {
	background-color: var(--color-blue-tertiary);
}
@media screen and (max-width:960px) {
	.fixed-contact-button {
		transform: none;
		top: auto;
		bottom: 40px;
		padding: 8px 8px 16px;
	}
}

.body-text {
	display: grid;
	gap: 16px;
}

.section {
	position: relative;
	z-index: 0;
	padding: 92px 0;
}
.section--has-bg {
	padding: 112px 0;
}
.section__inner {
	width: var(--content-width-narrow);
	margin: 0 auto;
}
.section__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section__bg--blur::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	backdrop-filter: blur(4px);
}
.section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 64px;
	gap: 24px;
	font-size: 4.8rem;
	font-weight: bold;
	text-align: center;
}
.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: url("../images/title-border-horizontal.svg") center/100% no-repeat;
}
.section-title--white {
	color: var(--color-white-primary);
}
.section-title--white::after {
	background-image: url("../images/title-border-horizontal-white.svg");
}
@media screen and (max-width:960px) {
	.section {
		padding: 64px 0;
	}
	.section-title {
		font-size: 3.2rem;
		margin-bottom: 48px;
	}
}

.primary-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: fit-content;
	padding: 16px 24px;
	background: var(--color-lightgray-secondary);
	border-radius: var(--corner-radius-medium);
	text-align: center;
	max-width: 320px;
	min-width: 240px;
	transition: color 0.25s,background-color 0.25s
}
.primary-button::after {
	content: "";
	display: block;
	margin: 0 0 0 12px;
	width: 24px;
	height: 24px;
	background: var(--color-green-primary);
	-webkit-mask: url("../images/arrow-right.svg") center/contain no-repeat;
	mask: url("../images/arrow-right.svg") center/contain no-repeat;
	transition: transform 0.25s;
}
.primary-button:hover {
	color: var(--color-white-primary);
	background-color: var(--color-black-primary);
}
.primary-button:hover::after {
	transform: translate(8px,0);
}
.primary-button--align-center {
	margin: 0 auto;
}

.submit-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: fit-content;
	padding: 16px 24px;
	background: var(--color-lightgray-secondary);
	border-radius: var(--corner-radius-medium);
	text-align: center;
	font-size: inherit;
	max-width: 320px;
	min-width: 240px;
	transition: color 0.25s,background-color 0.25s
}
/* .submit-button::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: var(--color-green-primary);
	-webkit-mask: url("../images/arrow-right.svg") center/contain no-repeat;
	mask: url("../images/arrow-right.svg") center/contain no-repeat;
	transition: transform 0.25s;
}
.submit-button:not([disabled]):hover::after {
	transform: translate(8px,0);
} */
.submit-button:not([disabled]):hover {
	color: var(--color-white-primary);
	background-color: var(--color-black-primary);
}
.back-button {
	display: block;
	padding: 12px;
	max-width: 240px;
	min-width: 120px;
	background: none;
	border-radius: var(--corner-radius-small);
	border: 1px solid var(--color-black-primary);
	transition: color 0.25s,background-color 0.25s
}
.back-button:not([disabled]):hover {
	color: var(--color-white-primary);
	background-color: var(--color-black-primary);
}

.spacer {
	display: block;
	height: 16px;
}
.spacer--size-16 {
	height: 16px;
}
.spacer--size-24 {
	height: 24px;
}
.spacer--size-32 {
	height: 32px;
}
.spacer--size-40 {
	height: 40px;
}
.spacer--size-48 {
	height: 48px;
}
.spacer--size-64 {
	height: 64px;
}
.spacer--size-80 {
	height: 80px;
}


.fv {
	position: relative;
	z-index: 0;
	height: 100vh;
	height: 100svh;
	min-height: 880px;
	max-height: max(880px,65vw);
}
.fv__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 48px 0;
	width: var(--content-width);
	margin: 0 auto;
	height: 100%;
}
.fv-left-content {
	margin: auto 0;
	width: 100%;}
.fv-copy {
	width: fit-content;
	margin: 0 0 16px;
	max-width: 680px;
	height: 188px;
}
.fv-copy img {
	width: auto;
	height: 100%;
	filter: drop-shadow(0 0 8px #ffffff);
}
.fv-description {
	max-width: 680px;
	margin: 0 0 48px;
}
.fv-description p {
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 4px 8px;
	line-height: 2.25;
	color: var(--color-white-primary);
	background: var(--color-black-primary);
}
.fv-tags {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 4px;
	max-width: 680px;
}
.fv-tags__item {
	padding: 10px 10px;
	color: var(--color-white-primary);
	background: var(--color-green-primary);
	line-height: 1;
	border-radius: var(--corner-radius-small);
}
.contact-guide {
	display: flex;
	padding: 0 32px 0 0;
	background: var(--color-white-primary);
	border-radius: var(--corner-radius-medium);
	box-shadow: var(--solid-shadow-secondary);
	max-width: 800px;
	overflow: hidden;
}
.contact-guide-sideinfo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 10px;
	background: var(--color-lightgray-secondary);
	writing-mode: vertical-lr;
	font-size: 2.0rem;
}
.contact-guide-sideinfo__icon {
	width: 32px;
	height: 32px;
}
.contact-guide__content {
	padding: 32px;
}
.contact-guide-title {
	margin: 0 0 16px;
	padding: 0 0 8px;
	border-bottom: 1px solid var(--color-black-primary);
	font-size: 2.4rem;
}
.contact-guide-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.contact-guide-title__arrow {
	display: none;
	flex-shrink: 0;
	align-self: center;
	padding: 8px;
	background: var(--color-blue-primary);
	border-radius: 1000px;
}
.contact-guide-title__arrow::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: var(--color-white-primary);
	-webkit-mask: url("../images/arrow-right.svg") center/contain no-repeat;
	mask: url("../images/arrow-right.svg") center/contain no-repeat;
	transition: background-color .25s;
}
.contact-guide__description {
	display: grid;
	gap: 24px;
	line-height: 2;
}
.contact-guide__arrow {
	flex-shrink: 0;
	align-self: center;
	padding: 8px;
	background: var(--color-blue-primary);
	border-radius: 1000px;
	transition: transform .25s;
}
.contact-guide:hover .contact-guide__arrow {
	transform: scale(1.25);
}
.contact-guide__arrow::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: var(--color-white-primary);
	-webkit-mask: url("../images/arrow-right.svg") center/contain no-repeat;
	mask: url("../images/arrow-right.svg") center/contain no-repeat;
	transition: background-color .25s;
}
.fv-bg {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	z-index: -1;
}
@media screen and (max-width:960px) {
	.fv {
		min-height: 0;
		max-height: none;
		height: auto;
	}
	.fv__inner {
		padding: 0;
	}
	.fv-left-content {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100vh;
		height: 100svh;
		padding: 0 0 120px;
	}
	.fv-copy {
		width: 100%;
		max-width: 480px;
		height: auto;
	}
	.fv-copy img {
		width: 100%;
		height: auto;
	}
	.fv-bg {
		position: absolute;
		right: calc(var(--content-padding) * -1);
		top: auto;
		bottom: -24px;
		width: 120%;
		max-width: 720px;
	}
	.fv-tags__item {
		padding: 8px 8px;
		font-size: 1.2rem;
	}
	.contact-guide {
		padding: 0 0 0;
	}
	.contact-guide-title__arrow {
		display: block;
	}
	.contact-guide-sideinfo {
		padding: 8px;
	}
	.contact-guide-title {
		font-size: 1.8rem;
	}
	.contact-guide__content {
		padding: 24px 24px 24px 16px;
	}
	.contact-guide__arrow {
		display: none;
	}
}

.site-introduction {
	position: relative;
	display: flex;
	justify-content: flex-start;
	gap: 32px;
	width: var(--content-width);
	margin: 0 auto;
	padding: 184px 0 120px;
	z-index: 0;
}
.site-introduction-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0 24px 0 0;
	border-right: 1px solid var(--color-black-primary);
}
.site-introduction-title__icon {
	display: block;
	width: 28px;
}
.site-introduction-title__label {
	writing-mode: vertical-lr;
}
.site-introduction__content {
	width: 880px;
}
.site-introduction__copy {
	margin: 0 0 32px;
}
.site-introduction-bodytext {
	display: grid;
	gap: 24px;
	line-height: 2;
}
.site-introduction__bg {
	position: absolute;
	width: 60%;
	right: -15%;
	bottom: -120px;
	z-index: -1;
}
@media screen and (max-width:960px) {
	.site-introduction {
		padding: 48px 0;
		gap: 24px;
	}
	.site-introduction-title {
		padding: 0 16px 0 0;
	}
	.site-introduction__copy {
		max-width: 480px;
	}
	.site-introduction__bg {
		width: 100%;
	}
}
.service-list {
	width: var(--content-width);
	margin: 0 auto;
}
.service-item {
	width: calc(var(--content-width) - 50% + 50vw);
	margin-right: calc(50% - 50vw);
	margin-left: auto;
	display: flex;
	gap: 64px;
	justify-content: space-between;
	align-items: flex-start;
}
.service-item+.service-item {
	margin-top: 160px;
}

.service-item--reverse {
	flex-direction: row-reverse;
	margin-left: calc(50% - 50vw);
}
.service-item__picture {
	width: 45vw;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: var(--corner-radius-medium) 0 0 var(--corner-radius-medium);
}
:where(.service-item--reverse) .service-item__picture {
	border-radius: 0 var(--corner-radius-medium) var(--corner-radius-medium) 0;
}
.service-item__picture img {
	max-height: 560px;
	object-fit: cover;
}
.service-item__textcontent {
	position: relative;
	width: 100%;
	z-index: 0;
}
.service-item__tag {
	display: block;
	width: fit-content;
	padding: 4px 8px;
	margin: 0 0 8px;
	font-size: 1.6rem;
	color: var(--color-white-primary);
	background: var(--color-green-primary);
}
.service-item__tag--business {
	background: var(--color-green-primary);
}
.service-item__tag--general {
	background: var(--color-blue-primary);
}
.service-item-title {
	position: relative;
	display: flex;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0 0 16px;
	line-height: 1.25;
	font-size: 2.8rem;
	font-weight: bold;
	background: url("../images/service-title-border.svg") right bottom/auto 6px no-repeat;
}
.service-item-title__number {
	position: absolute;
	top: -184px;
	left: -124px;
	width: 284px;
	z-index: -1;
}
.service-item-title__icon {
	display: block;
	width: 40px;
}
.service-item__body-text {
	display: grid;
	gap: 24px;
	line-height: 2;
}
.service-info {
	padding: 24px;
	background: var(--color-white-primary);
	border-radius: var(--corner-radius-medium);
	box-shadow: var(--solid-shadow-secondary);
}
.service-info__title {
	position: relative;
	z-index: 0;
	padding: 0 0 0 24px;
	font-weight: bold;
	font-size: 2.0rem;
	margin: 0 0 16px;
}
.service-info__title::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	z-index: -2;
	width: 16px;
	height: 16px;
	background: var(--color-green-primary);
	border-radius: 1000px;
}
.service-info-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.service-info-list::after {
	content: "等";
	font-size: 1.6rem;
}
.service-info-list__item {
	background: var(--color-lightgray-secondary);
	font-size: 1.6rem;
	padding: 10px;
	line-height: 1;
	border-radius: var(--corner-radius-small);
}
@media screen and (max-width:960px) {
	.service-item {
		flex-direction: column;
		margin: 0;
		width: 100%;
	}
	.service-item+.service-item {
		margin-top: 144px;
	}
	.service-item__picture {
		width: 100vw;
		margin-left: calc(var(--content-padding) * -1);
		border-radius: 0;
	}
	.service-item__picture img {
		max-height: 400px;
		object-fit: cover;
	}
	.service-item-title {
		font-size: 2.4rem;
	}
	.service-item-title__icon {
		width: 32px;
	}
	.service-item-title__number {
		left: -48px;
		top: -128px;
		width: 184px;
		height: 184px;
	}
	.service-info__title {
		font-size: 1.8rem;
	}
	.service-info-list__item {
		font-size: 1.2rem;
	}
	.service-info-list::after {
		content: "等";
		font-size: 1.2rem;
	}
}
.images-slider-wrapper {
	width: 100%;
	overflow: hidden;
}
.images-slider {
	width: fit-content;
	display: flex;
	gap: 2px;
	animation: images-slider 15s 0s infinite normal both linear;
}
.images-slider__item {
	flex-shrink: 0;
	width: 280px;
}
@keyframes images-slider {
	0% {
		transform: translate(0,0);
	}
	100% {
		transform: translate(calc((100% - 2px) / -3),0);
	}
}
@media screen and (max-width:960px) {
	.images-slider__item {
		width: 200px;
	}
}

.message {
	position: relative;
	z-index: 0;
	display: flex;
	gap: 64px;
	width: var(--content-width);
	margin: 0 auto;
}
.message-title {
	display: flex;
}
.message-title__jp {
	display: flex;
	align-items: center;
	font-size: 2.0rem;
	font-weight: bold;
	gap: 12px;
	writing-mode: vertical-lr;
}
.message-title__jp::before {
	content: "";
	display: block;
	width: 4px;
	height: 80px;
	background: url("../images/title-border-vertical.svg") center/contain no-repeat;
}
.message-title__en {
	width: 148px;
}
.message-lead {
	line-height: 2;
	font-size: 3.6rem;
	font-weight: bold;
	margin: 0 0 32px;
}
.message-lead__line {
	padding: .375em 0;
	background: url("../images/wave-border-green.svg") center bottom/1548px no-repeat;
}
.message-body {
	position: relative;
	display: grid;
	gap: 32px;
	line-height: 2;
	background: var(--color-white-primary);
	padding: 32px;
}
.message-body__title-en {
	display: none;
}
.message-body::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transform: translate(0,-100%);
	width: 296px;
	height: 128px;
	background: url("../images/message-decoration.svg") center/contain no-repeat;
}
.message-body::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 24px;
	height: 24px;
	background: url("../images/message-box-corner-decoration.svg") center/cover no-repeat;
}
@media screen and (max-width:960px) {
	.message-title {
		display: none;
	}
	.message-lead {
		font-size: 2.8rem;
		margin-bottom: 64px;
	}
	.message-body::before {
		width: 148px;
		height: 64px;
	}
	.message-body {
		padding: 24px 24px 24px 56px;
	}
	.message-body__title-en {
		position: absolute;
		left: -32px;
		top: 24px;
		width: 64px;
		display: block;
	}
}


.company-info {
	position: relative;
	width: var(--content-width-narrow);
	margin: 0 auto;
	padding: 64px;
	background: var(--color-white-primary);
	border-radius: var(--corner-radius-medium);
	z-index: 2;
}
.company-table tbody,
.company-table tr,
.company-table th,
.company-table td {
	display: block;
	text-align: left;
}
.company-table tbody,
.company-table tr {
	display: contents;
}
.company-table {
	display: grid;
	grid-template-columns: repeat(2,auto);
	gap: 0 16px;
}
.company-table th {
	font-weight: bold;
}
.company-table th,
.company-table td {
	padding: 28px 0;
	border-bottom: 1px solid var(--color-green-primary);
}
.company-table td {
	border-color: 1px solid var(--color-gray-primary);
}
@media screen and (max-width:960px) {
	.company-info {
		padding: 32px;
	}
}

.contact-form .submit-button {
	margin: 0 auto;
}
.contact-form-content {
	display: grid;
	width: var(--content-width-narrow);
	margin: 0 auto;
	gap: 24px;
}
.form-item {
	align-items: self-start;
	display: flex;
	gap: 24px;
}
.form-item__label {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 280px;
	padding: 20px 0;
}
.form-required {
	line-height: 1;
	padding: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-white-primary);
	background: var(--color-red-primary);
	border-radius: var(--corner-radius-small);
}
.form-item__input-group {
	width: 100%;
}
.form-item__input {
	width: 100%;
}
:where(.form-item__input) input,
:where(.form-item__input) textarea,
:where(.form-item__textarea) textarea {
	display: block;
	padding: 24px;
	font-size: 1.6rem;
	border-radius: var(--corner-radius-small);
	box-shadow: var(--solid-shadow-secondary);
	width: 100%;
}
:where(.form-item__input--width-auto) input,
:where(.form-item__input--width-auto) textarea {
	width: auto;
}
:where(.form-item__input--error) input,
:where(.form-item__input--error) textarea {
	outline: 3px solid var(--color-red-primary);
	background: #ffdcdc;
}
:where(.form-item__input) input::placeholder,
:where(.form-item__input) textarea::placeholder {
	color: #bbbbbb;
}

.radio-buttons {
	display: grid;
	gap: 8px 8px;
	grid-template-columns: repeat(2,1fr);
	padding: 14px 0;
}
.radio-button {
	position: relative;
	display: block;
	padding: 6px 0 6px 40px;
	line-height: 1.5;
	font-size: inherit;
	user-select: none;
	cursor: pointer;
}
.radio-button input {
	display: none;
}
.radio-button__check {
	position: absolute;
	top: 8px;
	left: 0;
	width: 28px;
	height: 28px;
	border: 2px solid var(--color-gray-primary);
	border-radius: 1000px;
}
.radio-button__check::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	background: var(--color-green-primary);
	transform: scale(.75);
	opacity: 0;
	border-radius: 1000px;
	transition: opacity .25s, transform .25s;
}
.radio-button:hover .radio-button__check::before {
	opacity: .5;
}
.radio-button input:checked ~ .radio-button__check::before {
	opacity: 1;
	transform: none;
}

.form-item__input--message {
	display: none;
}
.form-item--message:has(.radio-button input[value="その他"]:checked) .form-item__input--message {
	display: block;
}

@media screen and (max-width:800px) {
	.radio-buttons {
		gap: 4px;
	}
	.radio-button__check {
		top: 6px;
	}
}

@media screen and (max-width:960px) {
	.contact-form-content {
		gap: 40px;
	}
	.form-item {
		flex-direction: column;
		gap: 12px;
	}
	.form-item__label {
		width: 100%;
	}
	.form-required {
		font-size: 1.2rem;
	}
	:where(.form-item__input) input,
	:where(.form-item__input) textarea,
	:where(.form-item__textarea) textarea {
		padding: 20px;
	}
}

.confirm-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: var(--content-width-narrow);
	margin: 0 auto;
	padding: 64px;
	background: var(--color-white-primary);
	border-radius: var(--corner-radius-medium);
	z-index: 2;
}
.contact-confirm__item {
	display: contents;
}
.contact-confirm {
	display: grid;
	grid-template-columns: minmax(auto,200px) auto;
	gap: 0 16px;
	width: 100%;
}
.contact-confirm__label {
	font-weight: bold;
}
.contact-confirm__label,
.contact-confirm__data {
	padding: 24px 0;
	border-bottom: 1px solid var(--color-green-primary);
}
.contact-confirm__data {
	border-color: 1px solid var(--color-gray-primary);
}
@media screen and (max-width:960px) {
	.confirm-form {
		padding: 32px;
	}
}

.site-footer {
	position: relative;
	z-index: 0;
	padding: 0 0 144px;
}
.site-footer::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: -1;
	background: url("../images/footer-bottom-decoration.svg") center bottom/cover no-repeat;
}
.site-footer__inner {
	width: var(--content-width);
	margin: 0 auto;
}
.page-top-button {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
	width: 80px;
	height: 80px;
	background: var(--color-white-primary);
	border-radius: 1000px;
}
.page-top-button::before {
	content: "";
	width: 40px;
	height: 40px;
	background: var(--color-green-primary);
	-webkit-mask: url("../images/arrow-up.svg") center bottom/contain no-repeat;
	mask: url("../images/arrow-up.svg") center bottom/contain no-repeat;
}
.footer-navi {
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.footer-navi__item>a {
	display: block;
	padding: 8px 0;
	transition: opacity .25s;
}
@media not screen and (max-width:960px) {
	@media (hover:hover) {
		:where(.footer-navi:has(.footer-navi__item>a:hover)) .footer-navi__item>a:not(:hover) {
			opacity: .25;
		}
	}
}
.footer-logo {
	display: block;
	margin: 80px auto;
	width: fit-content;
	height: 64px;
	transition: opacity 0.25s;
}
.footer-logo img {
	width: auto;
	height: 100%;
}
.footer-logo:hover {
	opacity: .5;
}
.footer-copyright-info {
	text-align: center;
	font-size: 1.4rem;
}
@media screen and (max-width:960px) {
	.footer-navi {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.footer-navi__item>a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		text-align: left;
		width: 100%;
		padding: 20px 0;
		border-bottom: 1px solid var(--color-black-primary);
	}
	.footer-navi__item>a::after {
		content: "";
		display: block;
		width: 24px;
		height: 24px;
		background: var(--color-green-primary);
		mask: url("../images/arrow-right.svg") center/contain no-repeat;
		transition: transform 0.25s;
	}
	.footer-navi__item>a:hover::after {
		transform: translate(4px,0);
	}
	.site-footer::before {
		height: 48px;
	}
	.footer-logo {
		height: 48px;
	}
}