/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
* {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	overflow: auto;
	margin: 0;
	padding: 0;
	
	-ms-overflow-style: none;
	scrollbar-width: none;
}
/*
.page {
	overflow-x: hidden;
	overflow-y: auto;
	height: 100%;
}
*/
.page {
	overflow-x: hidden;
	overflow-y: auto;
	height: auto;
	-ms-overflow-style: none; /* Edge */
	scrollbar-width: none; /* Firefox */
}
.page::-webkit-scrollbar {
	display: none; /* Chrome,Safari */
}


.slide {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background-size: cover;
	background-position: center;
}
section {
	width: 100%;
}

.pc_br {
	display: block;
	display: unset;
}
.sp_br {
	display: none;
}
img.pc {
	display: block;
	width: 100%;
}
img.sp {
	display: none;
	width: 100%;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* メインビジュアル */
.top-section{
	position: relative;
	height: 302px;
	overflow: hidden;
}

.top-section .top-bg{
	position: absolute;
	inset: 0;              /* 上下左右すべて0で全面 */
	width: 100%;
	height: auto;
	object-fit: cover;     /* 画像をトリミングしてフィット */
	z-index: 0;
	border: none;

	top: 0;
	left: 0;
}

.top-section-inner {
	position: relative;
	padding: 130px 118px 40px 118px;
	z-index: 2;
}


.top-title {
	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Medium;
	font-size: 40px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0%;

	color: #151515;
	margin-bottom: 0;
}
.top-title-sub {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0%;

	color: #151515;
	margin-bottom: 0;
}

.pankuzu-list {
	display: flex;
	width: auto;
	margin-bottom: 24px;
	align-items: center;
}

.pankuzu-unit {
	color: #151515;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	leading-trim: NONE;
	line-height: 150%;
	letter-spacing: 0%;
}

.pankuzu-separator {
	position: relative;
	width: 24px;
	height: 18px;
}
.pankuzu-separator img{	
	margin: 0 auto;
	margin-top: 0px;
	display: block;
	margin-top: 1px;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.form-section {
	background-color: #F3F8FC;
}

.form-section-inner {
	padding: 80px 202px 80px 202px;
}

.form-section-body {
	border-radius: 4px;
	background-color: #fff;
	/*padding: 40px 40px 40px 40px;*//*入力確認画面*/
	padding: 80px 40px 80px 40px;/*完了画面*/
}

form {
	margin: 0;
}

.form-table {
	width: 100%;
	position: relative;
	margin-bottom: 32px;
	border-collapse: collapse;
	border-spacing: 0;
}

.form-table th {
	width: 300px;
	vertical-align: middle;
	display: table-cell;
	text-align: left;
	line-height: 100%;
	position: relative;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 8px 0;
	position: relative;
	min-height: 78px;
	height: 78px;
}

.input-title {
	display: flex;
	align-items: center;
}

.title-tips {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.input-line {
	display: flex;
	align-items: center;
}

th .required {
	color: #fff;
	padding: 4px 8px 4px 8px;
	display: inline-block;
	background-color: #F14346;
	position: absolute;
	right: 0;
	border-radius: 4px;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	margin-right: 0;
	margin-left: auto;
}

.form-table td {
	text-align: left;
	/*padding: 8px 0 8px 32px;*//* 入力画面 */
	padding: 8px 0 8px 48px;/* 確認画面 */
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	height: 45px;
}

input[type="text"].small_textinput,
input[type="email"].small_textinput,
input[type="password"].small_textinput,
input[type="tel"].small_textinput {
	width: 100%;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border: 1px solid #AAAAAA;
	box-shadow: none;
	width: 100%;
	border-radius: 4px;
	color: #151515;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	padding: 8px 16px;
}

.input-textarea {
	min-height: 170px;
}

.xsmall-textinput {
	width: 295px;
}

.paddingsideleft {
	width: 56px;
	display: inline-block;
	flex: 0 0 56px;
}

.paddingsideright {
	display: inline-block;
	width: 56px;
	margin-left: 32px;
	flex: 0 0 56px;
}

.input-title-zip {
	height: 62px;
	position: absolute;
	top: 0;
	width: 100%;
	margin-top: 8px;
}

#zipcode {
	width: 295px;
}

.btn-get-address {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	color: #fff;
	width: 96px;
	height: 45px;
	background-color: #9C9C9C;
	border: none;
	margin-left: 8px;
}

.small {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	margin-top: 8px;
	height: 29px;
	display: block;
}

.form-table select {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0.02em;

	height: 48px;
	color: #151515;
	width: 100%;
	border-radius: 4px;
	border: 1px solid #AAA;
	appearance: none;
	margin-bottom: 0;
	background-color: #fff;
	padding: 8px 16px;

	-webkit-appearance: none;
	-moz-appearance: none;
}
.form-table select::-ms-expand {
	display: none;
}
.form-table select {
		background: url("/common/asset/select_down_arrow.svg") no-repeat right 20px center / 14px auto;
}

.input-title-textarea {
	height: 68px;
	top: 0;
	margin-top: 0;
	position: absolute;
	display: flex;
	width: 100%;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.wpcf7-spinner {
	display: none;
}
#regist_large_btn {
	display: block;
	width: auto;
	margin: 0 auto;
	text-align: center;
}

.submit-btn-area-text {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	color: #151515;
	margin-bottom: 16px;
	text-align: center;
}

.submit-btn-area-check.checkbox {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
	padding: 0;
	display: flex;
	margin-bottom: 16px;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.submit-btn-area-check label {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
	padding: 0;
	display: flex;
	text-align: center;
	align-items: center;
	margin-bottom: 0;
}

.checkbox input[type="checkbox"] {
	width: 22px;
	height: 22px;
	border-radius: 2px;
	border: 1px solid #151515;
	margin: 0;
	margin-right: 5px;
}

#regist_large_btn {
	text-align: center;
}

.rcp-area {
	margin-bottom: 16px;
	text-align: center;
}

.submit-btn-area {
	text-align: center;
}

.btn-confirm {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: capitalize;
	width: 260px !important;
	height: 56px;
	border-radius: 64px;
	background-color: #005EAD;
	border-color: #005EAD;
	background-image: none;
	color: #ffffff;
}

.btn-confirm:disabled {
	background-color: #9C9C9C;
	border-color: #9C9C9C;
	color: #ffffff;
	box-shadow: none;
	border: none;
}
.btn-confirm:hover,
.btn-confirm:active, 
.btn-confirm:focus {
	border-color: #005EAD;
}

.btn-primary {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: capitalize;
	width: 260px !important;
	height: 56px;
	border-radius: 64px;
	background-color: #005EAD;
	border-color: #005EAD;
	background-image: none;
	color: #ffffff;
}

.btn-back {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: capitalize;
	width: 260px !important;
	height: 56px;
	border-radius: 64px;
	background-color: #ffffff;
	border: 1px solid #005EAD;
	background-image: none;
	color: #005EAD;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.form-message {
	text-align: center;
	margin-bottom: 32px;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
}
.form-table th {
	border-bottom: 1px solid #D7D7D7;
	border-top: 1px solid #D7D7D7;
}
.form-table td {
	border-bottom: 1px solid #D7D7D7;
	border-top: 1px solid #D7D7D7;
}

.submit-btn-area {
	text-align: center;
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.completion_msg {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 24px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
	text-align: center;
	margin-bottom: 32px;
}
.btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	text-decoration: none;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
	background-color: #005EAD;
	border-color: #005EAD;
	background-image: none;
	color: #ffffff;
	text-decoration: none;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.section-inner {
	width: 1200px;
	margin: 0 auto;
}
.section-inner .section-title {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 32px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 1.2px;
	text-align: center;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.web-buy-section {
	background: #D9EEFE;
	/*padding: 79px 105px 60px;*/
	padding: 79px 0 60px;
}
 .web-buy-section .section-title {
	color: #005EAD;
}
.fax-inq-section {
	background: #005EAD;
	/*padding: 60px 105px 60px;*/
	padding: 60px 0 60px;
}
.fax-inq-section .section-title {
	color: #FFFFFF;
}
.fax-buy-section {
	background: #F2F2F2;
	/*padding: 60px 105px 60px;*/
	padding: 60px 0 60px;
}
.fax-buy-section .section-title {
	color: #005EAD;
}
.inquiry-section {
	background: #FFFFFF;
	/*padding: 60px 105px 32px;*/
	padding: 60px 0 32px;
}
.inquiry-section .section-title {
	color: #005EAD;
}
.step-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
}
.step-wrapper a {
	text-decoration: underline;
}
.step-wrapper .step-row {
	width: 368px;
	height: auto;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 33px 24px;
}
.web-buy-section .step-wrapper .step-row {
	height: 434px;
}
.fax-inq-section .step-wrapper .step-row {
	height: 391px;
}
.fax-buy-section .step-wrapper .step-row {
	height: 449px;
}
.step-wrapper .step-arrow {
	margin: 0 14px;
	text-align: center;
}
.step-wrapper .step-number {
	font-family: "Satoshi";
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.5px;
	color: #005EAD;
	text-align: center;
}
.step-wrapper .step-info1 {
	font-family: "Noto Sans JP";
	font-weight: 700;
	font-style: Bold;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: -0.3px;
	color: #151623;
	text-align: center;
	padding-top: 16px;
}
.step-wrapper .step-info1 a {
	font-family: "Noto Sans JP";
	font-weight: 700;
	font-style: Bold;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0.7px;
	color: #005EAD;
	text-align: center;
}
.step-wrapper .step-info-image {
	text-align: center;
	padding-top: 24px;
}
.step-wrapper .step-info2 {
	font-family: "Noto Sans JP";
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: -0.3px;
	color: #151623;
	text-align: center;
	padding-top: 24px;
}
.step-wrapper .step-info2 .annotation {
	font-family: "Noto Sans JP";
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0;
	color: #F14346;
	text-align: center;
	padding-top: 8px;
}
.step-wrapper .step-info2 a {
	color: #151623;
}
.step-wrapper .step-info2 .annotation a {
	color: #F14346;
}

.contact-wrapper {
	display: flex;
	height: 140px;
	border-radius: 8px;
	background: #FFFFFF;
	padding: 32px 94px;
}
.contact-wrapper .contact-left {
	padding-right: 56px;
}
.contact-wrapper .contact-right {
	padding-left: 54px;
	border-left: solid 1px #005EAD;
}
.contact-wrapper .contact-right a {
	margin-top: 8px;
}
.contact-wrapper .contact-title {
	font-family: "Noto Sans JP";
	font-weight: 700;
	font-style: Bold;
	font-size: 24px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0;
	color: #151623;
	padding-bottom: 16px;
}
.contact-wrapper .contact-content {
	font-family: "Noto Sans JP";
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0;
	color: #151623;
	white-space: nowrap;
}

.contact-wrapper2 {
	display: flex;
	height: 188px;
	border-radius: 8px;
	background: #FFFFFF;
	padding: 32px 94px;
}
.contact-wrapper2 .contact-left {
	flex-basis: 50%;
	text-align: center;
	padding-top: 14px;
	padding-left: 80px;
}
.contact-wrapper2 .contact-right {
	flex-basis: 50%;
	text-align: center;
	border-left: solid 1px #005EAD;
}
.contact-wrapper2 .contact-title {
	font-family: "Noto Sans JP";
	font-weight: 700;
	font-style: Bold;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0;
	color: #151623;
	padding-bottom: 16px;
}
.contact-wrapper2 .contact-content .c-label {
	position: relative;
	/*
	bottom: 8px;
	right: 16px;
	*/
	display: inline-block;
	width: 54px;
	height: 24px;
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0;
	color: #FFFFFF;
	background: #005EAD;
	text-align: center;
	white-space: nowrap;
}
.contact-wrapper2 .contact-content .c-number {
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: SemiBold;
	font-size: 40px;
	leading-trim: NONE;
	line-height: 110%;
	letter-spacing: 0;
	color: #151515;
	line-height: 36px;
	white-space: nowrap;
}

.c-mail-wrapper {
	padding: 8px 0;
}
.c-mail-wrapper a {
	font-size: 22px;
	color: #000;
}
.c-mail-wrapper .c-label {
	/*
	bottom: 2px !important;
	*/
}
.c-mail-wrapper .c-number {
	/*line-height: 0 !important;*/
}

.inquiry-section .section-inner {
	border: solid 1px #005EAD;
	border-radius: 8px;
	padding: 42px;
}
.inquiry-section .inquiry-text {
	font-family: "Noto Sans JP";
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0;
	color: #151515;
	text-align: center;
	padding-top: 36px;
}
.inquiry-section .inquiry-wrapper {
	display: flex;
	justify-content: center;
	padding-top: 32px;
}
.inquiry-section .inquiry-wrapper .inquiry-left {
	padding-top: 18px;
	padding-left: 12px;
	padding-right: 36px;
}
.inquiry-section .inquiry-wrapper .inquiry-title {
	font-family: "Noto Sans JP";
	font-weight: 700;
	font-style: Bold;
	font-size: 24px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0;
	color: #005EAD;
}

.inquiry-content-line {
	display: flex;
	align-items: center;
}

.inquiry-section .inquiry-wrapper .inquiry-content .c-label {
	position: relative;
	top: 4px;
	/*
	bottom: -4px;
	right: 16px;
	*/
	display: inline-block;
	width: 48px;
	height: 24px;
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0;
	color: #FFFFFF;
	background: #005EAD;
	text-align: center;
}
.inquiry-section .inquiry-wrapper .inquiry-content .c-number {
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: SemiBold;
	font-size: 48px;
	leading-trim: NONE;
	line-height: 110%;
	letter-spacing: 0;
	color: #151515;
}

.inquiry-section .inquiry-wrapper .inquiry-content .c-label.last-mail {
	position: relative;
	/*
	bottom: auto;
	right: 16px;
	*/
	display: inline-block;
	width: auto;
	height: 24px;
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0;
	color: #FFFFFF;
	background: #005EAD;
	text-align: center;

	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	vertical-align: middle;
	padding: 2.5px 8px 3.5px 8px;

}
.inquiry-section .inquiry-wrapper .inquiry-content .c-number.last-mail {
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: SemiBold;
	font-size: 48px;
	leading-trim: NONE;
	line-height: 110%;
	letter-spacing: 0;
	color: #151515;

	font-family: Satoshi;
	font-weight: 700;
	font-style: Bold;
	font-size: 22px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
}
.inquiry-section .inquiry-wrapper .inquiry-content .c-number.last-mail A {
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: SemiBold;
	font-size: 48px;
	leading-trim: NONE;
	line-height: 110%;
	letter-spacing: 0;
	color: #151515;

	font-family: Satoshi;
	font-weight: 700;
	font-style: Bold;
	font-size: 22px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
}
.inquiry-section .inquiry-wrapper .inquiry-content .c-label.last-tel {
	position: relative;
	/*
	bottom: 8px;
	right: 16px;
	*/
	display: inline-block;
	width: 48px;
	height: 24px;
	font-family: "Noto Sans JP";
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 130%;
	letter-spacing: 0;
	color: #FFFFFF;
	background: #005EAD;
	text-align: center;

	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Medium;
	font-size: 17.92px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	vertical-align: middle;
	padding: 3px 8px;
}


.inquiry-section .inquiry-wrapper .inquiry-content .c-number.last-tel {
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: SemiBold;
	font-size: 48px;
	leading-trim: NONE;
	line-height: 110%;
	letter-spacing: 0;
	color: #151515;

	font-family: Noto Sans JP;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 48px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	vertical-align: middle;

}


.inquiry-section .inquiry-wrapper .inquiry-content .reception-info {
	/*
	position: relative;
	top: 0;
	right: 16px;
	*/
	font-family: "Noto Sans JP";
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0;
	color: #151515;
	padding-top: 8px;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* アウトライン・ブルー（Figma寸法 260×56） */
.btn-outline-blue{
	/* 寸法・形状 */
	--btnH: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--btnH);
	min-width: 260px;											 /* Figmaの横幅。必要なら width:260px; に */
	padding: 16px 40px 16px 24px;					 /* 右はアイコン分広め */
	border-radius: 64px;
	border: 1px solid #005EAD;
	background: #fff;
	color: #005EAD;
	text-decoration: none;

	/* 文字 */
	font-family: "Noto Sans JP", system-ui, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;

	/* 演出 */
	position: relative;
	transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .06s ease;
	-webkit-tap-highlight-color: transparent;
}

/* 右端の矢印（指定SVGをそのまま使用） */
.btn-outline-blue::after{
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	/* SVGが透過前提なので背景は塗らない */
}
.web-buy-section .btn-outline-blue::after{
	background: url("/common/asset/webshop/icon_button_arrow.png") no-repeat center / contain;
}
.fax-inq-section .btn-outline-blue::after{
	background: url("/common/asset/webshop/icon_button_download.png") no-repeat center / contain;
}
.fax-buy-section .btn-outline-blue::after{
	background: url("/common/asset/webshop/icon_button_download.png") no-repeat center / contain;
}

/* Hover / Active / Focus */
.btn-outline-blue:hover{
	color: #005EAD;
	text-decoration: none;
}
.btn-outline-blue:active{
	color: #005EAD;
	text-decoration: none;
}
.btn-outline-blue:focus-visible{
	color: #005EAD;
	text-decoration: none;
}

/* 可変幅にしたい時（テキスト幅で伸縮） */
.btn-outline-blue.--auto{
	min-width: 0;
	padding-right: 40px;	/* アイコンの余白だけ確保 */
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/*@media (max-width: 1024px) {*/
@media (max-width: 1200px) {
	/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
		display: unset;
	}
	img.pc {
		display: none;
		width: 100%;
	}
	img.sp {
		display: block;
		width: 100%;
	}
	/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
	.top-section-inner {
		padding: 72px 24px 40px 24px;
	}
	.web-buy-section {
		padding: 72px 24px 40px 24px;
	}
	.fax-inq-section {
		padding: 72px 24px 40px 24px;
	}
	.fax-buy-section {
		padding: 72px 24px 40px 24px;
	}
	.inquiry-section {
		padding: 72px 24px 40px 24px;
	}
	.section-inner {
		width: auto;
	}
	.section-inner .section-title {
		font-size: 24px;
		line-height: 140%;
	}
	.step-wrapper {
		display: block;
	}
	.step-wrapper .step-row {
		width: 100%;
		padding: 16px 24px;
	}
	.web-buy-section .step-wrapper .step-row {
		height: auto;
	}
	.fax-inq-section .step-wrapper .step-row {
		height: auto;
	}
	.fax-buy-section .step-wrapper .step-row {
		height: auto;
	}
	.step-wrapper .step-number {
		font-size: 14px;
	}
	.step-wrapper .step-arrow {
		display: table;
		margin: 16px auto;
	}
	.step-wrapper .step-info1 {
		font-size: 18px;
	}
	.step-wrapper .step-info1 a {
		font-size: 18px;
	}
	.step-wrapper .step-info-image {
		padding-top: 16px;
	}
	.step-wrapper .step-info2 {
		font-size: 14px;
		text-align: left;
		padding-top: 16px;
	}
	.step-wrapper .step-info2 .annotation {
		font-size: 12px;
		text-align: left;
	}

	.contact-wrapper {
		display: block;
		height: auto;
		padding: 24px 24px;
	}
	.contact-wrapper .contact-left {
		padding-right: 0;
		padding-bottom: 8px;
	}
	.contact-wrapper .contact-right {
		padding-left: 0;
		padding-top: 12px;
		border-left: none;
		border-top: solid 1px #005EAD;
		text-align: center;
	}
	.contact-wrapper .contact-title {
		font-size: 18px;
		padding-bottom: 8px;
	}
	.contact-wrapper .contact-content {
		font-size: 14px;
		white-space: normal;
		padding-bottom: 8px;
	}
	.contact-wrapper .contact-right a {
		margin-top: 16px;
	}

	.contact-wrapper2 {
		display: block;
		height: auto;
		padding: 24px 24px;
	}
	.contact-wrapper2 .contact-left {
		padding-left: 0;
		padding-bottom: 26px;
	}
	.contact-wrapper2 .contact-right {
		padding-left: 0;
		padding-top: 16px;
		border-left: none;
		border-top: solid 1px #005EAD;
		text-align: center;
	}
	.contact-wrapper2 .contact-title {
		font-size: 16px;
		padding-bottom: 16px;
	}
	.contact-wrapper2 .contact-content .c-label {
		font-size: 14px;
		/*
		bottom: 6px;
		*/
		padding-top: 2px;
	}
	.contact-wrapper2 .contact-content .c-number {
		font-size: 28px;
	}

	.c-mail-wrapper a {
		font-size: 18px;
	}

	.inquiry-section .section-inner {
		padding: 32px 24px;
	}
	.inquiry-section .section-inner .section-title {
		font-size: 18px;
	}
	.inquiry-section .inquiry-text {
		font-size: 14px;
		padding-top: 28px;
		text-align: left;
	}
	.inquiry-section .inquiry-wrapper {
		display: block;
	}
	.inquiry-section .inquiry-wrapper .inquiry-left {
		padding: 0;
	}
	.inquiry-section .inquiry-wrapper .inquiry-title {
		font-size: 16px;
		text-align: center;
	}
	.inquiry-section .inquiry-wrapper .inquiry-content {
		text-align: left;
		padding-top: 16px;
		padding-left: 16px;
	}
	.inquiry-section .inquiry-wrapper .inquiry-content .c-label {
		font-size: 14px;
		top: 0;
		/*
		bottom: 6px;
		*/
		padding-top: 2px;
	}
	.inquiry-section .inquiry-wrapper .inquiry-content .c-number {
		font-size: 28px;
	}
	.inquiry-section .inquiry-wrapper .inquiry-content .reception-info {
		font-size: 14px;
		padding-top: 4px;
		line-height: 180%;
	}






	.inquiry-content-line {
		display: flex;
		align-items: center;
		/*justify-content: flex-start;*/
		justify-content: center;
		gap: 16px;
	}

	.c-label.last-mail {
		width: 48px;
		height: 24px;
		padding: 5px 0;
		text-align:center;
		font-size: 14px;

		margin: 0;
		/*
		top: 0;
		left: 0;
		*/
	}
	.c-number.last-mail A {
		font-family: Satoshi;
		font-weight: 700;
		font-style: Bold;
		font-size: 18px;
		leading-trim: NONE;
		line-height: 100%;
		letter-spacing: 0%;
		vertical-align: middle;
	}
	.c-label.last-tel {
		width: 48px;
		height: 24px;
		padding: 5px 0;
		text-align:center;
		font-size: 14px;

		margin: 0;
		/*
		top: 0;
		left: 0;
		*/
	}


	.c-number.last-tel {
		font-family: Noto Sans JP;
		font-weight: 600;
		font-style: SemiBold;
		font-size: 28px;
		leading-trim: NONE;
		line-height: 100%;
		letter-spacing: 0%;
		vertical-align: middle;

	}

  .inquiry-section .inquiry-wrapper .inquiry-content .c-label {
    font-size: 14px;
/*
    right: auto;
    bottom: auto;
*/
    padding-top: 2px;
    width: 48px;
    height: 24px;
  }

.inquiry-section .inquiry-wrapper .inquiry-content .c-label.last-mail {
  font-size: 14px;
/*
  bottom: auto;
  right: auto;
*/
  padding-top: 2px;
  width: 48px;
  height: 24px;
  flex: 0 0 48px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inquiry-section .inquiry-wrapper .inquiry-content .c-label {
    font-size: 14px;
/*
    bottom: auto;
    right: auto;
*/
    padding-top: 2px;
    width: 48px;
    height: 24px;
    width: 48px;
    height: 24px;
    flex: 0 0 48px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.inquiry-section .inquiry-wrapper .inquiry-content {
    text-align: left;
    padding-top: 16px;
    padding-left: 0;
	width: 100%;
  }

  .inquiry-section .inquiry-wrapper .inquiry-content .reception-info {
    font-size: 14px;
    padding-top: 16px;
    right: 0;
	line-height: 180%;
  }

	.inquiry-section .inquiry-wrapper .inquiry-content .c-number.last-mail {
	  font-family: "Noto Sans JP";
	  font-weight: 600;
	  font-style: SemiBold;
	  font-size: 48px;
	  leading-trim: NONE;
	  line-height: 110%;
	  letter-spacing: 0;
	  color: #151515;
	  font-family: Satoshi;
	  font-weight: 700;
	  font-style: Bold;
	  font-size: 22px;
	  leading-trim: NONE;
	  line-height: 100%;
	  letter-spacing: 0%;
	  margin-bottom: 10px;
	}

	  .inquiry-section .inquiry-wrapper .inquiry-content .c-label.last-mail {
	    font-size: 14px;
	/*
	    right: auto;
	    bottom: auto;
	*/
	    padding-top: 2px;
	    width: 48px;
	    height: 24px;
	    flex: 0 0 48px;
	    padding: 0;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    margin-bottom: 6px;
	  }


}


.c-mail-wrapper {
  padding: 8px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inquiry-content {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  justify-content: left;
  gap: 16px;
  width: auto;
  margin: 0 auto;
  width: 320px;
}
.inquiry-wrapper .inquiry-content {
	width: 480px;
}

.inquiry-content-line {
  display: flex;
  align-items: center;
}

.c-label {
	margin-right: 16px;
  position: relative;
/*
  bottom: 8px;
  right: 16px;
*/
  display: inline-block;
  width: 54px;
  height: 24px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-style: Medium;
  font-size: 17.92px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0;
  color: #FFFFFF;
  background: #005EAD;
  text-align: center;
}

.c-mail {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 110%;
  letter-spacing: 0;
  color: #151515;
  line-height: 22px;
  white-space: nowrap;
}
.c-mail A {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 110%;
  letter-spacing: 0;
  color: #151515;
  line-height: 22px;
  white-space: nowrap;
}

.c-number {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 110%;
  letter-spacing: 0;
  color: #151515;
  line-height: 40px;
  white-space: nowrap;
}

.c-number2 {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 110%;
  letter-spacing: 0;
  color: #151515;
  line-height: 48px;
  white-space: nowrap;
}


@media (max-width: 1200px) {
	/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
	.inquiry-content {
	  width: auto;
	  margin: 0 auto;
	}

	.c-label {
		padding-top: 2px;
		margin: 0;
		margin-bottom: 0;
	}
	.inquiry-section .inquiry-wrapper .inquiry-content .c-label.last-mail {
		margin: 0;
		margin-bottom: 0;
	}

	.inquiry-content{
		gap:8px;
	}
	.reception-info {
		padding-top: 0;
	}

	.c-mail,
	.c-mail A {
		font-family: Satoshi;
		font-weight: 700;
		font-style: Bold;
		font-size: 18px;
	}

	.c-number {
		line-height: 110%;
		font-size: 22px;
	}

	.c-number2 {
		font-weight: 600;
		font-size: 28px;
		line-height: 28px;
	}

	.c-mail-wrapper {
		width: 247px;
		margin: 0 auto;
	
	}


	.c-mail {
		width: 184px;
	}

	.c-number {
		width: 184px;
	}

	.inquiry-content {
		display: block;
		margin: 0 auto;
	}

	.inquiry-content.inquiry-content2 {
		display: block;
	}


}





.c-mail-wrapper {
	width: auto;

}


