@charset "UTF-8";

:root {
	--corp-color: #194375;
	--orange-color: #EA9030;
	--font-size: 16px;
}
.text-corp {
	color: var(--corp-color);
}
.bg-corp {
	background-color: var(--corp-color);
}
.bg-back {
	background-color: #DCE6F5;
}
.border-corp {
	border-color: var(--corp-color)!important;
}
.border-orange {
	border-color: var(--orange-color)!important;
}
.text-orange {
	color: var(--orange-color);
}
.btn-orange {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--orange-color);
  --bs-btn-border-color: var(--orange-color);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #F49939;
  --bs-btn-hover-border-color: #F49939;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #F49939;
  --bs-btn-active-border-color: #F49939;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--orange-color);
  --bs-btn-disabled-border-color: var(--orange-color);
}

.border-radius-tl {
	border-radius: var(--bs-border-radius) 0 0 0!important;
}
.border-radius-tr {
	border-radius: 0 var(--bs-border-radius) 0 0!important;
}

.border-radius-trblr {
	border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) var(--bs-border-radius) !important;
}

/*border-radius:左上の角の幅 右上の角の幅 右下の角の幅 左下の角の幅*/
.border-radius-none {
	border-radius: 0 0 0 0!important;
}

#contact .active {
	--bs-text-opacity: 1!important;
	color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
	background: 0 0!important;
}

#contact a:hover {
	color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
}
@media (max-width: 768px) {
	#contact {
		overflow-x: auto;
		white-space: nowrap;
		flex-wrap: nowrap;
		scrollbar-width: none; /* Firefox */
	}

	#contact::-webkit-scrollbar {
		display: none; /* Chrome, Safari */
	}
}
/*
 * スマホ用
*/
@media only screen and (max-width: 429px) {
	:root {
		--font-size: 13px;
	}
	.top-logo {
		width:80%!important;
	}
	.navbar-brand {
		max-width: 70%;
	}
	ol {
		padding-left: 1em;
	}
	.bgimg-none {
		background: unset!important;
	}
}

.required {
	background-color: #dC0915;
	color: white;
	font-size: 0.8rem;
}

.top-box {
	object-fit: cover;
	height: calc(100vw / 16 * 9);
	width: 100vw;
	max-height: 60vh;
	max-width: 100%;
}

/*
 SVG用
*/
.fill-corp {
	fill: var(--corp-color);
}
.fill-white {
	fill: white;
}
.fill-orange {
	fill: var(--orange-color);
}
.fill-danger {
	fill: var(--bs-danger);
}
.fill-primary {
	fill: var(--bs-primary);
}

.fill-none {
	fill: none;
}
.stroke-black {
	stroke: black;
}
.stroke-corp {
	stroke: var(--corp-color);
}
.stroke-orange {
	stroke: var(--orange-color);
}

.stroke-3 {
	stroke-width: 3;
}
.stroke-5 {
	stroke-width: 5;
}
.stroke-10 {
	stroke-width: 10;
}

nav a.nav-link:hover {
	color: var(--bs-warning)!important;
}

img.quartet_circle:hover {
	transform: scale(1.05);
}

.triangle-right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


/* 吹き出し左 */
.balloon-left {
	position: relative;
	padding: 0.8rem;
	border-radius: 10px;
	word-wrap: break-word;
	margin-left: 10px;
}

/* 三角アイコン左 */
.balloon-left::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 3px;
	left: -19px;
	border: 8px solid transparent;
	border-right: 18px solid #000;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.bg-primary-subtle.balloon-left::before {
	border-right-color: var(--bs-primary-bg-subtle) !important;
}

/* 吹き出し右 */
.balloon-right {
	position: relative;
	padding: 0.8rem;
	border-radius: 10px;
	word-wrap: break-word;
	margin-right: 20px;
}

/* 三角アイコン右 */
.balloon-right::before {
	content: '';
	position: absolute;
	top: 3px;
	right: -19px;
	border: 8px solid transparent;
	border-left: 18px solid #30e852;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.bg-primary-subtle.balloon-right::before {
	border-left-color: var(--bs-primary-bg-subtle) !important;
}

.flip-horizontal {
    transform: scale(-1, 1);
}

.top-caption {
  top: 0 !important;
  bottom: auto;
  transform: translateY(0);
  position: absolute !important;
  text-align: left !important;
  left: 0 !important;
}
.left-caption {
  left: 0 !important;
  right: auto !important;
  text-align: left !important;
  transform: translateX(0) !important;
}