@charset "UTF-8";

html {
    overflow: scroll;
    overflow: -moz-scrollbars-vertical;
    overflow-x: hidden;
}
body {
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    letter-spacing: 2px;
	letter-spacing: 0;
    font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    line-height: 24px;
	color: #000;
}
_:lang(x)::-ms-backdrop, body {
    font-family: "Segoe UI", Meiryo, sans-serif;
} 
b, strong, .bold{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
strong,
p,
td,
div,
dl,
dt,
dd,
ul,
ol,
li {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    border: 0;
    vertical-align: bottom;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
	text-decoration: none;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/*共通*/
.center {
	text-align: center;
}
.pc_no {
	display: none !important;;
}
a[href^="tel:"] {
    pointer-events: none;
}
.flex {
	display: flex;
	align-items: center;
}
.red {
	color: red;
	font-weight: 500;
}
a[href^="tel:"] {
    pointer-events: none;
}

/*アニメーション*/
.scroll-fade{
	opacity: 0;
	transition: all 2s/*処理にかかる時間*/;
}
.scroll-up{
	opacity: 0;
	transform: translateY(40px)/*スクロールアップする距離*/;
	transition: all 2s/*処理にかかる時間*/;
}
.scroll-up.done, .scroll-fade.done{
	opacity : 1;
	transform : translate(0, 0);
}
.load-fade {
	opacity : 0;
	transition : all 2s/*処理にかかる時間*/;
}
.load-up{
	opacity: 0;
	transform: translateY(40px)/*スクロールアップする距離*/;
	transition: all 2s/*処理にかかる時間*/;
}
.load-up.done, .load-fade.done{
	opacity : 1;
	transform : translate(0, 0);
}
.fade {
    animation-name: fadein;
    animation-duration: 2s;
    animation-iteration-count: 1;
	padding-bottom: 5px;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(40px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
