@charset "UTF-8";

/*
Theme Name: 2021shodankai
Author: BORDER Inc.
*/

:root {
	--color-default: #333333;
	--color-brand: #285dac;
	--color-black: #000;
}

html, body {
	height: 100%;
}

body {
	font-family: "Hiragino Kaku Gothic ProN", 'Noto Sans JP', -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, Meiryo, sans-serif;
	color: var(--color-default);
	background-color: #fff;
	line-height: 1.8;
	letter-spacing: .1em;
	font-size: 0.95em;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

.marugo {
	font-family: TsukuARdGothic-Regular, "Hiragino Maru Gothic Pro", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

.font-mincho {
	font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

h1, .h1 {
	font-size: 2.5em;
}

h2, .h2 {
	font-size: 2em;
}

h3, .h3 {
	font-size: 1.75em;
}

h4, .h4, .drawer-brand {
	font-size: 1.5em;
}

h5, .h5, .lead {
	font-size: 1.25em;
}

h6, .h6, .drawer-menu-item {
	font-size: 1em;
}

[class^="d-"]>img, [class*=" d-"]>img, .d-flex img, .card img, .row img {
	flex: none;
}

.contents img {
	max-width: 100%;
	height: auto;
}

a, a img {
	color: inherit;
	-webkit-transition-duration: .45s;
	-webkit-transition-property: color, border-color, background-color, opacity;
	-webkit-transition-delay: 0s;
	transition-duration: .45s;
	transition-property: color, border-color, background-color, opacity;
	transition-delay: 0s;
}

a:visited, a:link, a:active, a:hover {
	text-decoration: none;
}

a:hover {
	color: inherit;
}

a:hover img {
	opacity: 0.7;
}

.accordion-button:not(.collapsed) {
	color: #000;
	background-color: transparent;
}

.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.ls-none {
	letter-spacing: 0;
}

.ls-0 {
	letter-spacing: .1em;
}

.ls-wide {
	letter-spacing: .2em;
}

.lh-0 {
	line-height: 1.44;
}

.lh-2 {
	line-height: 1.66;
}

.underline {
	text-decoration: underline;
}

.lum-lightbox.lum-open {
	z-index: 9999;
}

.form-min {
	width: 280px;
	display: inline-block!important;
}

.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 0.8s;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}


/* toggle-start */

.drawer-toggle:focus {
	outline: none;
}

.icon-bar {
	display: block;
	width: 24px;
	height: 1px;
	border-radius: 1px;
	background-color: #333;
	border-color: transparent;
	cursor: pointer;
	margin: auto;
}

.icon-bar+.icon-bar {
	margin-top: 6px;
}

.drawer-toggle.drawer-hamburger {
	position: absolute;
	background-image: none;
	border: 1px solid transparent;
	top: 0;
	right: 0;
	left: auto;
	padding: 21px 11px;
}

.drawer--left.drawer-open .drawer-hamburger {
	left: auto;
}


/* toggle-end */

.navbar-custom {
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	padding: 1.5em 0 0;
	-webkit-transition: padding .3s;
	-moz-transition: padding .3s;
	transition: padding .3s;
	min-height: 58px;
}

.navbar-custom.affix {
	position: fixed;
	padding: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	background-color: #fff
}

#pageTop {
	position: fixed;
	bottom: 20px;
	right: .5rem;
	cursor: pointer;
	width: 1.8rem;
	z-index: 9999;
}

.arrowTop {
	width: 1em;
	height: 1em;
	border: 2px solid;
	border-color: var(--color-brand) var(--color-brand) transparent transparent;
	transform: rotate(-45deg);
}

.list-group-item {
	background-color: transparent;
}

.table-like-title, .table-like-text {
	padding: 0.75em;
}


/* Hover bottom line */

.hover-bottom-line span {
	display: inline-block;
	position: relative;
}

.hover-bottom-line span:after {
	position: absolute;
	bottom: -.25rem;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: var(--color-brand);
	content: '';
	margin: auto;
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.hover-bottom-line.active span:after, .hover-bottom-line:hover span:after, .hover-bottom-line:focus span:after {
	height: 1px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.text-brand, .nav-link {
	color: var(--color-brand);
}

.text-black {
	color: var(--color-black);
}

.bg-brand {
	background-color: var(--color-brand)!important;
	color: #fff;
}
a.bg-brand:hover {
	opacity: 0.6;
	color: #fff!important;
}
.bg-pink {
	background-color: #d7000e;
	color: #fff!important;
}
a.bg-pink:hover {
	opacity: 0.6;
}
.bg-grey {
	background-color: #dfdfdf;
}

.text-pink {
	color: #d7000e;
}

.bg-period {
    background-color: #BBDEFB;
}
.bg-title-color {
    background-color: #009dda;
    color: #fff;
}
.site-wrapper-inner {
	height: auto;
	background-size: cover;
	background-image: url(../img/bg-header.png);
	text-align: center;
	position: relative;
	overflow: hidden;
	background-position: center;
	padding: 5rem 0;
}

.fuchimoji {
	text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
}

.list-group a:hover {
	background-color: #f7f8f8!important;
}

.navbar-nav li.nav-item {
	position: relative;
}

.hvr-line span:first-child {
	z-index: 2;
	display: block;
}

.hvr-line:after {
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	width: 90%;
	height: 1px;
	margin: 0 auto;
	background: var(--color-brand);
	content: '';
	-webkit-transition: opacity 0.3s, height 0.3s;
	-moz-transition: opacity 0.3s, height 0.3s;
	transition: opacity 0.3s, height 0.3s;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-50%);
}

.hvr-line:focus:before {
	height: 6px;
}

.hvr-line.active:after, .hvr-line:hover:after, .hvr-line:focus:after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

footer {
	background-color: #0f4e85;
}
footer .table {
	font-size: 13px;
}

footer .table>tbody>tr>td, footer .table>tbody>tr>th, footer .table>tfoot>tr>td, footer .table>tfoot>tr>th, footer .table>thead>tr>td, footer .table>thead>tr>th {
	border-top: none;
	height: auto;
	color: #fff;
}

footer .table>tbody>tr>th {
	min-width: 80px;
}

footer .border {
	border: 1px solid;
	text-align: center;
	vertical-align: middle;
	display: table;
	width: 100%;
	height: 100%;
}

footer .border span {
	vertical-align: middle;
	display: table-cell;
}

footer p.contact-from {
	font-size: 12px;
	white-space: nowrap;
}

footer p.contact-num {
	margin-bottom: 7px;
	font-size: 19px;
	font-weight: 700;
	white-space: nowrap;
}

footer .nav-link {
	color: #fff!Important;
}


.faqwrap {
    display: none;
}
.question {
    padding: 1em 1em 1em 3em;
    display: block;
    background:#BBDEFB;
    cursor: pointer;
}

.question:hover {
    opacity: 0.7;
}
.question::after{
    content:"Q";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.question::before{
    content:"";
    width: 6px;
    height: 6px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
}
.question,
.answer {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.answer {
    height: 0;
    margin-bottom:10px;
    padding:0 20px;
    overflow: hidden;
    background-color: #fff;
}
.faqwrap:checked + .question + .answer {
    height: auto;
    padding:20px ;
    transition: all .3s;
    border-bottom: 1px solid #BBDEFB;
    border-left: 1px solid #BBDEFB;
    border-right: 1px solid #BBDEFB;
}
.faqwrap:checked + .question::before {
    transform: rotate(-45deg) !important;
}
@media (min-width: 1200px) {
	.drawer--left .drawer-nav {
		left: 0;
	}
	.drawer--left .drawer-hamburger {
		right: 0;
		left: auto;
	}
	.drawer-nav {
		position: relative;
		height: auto;
		background-color: transparent;
		overflow: visible;
		width: 100%;
	}
	.navbar-brand img {
		height: 110px;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	/* second text and borders */
	.hvr-line span:last-child {
		z-index: 1;
		display: block;
		opacity: 0;
		-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
		-moz-transition: -moz-transform 0.3s, opacity 0.3s;
		transition: transform 0.3s, opacity 0.3s;
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	.hvr-line.active span:last-child, .hvr-line:hover span:last-child, .hvr-line:focus span:last-child {
		opacity: 1;
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@media (max-width: 767px) {
	html, body {
		font-size: 12px;
	}
	body {
		letter-spacing: .1em;
	}
	.fs-xs-2 {
		font-size: 2em;
	}
	.fs-xs-1-5 {
		font-size: 1.5rem;
	}
	a.head-top-link ul li.site-tittle, .fs-xs-1-2 {
		font-size: 1.2rem;
	}
	.lead, .fs-xs-1 {
		font-size: 1rem;
	}
}

@media (max-width: 575.8px) {
	h1, .h1 {
		font-size: 2em;
	}
	h2, .h2 {
		font-size: 1.75em;
	}
	h3, .h3 {
		font-size: 1.5em;
	}
	h4, .h4 {
		font-size: 1.25em;
	}
	h5, .h5 {
		font-size: 1.15em;
	}
	.navbar-brand {
		font-size: 1em;
	}
	.ratio-21x9 {
		--aspect-ratio: calc(21 / 21 * 100%);
	}
	.header-left-image {
		width: 88px;
	}
	.header-right-image {
		width: 240px;
	}
}