@charset "utf-8";
@import url("variable.css");

* {
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

body {
    font-family: var(--baseFont);
}

table, pre, code, select, input, textarea, kbd, var, ins, del, samp, h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}

br {
    vertical-align: middle;
/* FFで改行あるなしで高さが微妙に変わるのを回避 */
}

address,cite,dfn,em,var {
    font-style: normal;
}

img {
    border: none;
    vertical-align: bottom;
    line-height: 1;
    -ms-interpolation-mode: bicubic;
    width: auto;
    max-width: 100%;
    height: auto;
 /* 大きい画像縮小してもキレイ */
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

ul,ol,li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

abbr,acronym {
    border: 0;
    font-variant: normal;
}

form label {
    cursor: pointer;
}

select option {
    padding: 0 5px;
}

input, textarea {
    margin: 1px;
    padding: 2px;
    line-height: 1;
}

textarea {
    overflow: auto;
}

input, button, textarea, select, optgroup, option {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

a {
    cursor: pointer;
}

.cf:after {
    content: "";
    clear: both;
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

iframe {
	display: block;
	border: none;
}

.modal {
	z-index: 9999999999;
}
/*モーダルをチャットボットよりも前面に表示*/

/*-- CSS拡張 ------------------------------------------------------------------------------*/

.min-h-auto {
	min-height: auto !important;
}

.min-w-auto {
	min-height: auto !important;
}

.text-ul {
	text-decoration: underline;
}

.text-hover-ul:hover {
	text-decoration: underline;
}

.border-t-only {
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;
}

.border-r-only {
	border-top: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;
}

.border-b-only {
	border-top: 0 !important;
	border-right: 0 !important;
	border-left: 0 !important;
}

.border-l-only {
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
}

.flex-0 {
	flex: none;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.flex-shrink-1 {
	flex-shrink: 1;
}

.flex-basis-0 {
	flex-basis: 0;
}

.flex-basis-1 {
	flex-basis: 1;
}

.opacity {
	opacity: .7;
}

.opacity:hover {
	opacity: .7;
}

.cursol-pointer {
	cursor: pointer;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 9;
}

.z-index-2 {
	z-index: 99;
}

.z-index-3 {
	z-index: 999;
}

.mt-6 {
	margin-top: 4rem;
}

.mt-7 {
	margin-top: 5rem;
}

.brSp br{
	display:none;
}

.youtubeBox {
	position: relative;
	height: 0;
	width: 100%;
	padding: 0 0 56.25%;
}

.youtube {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}


/*-- Bootstrap4デフォルトCSS打消し ---------------------------------------------------------------------*/

button:focus {
	outline: 0 !important;
}

.btn.focus, .btn:focus {
	 outline: 0 !important;
	-webkit-box-shadow:none !important;
	 box-shadow:none !important;
}

.btn {
	min-height: auto !important;
	min-width: auto !important;
	white-space: normal !important;
}

.navbar-light .navbar-nav .nav-link {
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-bottom: 0;
	word-break: break-word;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/*-- IE用WEBフォント文字つぶれ対策 ----------------------------------------------------------*/
/* h1, h2, h3, h4, h5, h6, p, a, span {
	transform: rotate(0.001deg);
} */


@media screen and (max-width: 768px) {

/* iphone用inputタグの初期化 */
    input[type="button"],
input[type="reset"],
input[type="submit"] {
        -webkit-appearance: none;
        margin-bottom: 10px;
    }

    .brSp br{
        display:block;
    }
}