@charset "utf-8";

/**********************************************
 * header
 * footer
 * common
 ***********************************************/


/**********************************************
 * Header
 ***********************************************/
.Header {
	background: #fff;
	padding: 10px;
}

.Header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.Header_logoLink {
	display: inline-block;
}

.Header_logoImg {
	width: 100px;
	height: auto;
}

@media (max-width: 767px) {
	.Header_logo {
		margin-top: 10px;
	}

	.Header .l-container {
		padding: 15px 0;
	}

	.Header_inner {
		height: 50px;
	}
}

/**********************************************
 * common
***********************************************/
/* Title_lv1
*******************************************/
.Title_lv1 {
	margin: 80px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 4rem;
	line-height: 1.2;
	text-align: center;
	position: relative;
}

.Title_lv1:before {
	content: "";
	background: #e60012;
	width: 26px;
	height: 4px;
	position: absolute;
	top: auto;
	bottom: -20px;
	left: -26px;
	right: 0;
	margin: auto;
}

.Title_lv1:after {
	content: "";
	background: #150301;
	width: 26px;
	height: 4px;
	position: absolute;
	bottom: -20px;
	left: 0;
	right: -26px;
	margin: auto;
}

@media (max-width: 767px) {
	.Title_lv1 {
		margin: 40px 0 70px;
		font-size: 2.4rem;
	}
}

/* Title_lv2
*******************************************/
.Title_lv2 {
	position: relative;
	margin-bottom: 40px;
	padding-top: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 3.0rem;
	line-height: 1.2;
	text-align: center;
}

.Title_lv2:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	top: -40px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	border-top: solid 3px #f69b0b;
}

@media (max-width: 767px) {
	.Title_lv2 {
		font-size: 2.4rem;
	}
}

/* Title_lv3
*******************************************/
.Title_lv3 {
	position: relative;
	padding: 5px 20px;
	margin-bottom: 30px;
	background: transparent;
	border-left: solid 5px #3fc18c;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 2.6rem;
}

@media (max-width: 767px) {
	.Title_lv3 {
		font-size: 2.2rem;
	}
}

/* Title_lv4
*******************************************/
.Title_lv4 {
	margin: 20px 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 2.2rem;
}

@media (max-width: 767px) {
	.Title_lv4 {
		font-size: 2.0rem;
	}
}

/* Title_lv5
*******************************************/
.Title_lv5 {
	margin: 20px 0 10px 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 2.0rem;
}

@media (max-width: 767px) {
	.Title_lv5 {
		font-size: 1.8rem;
	}
}

.form-default {
	width: 60%;
	margin: auto;
}

@media (max-width: 767px) {
	.form-default {
		width: 100%;
		margin: auto;
	}
}

input[type="text"],
input[type="password"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
}

input[type="text"],
input[type="password"] {
	border-left: 1px solid #BFBFBF;
	border-bottom: 1px solid #999999;
	padding: 20px;
	width: 100%;
	font-size: 1.6rem;
}

.input--default+.input--default {
	margin-top: 30px;
}

.PaswordForgot {
	margin-top: 40px;
	text-align: right;
}

.PaswordForgot a {
	display: inline-block;
	color: #E60012;
}

.PaswordForgot a {
	display: inline-block;
	color: #E60012;
	transition: .5s;
}

.PaswordForgot a:hover {
	text-decoration: underline;
}

.error input[type="text"],
.error input[type="password"] {
	background: #FFDCDF;
}

.error input[type="text"]::placeholder {
	color: #150301;
}

.error .ErrorText {
	color: #E60012;
	font-size: 1.6rem;
	margin-top: 8px;
}

.error .ErrorText::before {
	content: "\f071";
	position: relative;
	display: inline-block;
	font-family: 'Font Awesome 6 Pro';
	margin-right: 5px;
	color: #E60012;
}

.Text {
	margin-bottom: 60px;
	text-align: center;
}

@media (max-width: 767px) {

	input[type="text"] {
		padding: 15px;
	}

	.input--default+.input--default {
		margin-top: 35px;
	}

	.PaswordForgot {
		margin-top: 20px;
	}


	.error .PaswordForgot {
		margin-top: 30px;
	}

	.Text {
		text-align: left;
	}
}

.Btn>* {
	display: block;
	position: relative;
	width: 300px;
	padding: 21px 0 23px;
	border: 1px solid #150301;
	background: #150301;
	font-size: 1.8rem;
	text-align: center;
	margin: auto;
}

.Btn>* span {
	color: #fff;
	position: relative;
	z-index: 1;
}

.Btn>*:hover span {
	color: #150301;
	opacity: 1;
}

.Btn>*:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fff;
	transition: all .5s;
}

.Btn>*:hover:before {
	width: 100%;
}

.Btn>*:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	width: 20px;
	height: 6px;
	background: url(../images/i_arrow.svg) no-repeat;
	background-size: contain;
}

.Btn>*:hover:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	width: 20px;
	height: 6px;
	background: url(../images/i_arrow_black.svg) no-repeat;
	background-size: contain;
}


@media (max-width: 767px) {
	.Btn button {
		width: 100%;
	}
}

#start .l-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100vh;
}


#start .imgbox {
	text-align: center;
}

#start p {
	text-align: center;
	margin-top: 30px;
	font-size: 2.5rem;
	font-family: 'Roboto', sans-serif;
}

#start p.red {
	color: #dc000c;
}

.stt-lang-select {
	box-shadow: none !important;
	max-height: 57px !important;
	z-index: 999 !important;
	border: 0 !important;
	width: 164px !important; /* 150px !important; */
	right: 20px !important;
	font-size: 16px !important;
	overflow: visible !important;
}

.stt-lang-select.tr {
	top: 13px !important;
}

.stt-lang-select .stt-text {
	font-size: 16px !important;
	padding: 14px 26px 14px 20px !important;
}

.stt-lang-select .stt-text:after {
	content: "" !important;
	position: absolute;
	top: 12px !important;
	right: 12px !important;
	background: url(../images/i_lang.svg) no-repeat;
	width: 21px;
	height: 21px;
	background-size: contain;
	pointer-events: none;
}

.stt-lang-select .stt-select {
	background: #150301;
}

.stt-lang-select .stt-select .stt-item {
	color: #fff !important;
	font-size: 16px !important;
}

.stt-lang-select .stt-select .stt-item:after {
	top: 9px !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	.stt-lang-select.tr {
		top: 3px !important;
	}
}

/*second pages*/
#wrap {
	padding: 0px !important;
	background: none !important;
}

#wrap section .inner {
	background: #fff;
}

#wrap section .inner:nth-of-type(2n) {
	background: #F4F4F4;
}

/*history*/
#innovation .item {
	background: none;
}

.innovationbox .item dt {
	font-size: 2.4rem !important;
	line-height: 1.3;
	margin-bottom: 15px;
}

.innovationbox .item dd {
	font-size: 1.4rem;
}

.innovationbox .right {
	border-left: 1px solid #e60013 !important;
}

.innovationbox .left {
	padding: 30px 70px 70px 30px !important;
}

.innovationbox .right {
	padding: 30px 30px 70px 70px !important;
}


#philosophy section {
	margin-top: -100px;
}

#philosophy #wrap section .inner {
	padding: 40px 0;
}

#philosophy #ourorigin .container.msg {
	align-items: flex-start;
	padding: 20px;
}

@media (min-width: 768px) and (max-width: 1365px) {
	#philosophy p.txt {
		font-size: 1.2vw;
	}

	#philosophy #ourorigin .fude {
		padding: 0 2.4vw;
	}

	#philosophy #ourpurpose .about-musashi {
		overflow-x: hidden;

	}

	#philosophy #ourpurpose .about-musashi-image {
		margin-left: 80px;
	}
}

#philosophy #wrap section#ourpurpose .inner {
	padding: 40px 0 1px;
}

#philosophy #structure {
	padding-top: 3.6vw;
}

#philosophy #wrap section#structure .inner,
#philosophy #wrap section#ourpurpose .inner,
#philosophy #wrap section#ourway .inner {
	background: none;
}

#philosophy .agendobox .title .num,
#philosophy .agendobox .title em {
	color: #e60012;
}

#philosophy .agendobox .title em {
	font-size: 2rem;
}

#philosophy .agendobox .disc li {
	text-indent: -46px;
	margin-left: 20px;
	font-size: 1.4rem;
	line-height: 1.6;
}

#philosophy .agendobox dd .disc {
	margin: 15px 0 0 44px;
}

#philosophy .agendobox .agendo-list>*:nth-child(n + 3) {
	margin-top: 40px;
}