@charset "UTF-8";

/*――――――――――――――――――――――――――――――――――――――――――――――――――
ヘッダー
――――――――――――――――――――――――――――――――――――――――――――――――――*/
#main #top {
	background-color: #d1f3f7;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	display: none;
}

#top {
	position: fixed;
	z-index: 1000;
	width: 100%;
	max-width: 1800px;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #d1f3f7;
	height: 60px;
	box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
}

.global-nav {
	position: absolute;
	width: 100%;
	z-index: 10;
	height: 50px;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__list2 {
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.global-nav__list li a {
	display: block;
	color: #111;
	text-decoration: none;
}

.global-nav.clone-nav {
	position: fixed;
	top: -100px;
	left: 0;
	transition: all 1s;
	background-color: #d1f3f7;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	height: 60px;
}
.global-nav.clone-nav.is-fixed-nav {
	top: 0;
}

.arky_hdlogo {
	position: absolute;
	top: 0;
	left: 0;
}
.arky_hdmsg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
}
.arky_hdbtn {
	position: absolute;
	top: 0;
	right: 0;
}


/*――――――――――――――――――――――――――――――――――――――――――――――――――
フッター
――――――――――――――――――――――――――――――――――――――――――――――――――*/

footer {
	position: relative;
	z-index: 2;
	text-align: center;
	background-color: #4f3518;
}

.copyright {
	padding: 10px 0;
	text-decoration: none;
}

.copyright,
.copyright a {
	font-size: 14px;
	color: #fff;
}

#footernav {
	display: none;
}

@media screen and (max-width: 381px) {
	.copyright,
	.copyright a {
		font-size: 10px;
	}
}


/*――――――――――――――――――――――――――――――――――――――――――――――――――
フォーム
――――――――――――――――――――――――――――――――――――――――――――――――――*/

input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s !important;
}

input::placeholder {
	color: #8F8F8F;
}

/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #8F8F8F;
}

/* Edge */
input::-ms-input-placeholder {
	color: #8F8F8F;
}

input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
	width: 100%;
	border: 0;
	font-size: 1em;
	padding: 0.3em 0.6em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	/* border-top: 1px solid #002832;
	border-bottom: 1px solid #002832;
	border-right: 1px solid #002832;
	border-left: 1px solid #002832; */
	background-color: #fff;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select {
	width: 100%;
	border: 0;
	font-size: 1em;
	padding: 0.3em 0.6em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	/*
	border-top: 1px solid #006ebe;
	border-bottom: 1px solid #006ebe;
	border-right: 1px solid #006ebe;
	border-left: 1px solid #006ebe;
	*/
	background-color: #fff;
}

.form-field {
	margin-bottom: 7%;
	font-size: 1.6em;
}

.form-inner {
	width: 75%;
	max-width: 700px;
	margin: 10% auto;
}

.form-inner .title {
	font-size: 1.6em;
	padding-bottom: 0.2em;
}

button {
	background-color: transparent;
	border: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	cursor: pointer;
	font-size: 1em;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
section:focus,
main:focus,
article:focus,
nav:focus,
header:focus,
footer:focus,
div:focus,
a:focus {
	outline: none;
}

button:hover {
	cursor: pointer;
}


/*――――――――――――――――――――――――――――――――――――――――――――――――――
チェックボックス
――――――――――――――――――――――――――――――――――――――――――――――――――*/

.checkbox {
	display: flex;
	justify-content: center;
	font-size: 30px;
	margin-left: 7%;
}

.checkbox label {
	position: relative;
	display: block;
	cursor: pointer;
	width: auto;
	margin-right: 0.5em;
	margin-left: 0.5em;
	text-align: left;
}

.checkbox label span.txt {
	display: inline-block;
	line-height: 1.3;
	position: relative;
}

.checkbox label input {
	display: none;
}

.checkbox label input + span.txt::before {
	content: "";
	display: block;
	background: #fff;
	width: 1em;
	height: 1em;
	box-shadow: none;
	margin-right: 0.7em;
	position: absolute;
	left: -1.5em;
	border: 1px solid #508ce6;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.checkbox label input:checked + span.txt::after {
	content: "";
	display: block;
	position: absolute;
	left: -1em;
	width: 0.5em;
	height: 1.3em;
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	transform: rotate(40deg);
	border-bottom: 3px solid #f0c81e;
	border-right: 3px solid #f0c81e;
	top: -25%;
}

.overlay {
	opacity: 0;
	visibility: hidden;
	z-index: 99999;
	position: fixed;
	top: -10px;
	left: 0;
	right: 0;
	bottom: -10px;
	background-color: rgba(4, 0, 0, 0.6);
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay .inner {
	padding-top: 100px;
	padding-bottom: 50px;
	padding-left: 0;
	padding-right: 0;
}

.overlay .container {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}

.overlay .more {
	width: 100%;
	max-width: 800px;
	-webkit-transition: margin 1s ease;
	-moz-transition: margin 1s ease;
	-ms-transition: margin 1s ease;
	-o-transition: margin 1s ease;
	transition: margin 1s ease;
	border: none;
}

.overlay.is-show {
	opacity: 1;
	visibility: visible;
}

.close_btn {
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 999;
}



/*――――――――――――――――――――――――――――――――――――――――――――――――――
err
――――――――――――――――――――――――――――――――――――――――――――――――――*/

.err_msg {
	font-size: 1em;
	color: #508ce6;
	text-align: center;
	font-weight: bold;
	margin: 0.5em 1em 0 0;
}

.err_msg2 {
	font-size: 0.8em;
	color: #508ce6;
	font-weight: bold;
	margin: 0.5em 1em 0 0;
}

.err-field {
	font-size: 1.8em;
	margin-top: -2%;
}

#err2 {
	margin-bottom: 5%;
}

.err-field2 {
	font-size: 1.5em;
	margin-top: 3%;
}


/*――――――――――――――――――――――――――――――――――――――――――――――――――
各種レイアウト
――――――――――――――――――――――――――――――――――――――――――――――――――*/

.back_white {
	background-color: #fff;
}

.back_white2 {
	background-color: rgba(255, 255, 255, 0.8);
}

.color_green {
	color: #829934;
}
.color_blue {
	color: #508ce6;
}
.color_red {
	color: #CC1459;
}
.color_green {
	color: #007846;
}
.color_white {
	color: #ffffff;
}
.color_black {
	color: #000;
}
.background_gradation_blue {
	background: linear-gradient(#32aadc, #9cd6ee);
}
.background_gradation_orange {
	background: linear-gradient(#ec746f, #fdef9b);
}
.background_image_repeat {
	background-repeat: repeat;
}

/*---------- index ----------*/

.scroll_slow {
	top: 0%;
}
.scroll_slow_2 {
	top: 0%;
}
.scroll_slow_3 {
	top: 0%;
}

.image_01-1 {
	position: absolute;
	top: 0%;
}
.image_01-2 {
	position: absolute;
	top: 0%;
}
.image_02-1 {
	position: absolute;
	top: 0%;
}
.image_02-2 {
	position: absolute;
	top: 0%;
}
.image_04-1 {
	position: absolute;
	top: 0%;
}
.image_04-2 {
	position: absolute;
	bottom: 0%;
}

.scroll_box {
  height: auto;
  overflow-x: scroll;
  padding: 0;
  box-sizing: border-box;
  text-align: left !important;
  margin: 0 2%;
	background-color: #fff;
}
.scroll {
	width: 3850px;
}
.jc_c {
  justify-content: center;
  align-items: center;
}
.float_l {
  float: left;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}
.form_table {
  margin-bottom: 10px;
  margin: 0 5% 15px;
}
.form_table li {
  display: inline-block;
}
.form_th {
  /* background-color: #49a2a2; */
  color: #000;
  padding: 11px 6px 9px 6px;
  width: 25%;
  text-align: right;
	font-weight: bold;
}
.form_td {
  width: 74%;
  padding: 10px 6px 8px 6px;
  border: 2px solid #ac2804;
  background-color: #fff;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
}
.form_td3 {
  width: 74%;
  padding: 10px 6px 7.7px 6px;
  border: 2px solid #ac2804;
  background-color: #fff;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
}
.form_table input[type="text"],
.form_table select,
.form_table input[type="number"] {
  -webkit-appearance: none;
  border: none;
  width: 100%;
  font-size: 16px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}
select::-ms-expand {
  display: none;
}
option {
  padding: 0 !important;
  min-height: 0 !important;
}
.form input:focus {
  outline: none; /* フォーカス時のアウトラインを消す */
}


/*---------- confirmation ----------*/

.image_07-1 {
	position: absolute;
	top: 0%;
}
.image_07-2 {
	position: absolute;
	top: 0%;
}



/*---------- payment ----------*/

.image_08-1 {
	position: absolute;
	top: 0%;
}
.image_08-2 {
	position: absolute;
	top: 0%;
}

.j_c {
	justify-content: center;
}

.back_yellow {
	background-color: #FFFAC8;
}

.image_payment_modal_btn_1 {
	position: absolute;
	bottom: -3%;
	left: 50%;
	transform: translate(-50%);
}

.image_payment_01_1 {
	position: absolute;
	top: 0%;
}
.image_payment_02_1 {
	position: absolute;
	top: 0%;
}
.image_payment_02_2 {
	position: absolute;
	bottom: 0%;
}

.arky_btn02 {
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%);
}

.pay_text {
	font-size: 20px;
}
.c_700 {
	text-align: center;
}

.pay_text2 {
	font-size: 35px;
}

.fk_a .white_area4 {
	background-color: #fff;
	width: 860px;
	padding-top: 0;
}



/*---------- law ----------*/

.white_box {
	padding: 5%;
	border: 2px solid #508ce6;
	background-color: #fff;
}

.lawtext {
	padding: 0%;
	width: 85%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.white_box.lawtext {
	padding: 0%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.white_box.lawtext > div {
	padding: 3%;
	height: 15em;
	overflow-y: scroll;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.lawtext .scroll::-webkit-scrollbar-thumb {
	background: #4b1e1e;
}
.lawtext h2 {
	font-size: 1.5em;
	font-weight: bold;
	/* color: #ffffff;; */
}
.lawtext p {
	padding-bottom: 0.5em;
	/* color: #ffffff;; */
}

.white_box.lawtext_confimation {
	padding: 2%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.white_box.lawtext_confimation > div {
	padding: 1%;
	height: 12em;
	overflow-y: scroll;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.lawtext_confimation .scroll::-webkit-scrollbar-thumb {
	background: #003c82;
}
.lawtext_confimation h2 {
	font-size: 1.5em;
	font-weight: bold;
	color: #003c82;;
}

.lawtext_confimation p {
	padding-bottom: 0.5em;
	color: #003c82;;
}


