@charset "utf-8";
/* ============================================================================================== */
/* 崩れ原因となるCSS対策                                                                          */
/* ============================================================================================== */
main#main *::after {
	display: none;
}
/* ============================================================================================== */
/* フォント指定                                                                                   */
/* ============================================================================================== */
#meijitokachi #header p,
#meijitokachi #header h1,
#meijitokachi #header h2,
#meijitokachi #header h3,
#meijitokachi #header h4,
#meijitokachi #header h5,
#meijitokachi #header h6,
#meijitokachi #header a,
#meijitokachi #header li,
#meijitokachi #header caption,
#meijitokachi #header td,
#meijitokachi #header th,
#meijitokachi #header dt,
#meijitokachi #header dd,
#meijitokachi #header input,
#meijitokachi #header textarea,
#meijitokachi #header select,
#meijitokachi #header address,
#meijitokachi #main p,
#meijitokachi #main h1,
#meijitokachi #main h2,
#meijitokachi #main h3,
#meijitokachi #main h4,
#meijitokachi #main h5,
#meijitokachi #main h6,
#meijitokachi #main a,
#meijitokachi #main li,
#meijitokachi #main caption,
#meijitokachi #main td,
#meijitokachi #main th,
#meijitokachi #main dt,
#meijitokachi #main dd,
#meijitokachi #main input,
#meijitokachi #main textarea,
#meijitokachi #main select,
#meijitokachi #main address,
#meijitokachi .font_ident_hiragino {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, 游ゴシック体, 'Yu Gothic', YuGothic, Osaka, 'MS PGothic', arial, helvetica, sans-serif !important;
}
/* ============================================================================================== */
/* 共通演出                                                                                       */
/* ============================================================================================== */
.effect_hoverU {
	opacity: 0.8;
	transition: all 0.6s ease 0s;
}
.effect_hoverU:hover {
	opacity: 1;
}
/* ============================================================================================== */
/* 共通演出                                                                                       */
/* ============================================================================================== */
.effect_hover {
	transition: all 0.6s ease 0s;
}
.effect_hover:hover {
	opacity: 0.6;
}
@media screen and (max-width: 640px) {
	.effect_hover {
		transition: all 0s ease 0s;
	}
	.effect_hover:hover {
		opacity: 1;
	}
}
/* ============================================================================================== */
/* 共通演出                                                                                       */
/* ============================================================================================== */
.effect_toggle_hover {
	transition: all 0.6s ease 0s;
}
.effect_toggle_hover:hover {
	opacity: 0.6;
}
.effect_toggle_hover.active {
	transition: all 0s ease 0s;
}
.effect_toggle_hover.active:hover {
	opacity: 1;
}
@media screen and (max-width: 640px) {
	.effect_toggle_hover {
		transition: all 0s ease 0s;
	}
	.effect_toggle_hover:hover {
		opacity: 1;
	}
	.effect_toggle_hover.active {
		transition: all 0s ease 0s;
	}
	.effect_toggle_hover.active:hover {
		opacity: 1;
	}
}
/* ============================================================================================== */
/* 共通演出                                                                                       */
/* ============================================================================================== */
.underlineU {
    text-decoration: underline;
}
.underlineU:hover {
	text-decoration: none;
}
@media screen and (max-width: 640px) {
	.underlineU:hover {
	    text-decoration: underline;
	}
}
/* ============================================================================================== */
/* 共通演出                                                                                       */
/* ============================================================================================== */
.underlineN:hover {
    text-decoration: underline;
}
@media screen and (max-width: 640px) {
	.underlineN:hover {
	    text-decoration: none;
	}
}
/* ============================================================================================== */
/* 共通演出:FadeIn                                                                                */
/* ============================================================================================== */
.cmd_effect_fadeIn {
	transition: all 1s ease;
	transform: translateY(30px);
	opacity: 0;
}
.cmd_effect_fadeIn.active {
	transform: translateY(0);
	opacity: 1;
}
/* ============================================================================================== */
/* 共通ボタン(ARROW)                                                                              */
/* ============================================================================================== */
.cmd_arrow_btn {
	display: inline-block;
	box-sizing: border-box;
	width: 260px;
	border: 2px solid #000000;
	line-height: 51px;
	letter-spacing: normal;
	transition: border           0.3s cubic-bezier(.39,.575,.565,1),
	            background-color 0.3s cubic-bezier(.39,.575,.565,1);
	overflow: hidden;
	position: relative;
}
.cmd_arrow_btn .text {
	padding-left: 24px;
	text-align: left;
	transition: color 0.3s cubic-bezier(.39,.575,.565,1);
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}
.cmd_arrow_btn .icon {
	transition: right 0.3s cubic-bezier(.39,.575,.565,1);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 40px;
}
.cmd_arrow_btn .icon img {
	width:  25.5px;
	height: 12.01px;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 0;
}
.cmd_arrow_btn .icon img.on {
	opacity: 0;
}
@media screen and (max-width: 640px) {
	.cmd_arrow_btn {
		width: 58vw;
		border: 0.4vw solid #000000;
		line-height: 10vw;
	}
	.cmd_arrow_btn .text {
		padding-left: 5.3vw;
		font-size: 3.8vw;
	}
	.cmd_arrow_btn .icon {
		right: 6.4vw;
	}
	.cmd_arrow_btn .icon img {
		width:  5.8vw;
		height: 2.73vw;
	}
	.cmd_arrow_btn .icon img.on {
	}
}
/* ============================================ */
/* 共通ボタン(ARROW):HOVER時                    */
/* ============================================ */
.cmd_arrow_btn:hover {
	background:   #214928;
	border-color: #214928; 
}
.cmd_arrow_btn:hover .text {
	color: #ffffff;
}
.cmd_arrow_btn:hover .icon {
	right: 25px;
}
.cmd_arrow_btn:hover .icon img.off {
	opacity: 0;
}
.cmd_arrow_btn:hover .icon img.on {
	opacity: 1;
}
@media screen and (max-width: 640px) {
	.cmd_arrow_btn:hover {
	}
	.cmd_arrow_btn:hover .text {
	}
	.cmd_arrow_btn:hover .icon {
		right: 4vw;
	}
	.cmd_arrow_btn:hover .icon img.off {
	}
	.cmd_arrow_btn:hover .icon img.on {
	}
}
/* ============================================ */
/* 共通ボタン(ARROW):OPT_MINI                   */
/* ============================================ */
.cmd_arrow_btn.opt_mini {
	width: 215px;
	line-height: 46px;
}
.cmd_arrow_btn .text {
	font-size: 16px;
}
.cmd_arrow_btn.opt_mini .icon {
	right: 25px;
}
.cmd_arrow_btn.opt_mini:hover .icon {
	right: 15px;
}
@media screen and (max-width: 640px) {
	.cmd_arrow_btn.opt_mini {
		width: 44vw;
		line-height: 10vw;
	}
	.cmd_arrow_btn .text {
		font-size: 3.45vw;
	}
	.cmd_arrow_btn.opt_mini .icon {
		right: 6vw;
	}
	.cmd_arrow_btn.opt_mini:hover .icon {
		right: 3.6vw;
	}
}
/* ============================================================================================== */
/* CMD_CHILD_HEADLINE                                                                             */
/* ============================================================================================== */
body#meijitokachi #main #cmd_child_headline {
    height: 180px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
@media screen and (max-width: 640px) {
	body#meijitokachi #main #cmd_child_headline {
	    height: 26.67vw;
	}
}
/* ============================================ */
/* CMD_CHILD_HEADLINE:パンくずリスト            */
/* ============================================ */
body#meijitokachi #main #cmd_child_headline .breadcrumbs {
    position: absolute;
    top: 15px;
    left: 35px;
}
body#meijitokachi #main #cmd_child_headline .breadcrumbs ul {
    color: #ffffff;
    font-size: 14px;
}
body#meijitokachi #main #cmd_child_headline .breadcrumbs ul li {
    display: inline;
}
body#meijitokachi #main #cmd_child_headline .breadcrumbs ul li a {
    color: inherit;
    text-decoration: underline;
}
body#meijitokachi #main #cmd_child_headline .breadcrumbs ul li a:hover {
    text-decoration: none;
}
@media screen and (max-width: 640px) {
	body#meijitokachi #main #cmd_child_headline .breadcrumbs {
		display: none;
	}
}
/* ============================================ */
/* CMD_CHILD_HEADLINE:タイトル                  */
/* ============================================ */
body#meijitokachi #main #cmd_child_headline .title {
    padding-top: 55px;
    text-align: center;
}
body#meijitokachi #main #cmd_child_headline .title dl {
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
}
body#meijitokachi #main #cmd_child_headline .title dl dt {
    font-size: 23px;
    position: relative;
}
body#meijitokachi #main #cmd_child_headline .title dl dt::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: calc(50% - 25px);
    bottom: -6px;
}
body#meijitokachi #main #cmd_child_headline .title dl dd {
    margin-top: 20px;
    font-size: 28px;
}
@media screen and (max-width: 640px) {
	body#meijitokachi #main #cmd_child_headline .title {
	    padding-top: 5.3vw;
	}
	body#meijitokachi #main #cmd_child_headline .title dl {
	}
	body#meijitokachi #main #cmd_child_headline .title dl dt {
	    font-size: 4vw;
	}
	body#meijitokachi #main #cmd_child_headline .title dl dt::after {
	    width: 8.66vw;
	    height: 0.4vw;
	    left: calc(50% - 4.33vw);
	    bottom: -1.5vw;
	}
	body#meijitokachi #main #cmd_child_headline .title dl dd {
	    margin-top: 4vw;
	    font-size: 4.8vw;
	}
}

