@charset "UTF-8";
@media screen and (min-width: 1000px) {
#contact-mobile {
	display: none;
}
}


h1{
	font-weight: lighter;
	margin: 0;
}
h2{
	font-weight: lighter;
	margin: 0;
}
h3{
	font-weight: lighter;
	margin: 0;
}
h4{
	font-weight: lighter;
	margin: 0;
}
p {
	margin:0;
}

/* 文字リンク下線消す */
a {
text-decoration: none;
}

a {  
  color: inherit;
}

.style-kome {
	color: #E60012;
}

.contact-title01 {
	width: 740px;
	height: 50px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	padding-left: auto;
	padding-right: auto;
	font-size: 15px;
	line-height: 38px;
	letter-spacing: 0.5em;
	text-align: center;
	font-family: "游明朝体","Yu Mincho","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ 明朝","MS Mincho",serif !important;
}
#contact-copy01 {
	width: 740px;
	height: 150px;
	margin-bottom: 50px;
	padding-left: auto;
	padding-right: auto;
	margin-right: auto;
	margin-left: auto;
	font-size: 13px;
	line-height: 28px;
	letter-spacing: 0.09em;
	color: #231815;
	text-align: center;
	font-family: "游明朝体","Yu Mincho","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ 明朝","MS Mincho",serif !important;
}

#contact-desktop {
	width: 740px;
	margin-bottom: 150px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	font-size: 14px;
	letter-spacing: 0.05em;
	color: #231815;
	text-align: justify;
	font-family: "游明朝体","Yu Mincho","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ 明朝","MS Mincho",serif !important;
}

/*==================================
# お問い合わせフォーム
===================================*/
.contact_inner {
	width: 740px;
    margin-bottom: 150px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #231815;
    text-align: justify;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS Mincho", serif !important;
}

@media (max-width: 999px) {
	.contact_inner {
		width: 84.4%;
		padding-right: 7.8%;
		padding-left: 7.8%;
		margin-bottom: 20%;
		position: relative;
	}
}


.contact_form {
	margin-top: 30px;
}

.form_item {
	width: 100%;
    font-size: 12px;
    padding: 5px 2px 0px;
    text-align: left;
    margin: 0px;
}

.form_item:nth-child(n+2) {
	margin-top: 8px;
}

.form_label span  {
	margin-left: 8px;
}

.form_label .required {
	padding: 2px 5px;
    font-size: 10px;
    color: #C00;
    margin: 0px 5px;
}

.form_input {
	margin-left: 0;
	margin-top: 5px;
}

.form_input input {
	width: 100%;
	font-size: 12px;
	padding: 5px 10px;
	text-align: left;
	margin: 0px;
	border-radius: 0;
	border: 1px solid #9c9c9c;
	box-shadow: none;
	box-sizing: border-box;
}

.form_input.radio input {
	width: auto;
}

.form_input textarea {
	appearance: none;
	box-shadow: none;
	width: 100%;
	font-size: 12px;
	padding: 5px 10px 0px;
	text-align: left;
	margin: 0px;
	min-height: 200px;
	resize: none;
	border: 1px solid #9c9c9c;
	box-sizing: border-box;
}

/* ラジオボタン */
.form_input.radio {
	display: flex;
	gap: 10px;
	padding-left: 5px;
}

label {
	align-items: center;
	cursor: pointer;
	display: flex;
	margin-right: 20px;
}

input[type="radio"]::before {
	background-color: #505050;
	border-radius: 50%;
	bottom: 0;
	content: "";
	width: 10px;
	height: 10px;
	left: 0;
	margin: auto;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: .3s;
}

input[type="radio"]:checked::before {
	opacity: 1;
}

input[type="radio"] {
	appearance: none;
	border: 1px solid #9c9c9c;
	border-radius: 50%;
	width: 16px !important;
	height: 16px !important;
	left: -.5em;
	margin: 0;
	position: relative;
	margin: 0;
	flex-shrink: 0;
	padding: 0;
}

/* チェックボックス */
.form_input.check input {
	width: inherit;
}

input[type="checkbox"]  {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;
    vertical-align: middle;
    position: relative;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: "";
    display: block;
    position: absolute;
}

input[type="checkbox"]::before {
    background-color: #fff;
    border-radius: 0%;
	border: 1px solid #9c9c9c;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
	transition: .3s;
}

input[type="checkbox"]::after {
    border-bottom: 3px solid #231815;
    border-left: 3px solid #231815;
    opacity: 0;
    height: 6px;
    width: 11px;
    transform: rotate(-45deg);
    top: -7px;
    left: 2px;
	transition: .3s;
}

input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* 送信ボタン */
.form_submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}

.form_submit input {
	font-family: inherit;
	display: inline-block;
	color: #fff;
	padding: 10px 10px;
	background-color: #231815;
	appearance: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	min-width: 200px;
	transition: .3s;
}

.form_submit input.reset {
	background-color: #fff;
	border: 1px solid #231815;
	color: #231815;
}

.form_submit input:hover {
	opacity: .7;
	cursor: pointer;
}

/*==================================
# サンクスページ
===================================*/
#thanks {
	height: 500px;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#thanks ul {
	margin: 0px;
	padding: 0px;
}
#thanks li {
	display:inline;
	list-style-type:none;
}
#thanks li a {
	height: 500px;
	width: 1000px;
	display: block;
	float: left;
	text-indent: -9999px;
	text-decoration: none;
	overflow: hidden;
}
#thanks li.thanks01 a {
	width: 1000px;
	background-image: url(../images/desktop/thanks-logo.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 500px;
}

#thanks li.thanks01 a:hover {
	background-image: url(../images/desktop/thanks-logo.png);
	background-repeat: no-repeat;
	background-position: 0px -500px;
}

#thanks-copy01 {
	width: 1000px;
	height: 50px;
	padding-top: 250px;
	padding-left: auto;
	padding-right: auto;
	margin-right: auto;
	margin-left: auto;
	font-size: 15px;
	line-height: 38px;
	letter-spacing: 0.5em;
	text-align: center;
	color: #231815;
	font-family: "游明朝体","Yu Mincho","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ 明朝","MS Mincho",serif !important;
}
#thanks-copy02 {
	width: 1000px;
	height: 170px;
	margin-bottom: 200px;
	padding-left: auto;
	padding-right: auto;
	margin-right: auto;
	margin-left: auto;
	font-size: 15px;
	line-height: 38px;
	letter-spacing: 0.055em;
	text-align: center;
	color: #231815;
	font-family: "游明朝体","Yu Mincho","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ 明朝","MS Mincho",serif !important;
}