@charset "UTF-8";
/*--------------------------------
RESET-----------------------------
----------------------------------*/
html {
    box-sizing: border-box;
    transition: all .2s;
}

*,
::before,
::after {
    box-sizing: inherit;
    transition: inherit;
}
body {
    margin: 0;
}
a {
    color: inherit;
    transition: all .3s;
}
figure,
video,
img {
    max-width: 100%;
    height: auto;
    margin: 0;
    vertical-align: middle;
}
label,
input[type="reset"] {
    cursor: pointer;
    user-select: none;
}
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    max-width: 100%;
}

/* 入力欄 */
textarea {
    width: 100%;
    min-height: 5em;
    padding: 0.5em 1em;
    box-sizing: border-box;
    background-color: #fff;
    border: solid 1px #E2E2E2;
}
input {
    border: solid 1px #E2E2E2;
}
input[type='submit'],
input[type='button'] {
    padding: 0.5em 1em;
    background-color: #E2E2E2;
    color: #fff;
}
input[type="text"],
input[type="number"],
input[type="email"] {
    background: #fff;
    padding: 0.75em 1em;
}
input[type='checkbox'] {
    border: solid 1px #EAEAEA;
    width: 1em;
    height: 1em;
    vertical-align: text-top;
    position: relative;
    background: #fff;
    border-radius: 2px;
}
input[type='checkbox']:after {
    content: "";
    position: absolute;
    left: 0.2em;
    top: -0.1em;
    width: 0.5em;
    height: 0.8em;
    border: solid #845D30;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}
input[type='checkbox']:checked {
    background-color: #e3d0bb;
}
input[type='checkbox']:checked:after {
    opacity: 1;
}
.select-wrap {
    position: relative;
}
select {
    border: solid 1px #E2E2E2;
    padding: 0.75em 2em 0.75em 1em;
    cursor: pointer;
    position: relative;
    color: inherit;
}
.select-wrap::after {
    content: "▼";
    font-size: 10px;
    display: inline-block;
    transform: translateY(-50%);
    position: absolute;
    right: 1em;
    top: 50%;
    pointer-events: none;
}

input[type='radio']{
    appearance: auto;
}

/* メディアクエリ */
@media (max-width:1280px) {
}
@media (max-width:1024px) {
}
@media (max-width:768px) { /* hamburger size */
}
@media (max-width:540px) {
}


/* スクリーンリーダーを隠す */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* 電話リンク */
a.tellink{
    pointer-events: none;
    text-decoration: none;
}
@media (max-width:768px) {
    a.tellink{
        pointer-events: all;
    }
}
