@charset "utf-8";

/* ===================================================================

CSS information
file name  :  style.css
 
=================================================================== */

/* ===================================================================
setting
=================================================================== */

/* reset
--------------------*/

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, img, 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;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: inherit;
	background: transparent;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
button, 
textarea, 
select {
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none; 
	text-overflow: '';
	border-radius: 0;
	border: none; 
	outline: none;
	resize: none;
}

input[type="submit"],
input[type="button"] {
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
  	-moz-appearance: textfield;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  	display: none;
}

select::-ms-expand {
	display: none;
  }

* a {
	text-decoration: none;
	color: inherit;
	font-size: inherit; 
	font-weight: inherit;
	font-family: inherit;
	text-align: inherit;
	line-height: inherit;
	outline: none;
}

* a img {
	border-style: none;
	outline: none;
}

img {
	vertical-align: middle;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.cf:after {
	content: '';
	display: block;
	clear: both;
}

/* フォント
--------------------*/

/* Noto Sans JP */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/NotoSansJP-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

/* html, body setting
--------------------*/

body {
	position: relative;
	color: #555;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	overflow-x: hidden;
}

/* display
--------------------*/

.sp {
	display: none !important;
}

.pc {
	display: block !important;
}

.br-sp {
	display: none !important;
}

.br-pc {
	display: inline !important;
}

@media screen and (max-width: 1240px) {

	.sp {
		display: block !important;
	}
	
	.pc {
		display: none !important;
	}

	.br-sp {
		display: inline !important;
	}
	
	.br-pc {
		display: none !important;
	}
	
}

/* ===================================================================
レイアウト
=================================================================== */

.form-content form {
	max-width: 700px;
	margin: 0 auto;
}

.form-content .contact-item {
	margin: 0 0 35px;
	text-align: center;
	line-height: 2;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 1240px) {
	.form-content .contact-item {
	text-align: left;
}

/* ===================================================================
ボタン
=================================================================== */

.form-content .contact-button .btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	padding: 15px 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
	background: #333;
	cursor: pointer;
	transition: all .3s ease-out 0s;
}

@media screen and (max-width: 500px) {

	.form-content .contact-button .btn {
		max-width: 260px;
	}

}

.form-content .contact-button .btn.cancel-btn {
	margin: 0 auto 20px;
	background: #BCBCBC;
}

.form-content .contact-button .btn:hover {
	background: #f277b1;
}

.form-content .contact-button .btn.cancel-btn:hover {
	background: #00afcc;
}

/* ===================================================================
フォーム
=================================================================== */

/* 共通
--------------------*/

.form-content dt {
	display: block;
	position: relative;
	margin: 0 0 10px;
	font-weight: 500;
	letter-spacing: 1px;
}

.form-content dd {
	margin: 0 0 20px;
}

.form-content input {
	width: 100%;
	padding: 12px 15px;
	font-family: sans-serif;
	font-size: 14px;
	background: #FAFAFA;
	border: 1px solid #E6E6E6;
}

input:-internal-autofill-selected {
	background: #FAFAFA;
}

.form-content dt span,
.form-content .contact-item span,
.form-content .form_cation {
	color: #EB1D6A;
}
	
.form-notes_text {
 	font-size: 12px;
	color:#555!important;
}

/* プレースホルダー
--------------------*/

:placeholder-shown {
	color: #BCBCBC;
}

::-webkit-input-placeholder {
	color: #BCBCBC;
}

:-moz-placeholder {
	color: #BCBCBC;
	opacity: 1;
}

::-moz-placeholder {
	color: #BCBCBC;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #BCBCBC;
}

/* テキストエリア
--------------------*/

.form-content textarea {
	width: 100%;
	height: 150px;
	padding: 12px 15px;
	font-family: sans-serif;
	font-size: 14px;
	background: #FAFAFA;
	border: 1px solid #E6E6E6;
}

/* セレクトボックス
--------------------*/

.form-content .form-content-selectbox {
	position: relative;
	width: 100%;
}

.form-content .form-content-selectbox::before {
	content: '';
	position: absolute;
	top: 12px;
	right: 15px;
	width: 12px;
	height: 12px;
	border-right: 1px solid #BCBCBC;
	border-bottom: 1px solid #BCBCBC;
	transform: rotate(45deg);
	z-index: 1;
}

.form-content .form-content-selectbox select {
	width: 100%;
	padding: 12px 15px;
	font-family: sans-serif;
	font-size: 14px;
	background: #FAFAFA;
	border: 1px solid #E6E6E6;
}

/* ラジオボタン
--------------------*/

.form-content .form-content-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.form-content .form-content-radio input {
	display: none;
}

.form-content .form-content-radio label {
	margin: 0 0 10px;
}

.form-content .form-content-radio input + label {
	position: relative;
	padding: 0 25px;
}

.form-content .form-content-radio input + label:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
    width: 18px;
    height: 18px;
	background: #FAFAFA;
	border: 1px solid #E6E6E6;
	border-radius: 50%;
	transform: translate(0, -50%);
}

.form-content .form-content-radio input:checked + label::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 10px;
	height: 10px;
	background: #f277b1;
	border-radius: 50%;
	transform: translate(0, -50%);
}

/* チェックボックス
--------------------*/

.form-content .form-content-checkbox {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.form-content .form-content-checkbox label {
	margin: 0 0 10px;
}

.form-content .form-content-checkbox input {
	display: none;
}

.form-content .form-content-checkbox input + label {
	position: relative;
	padding: 0 25px;
}

.form-content .form-content-checkbox label::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	background: #FAFAFA;
	border: 1px solid #E6E6E6;
	transform: translate(0, -50%);
}

.form-content .form-content-checkbox input:checked + label::after {
	content: '';
	display: block;
	position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 10px;
	background: transparent;
	border-bottom: 3px solid #f277b1;
	border-right: 3px solid #f277b1;
	transform: rotate(40deg);
}