<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*================================
common
================================*/
:root {
	--color_BLK: #252525;
	--color_RED: #e84049;
	--color_GRY: #e7e7e7;
	--color_lGRY: #f1f1f1;
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
	position: relative;
}

body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-size: inherit;
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}
table {
	width: 100%;
}

#page {
	font-size: clamp(14px, 2.8vw, 18px);
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	margin: 0 auto;
	max-width: 1920px;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	position: relative;
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	text-decoration: none;
}
#page a:not(.tab_btn) {
	transition: all 0.3s;
}
#page a:not(.tab_btn):hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
#page input,
#page select,
#page textarea {
	font-size: inherit;
}
#page select,
#page textarea,
#page input.text {
	border: solid 1px #acacac;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1250px;
}
.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}
#btn_pagetop {
    position: fixed;
	bottom: clamp(8px, 3.4vw, 16px);
	right: clamp(8px, 3.4vw, 16px);
    z-index: 500;
}
#btn_pagetop a img {
  width: clamp(60px, 9vw, 100px);
  display: block;
}

/*================================
ページ用
================================*/
.tvoWrap {
	padding: var(--gap_80px) 0;
}
.faq_title {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	padding-bottom: var(--gap_80px);
}
.faq_title em {
	position: relative;
	display: -webkit-inline-flex;
	display: inline-flex;
	align-items: center;
	padding-left: clamp(18px,5vw,30px);
}
.faq_title em::before {
	content: '';
	width: clamp(26px,6vw,36px);
	height: clamp(21px,4.9vw,29px);
	position: absolute;
	left: clamp(-13px,-6vw,-18px);
	background:url(/corporate/contact/images/faq_icon.png) no-repeat center center / 100% auto;
}
.tab_btn_area,
.tvoWrap__intro {
	text-align: center;
}
.tab_btn_area {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 0 var(--gap_80px);
	justify-content: center;
}
.tvoWrap__intro {
	line-height: 1.8;
	padding-bottom: var(--gap_48px);
}
.tab_btn {
	font-size: 1.3em;
	font-weight: bold;
	color: #8d8d8d;
	width: 45%;
	margin: 0 2.5%;
	padding: var(--gap_16px) var(--gap_32px);
	border: solid 1px;
	border-radius: 100px;
	background-color: var(--color_GRY);
	position: relative;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.tab_btn.active {
	cursor: inherit;
}
.tab_btn.active:hover {
	opacity: 1;
}
.tab_btn:not(.active):hover {
	opacity: 0.7;
}
.tab_btn::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border: solid var(--gap_16px) transparent;
	border-top: solid var(--gap_24px);
}
.tab_btn::after {
	position: absolute;
	content: "";
	left: 50%;
	top: calc(100% - 2px);
	transform: translateX(-50%);
	border: solid var(--gap_16px) transparent;
	border-top: solid var(--gap_24px) var(--color_GRY);
}
.tab_btn.active {
	color: #fff;
	background-color: var(--color_RED);
}
.tab_btn.active::after {
	border-top: solid var(--gap_24px) var(--color_RED);
}
.tab_btn span {
	line-height: 1;
	position: relative;
	display: block;
}
.tab_btn span::after {
    content: attr(data-text) "";
    font-size: 0.7em;
    font-weight: normal;
	line-height: 1;
    margin-top: 8px;
    display: block;
}
.tab_content {
    display: none;
}
.tab_content.show {
    display: block;
}
@media screen and (max-width: 767px) {
	.tab_btn {
		width: 90%;
	}
	.tab_btn:not(:last-of-type) {
		margin-bottom: var(--gap_32px);
	}
	.tab_btn::before,
	.tab_btn::after {
		content: none;
	}
}

/*================================
faqArea
================================*/
.tvoWrap__faqArea--list {
	padding: 0 var(--gap_24px);
	margin-bottom: var(--gap_32px);
	border-radius: var(--gap_16px);
	box-shadow: 0 0 var(--gap_8px) #ccc;
}

/*================================
accordion style
================================*/
.module-accordion{
	margin: 0 auto;
}
.module-accordion:not(:last-child){
	margin-bottom: .2rem;
}
.module-accordion_title{
	margin-bottom: .1rem;
}
.module-accordion_btn{
	cursor: pointer;
	padding: var(--gap_24px) clamp(24px,6vw,40px) var(--gap_24px) clamp(36px,12vw,60px);
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* .module-accordion_btn::before{
	content: '';
	display: block;
	width: 80px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
} */
.module-accordion_btn::before {
	content: '';
	width: clamp(25px,8vw,41px);
	height: clamp(27px,8.8vw,45px);
	position: absolute;
	left: 0;
	background:url(/corporate/contact/images/q.png) no-repeat center center / 100% auto;
}
.module-accordion_btn::after{
	font-size: 1.2em;
	color: var(--color_RED);
	content: '\f107';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	position: absolute;
	right: 0;
	margin: auto;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.module-accordion_btn.is-open::after{
	-ms-transform: rotate(180deg);
    transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.module-accordion_contents{
	font-size: 0.9em;
	display: none;
	padding: var(--gap_24px) 0;
	border-top: dotted 1px;
}
.module-accordion_text {
	line-height: 1.8;
	position: relative;
	padding: var(--gap_24px) 0 var(--gap_24px) clamp(36px,12vw,60px);
}
.module-accordion_text::before {
	content: '';
	width: clamp(25px,8vw,41px);
	height: clamp(27px,8.8vw,45px);
	position: absolute;
	left: 0;
	background:url(/corporate/contact/images/a.png) no-repeat center center / 100% auto;
}

/*================================
formArea
================================*/
#contactform {
	text-align: center;
}
.form_wrap {
	text-align: left;
	border: solid 1px var(--color_lGRY);
}
.form_item .title * {
	line-height: 1;
}
.form_item .title {
	font-weight: bold;
	padding: var(--gap_8px) var(--gap_24px);
	background-color: var(--color_lGRY);
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.form_item .need {
	font-size: 0.7em;
	font-weight: normal;
	color: #fff;
	padding: 4px var(--gap_8px);
	margin-left: var(--gap_8px);
	background-color: var(--color_RED);
	border-radius: 100px;
}
.form_item .data * {
	line-height: 1.1;
}
.form_item .data {
	padding: var(--gap_16px) var(--gap_24px);
}
.form_item .data li {
	display: inline-block;
	margin: 0 var(--gap_16px) var(--gap_8px) 0;
}
.form_item .data small {
	font-size: 0.8em;
	margin-top: var(--gap_8px);
	display: block;
}
.form_item .msg {
	color: var(--color_RED);
}
.form_item select,
.form_item textarea,
.input.text {
	font-size: 0.9em !important;
	padding: var(--gap_8px);
}
.form_item textarea,
.input.text {
	width: 100%;
	border-radius: var(--gap_8px);
}
.form_item input[type="radio"] {
	accent-color: var(--color_RED);
}
.submit_wrap {
	margin: var(--gap_48px) auto 0;
	position: relative;
	display: inline-block;
	display: inline-flex;
	align-items: center;
}
.submit_wrap::after {
	color: #fff;
	content: '\f105';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	position: absolute;
	right: 1em;
	z-index: 100;
}
.submit {
	font-weight: bold;
	color: #fff;
	width: min(80vw,350px);
	padding: var(--gap_16px) var(--gap_32px);
	background-color: var(--color_RED);
	border-radius: 100px;
	border: 0;
	display: block;
	cursor: pointer;
	transition: all 0.3s;
}

.confirm dl {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}
.confirm dt,
.confirm dd {
	padding: var(--gap_16px) var(--gap_24px) !important;
	float: left;
}
.confirm dt {
	width: 15em;
	align-items: flex-start !important;
	border-bottom: solid 1px #fff;
}
.confirm dd {
	width: calc(100% - 15em);
	border-bottom: solid 1px var(--color_lGRY);
}
.confirm .form_item:last-of-type dt,
.confirm .form_item:last-of-type dd {
	border-bottom: 0;
}

.submit_wrap.back::before {
	color: var(--color_RED);
	content: '\f104';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	position: absolute;
	left: 1em;
	z-index: 100;
}
.submit_wrap.back::after {
	content: none;
}
.back .submit {
	color: var(--color_RED);
	padding: var(--gap_16px) var(--gap_32px);
	background-color: #fff;
	border: solid 2px var(--color_RED);
}
.tvoWrap__confirmArea .submit_wrap {
	margin: var(--gap_48px) var(--gap_24px) 0;
}
.submit:hover {
	opacity: 0.7;
}

.tvoWrap__thanksArea {
	text-align: center;
}

/*================================
formArea 250313追加
================================*/
.tvoWrap__formArea--link01 {
	text-align: center;
	margin-bottom: var(--gap_32px);
}

.tvoWrap__formArea--link01 a {
	color: #252525;
	text-decoration: underline !important;
}


.tvoWrap__formArea--link02 {
	display: block;
	width: min(80vw,350px);
	margin: 0 auto var(--gap_64px);
}

@media screen and (max-width: 767px) {
	.confirm dt,
	.confirm dd {
		width: 100%;
	}
}



</pre></body></html>