/********************************************************************************
 page.css
********************************************************************************/

/*============================================================
 トップページ
*============================================================*/
/* common
---------------------------------------- */
.topSec {
	padding-top: 40px;
	margin-bottom: 80px;
}

.midnightInner {
	overflow: visible!important;
}

.sideMenu {
	position: fixed!important;
	width: 150px!important;
	top: 130px!important;
	right: 0!important;
	left: auto!important;
	border-right: 3px solid #333;
	z-index: 1100;
	/*color: #fff;
    filter: invert(100%) grayscale(100%) contrast(100);*/
}
.sideMenu ul {
	margin: 28px 0;
	position: relative;
}
.sideMenu ul:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 29px;
	background-image: url(../images/common/arrow_bottom_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	bottom: -34px;
	right: 28px;
}
.sideMenu .midnightHeader.dark ul:before {
	background-image: url(../images/common/arrow_bottom_white.svg);
}
.sideMenu li {
	text-align: right;
}
.sideMenu a {
	display: inline-block;
	padding: 12px 28px 12px 0;
	text-align: right;
	line-height: 1.4;
	font-size: 2.4rem;
	position: relative;
}
.sideMenu .midnightHeader.dark a {
    color: #fff;
}
.sideMenu a:before {
	opacity: 0;
	transition: all .3s;
	position: absolute;
	content: "-";
	font-weight: 400;
	left: -12px;
	top: 50%;
	transform: translatey(-50%);
}
.sideMenu a:hover:before {
	opacity: 1;
}
.sideMenu a.current:before {
	opacity: 1;
}

/* cta
---------------------------------------- */
.cta {
	background: #fff;
	margin-bottom: 80px;
}
.cta__link {
	display: block;
	max-width: 510px;
	margin: 0 auto;
	text-align: center;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}
.cta__text {
	max-width: 428px;
	margin: 0 auto;
	padding: 4px 0;
	border: 1px solid #123462;
	position: relative;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 32px;
	z-index: 2;
	background: #fff;
	color: #123462;
	font-size: 1.8rem;
	font-weight: 700;
}
.cta__text:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 1;
}
.cta__text:after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  margin-left: -16px;
  border: 13px solid transparent;
  border-top: 13px solid #123462;
  z-index: -1;
}
.cta__link p {
	background: #2C4F93;
	color: #fff;
	font-size: 5rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
}
.cta__link p img {
	margin-left: 8px;
}
.cta__link span {
	font-size: 2rem;
	font-weight: 700;
	color: #2C4F93;
	display: block;
	background: #FFFFFF;
}

/* mv
---------------------------------------- */
.mv {
	margin-bottom: 80px;
}
.mv .c_inner {
	max-width: 1160px;
}
.mvHeader {
	margin-top: 32px;
	margin-bottom: 60px;
}
.mvHeader__logo {
	width: 142px;
	margin-right: 100px;
}
.mvHeader__menu li a {
	display: block;
	position: relative;
	font-weight: 500;
	font-size: 2rem;
	margin-right: 16px;
	padding-right: 28px;
}
.mvHeader li a:before {
	position: absolute;
	content: "";
	background-image: url(../images/common/arrow_right_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 6px;
	right: 0;
	bottom: 14px;
}
.mvHeader li a:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: #FFBB0B;
	left: 50%;
	transform: translatex(-50%);
	bottom: -2px;
	opacity: 0;
	transition: all .3s;
	z-index: 1;
}
.mvHeader__menu li a:hover {
	opacity: 1;
}
.mvHeader li a:hover:after {
	opacity: 1;
}
.mvContent__inner {
	position: relative;
}
.mvContent__img {
	position: absolute;
	top: 0;
	right: 48px;
	z-index: -1;
}
.mvContent__lead {
	font-size: 2rem;
	font-weight: 700;
	position: relative;
	margin-bottom: 40px;
}
.mvContent__lead:before {
	position: absolute;
	content: "";
	width: 60px;
	height: 3px;
	background: #333;
	left: 0;
	bottom: -12px;
}
.mvContent__logo {
	margin-bottom: 48px;
}
.mvContent__catch {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 32px;
}

/* top-news
---------------------------------------- */
.topNews .posts {
	margin-bottom: 40px;
}
.topNews .post {
	display: flex;
	padding: 32px 0;
	border-bottom: 2px solid #E5E5E5;
}
.topNews .post__meta {
	display: flex;
	margin-right: 40px;
}
.topNews .post__date {
	font-weight: 400;
	width: 80px;
	margin-right: 24px;
}
.topNews .post__cat {
	color: #505356;
	text-decoration: underline;
}
.topNews .post__title {
	font-size: 1.6rem;
	font-weight: 500;
	width: calc(100% - 224px);
}
.topNews__btn {
	margin: 0 auto;
}

/* outline
---------------------------------------- */
.outline {
	padding-bottom: 0;
	margin-bottom: 120px;
}
.outline__inner {
	margin-bottom: 64px;
}
.outline__title {
	font-size: 3.2rem;
}
.outlineContent__subTitle {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 62px;
	text-align: center;
}
.outlineContentItem {
	position: relative;
	border: 3px solid #091F3B;
	padding: 56px 0;
	display: flex;
}
.outlineContentItem:not(:last-child) {
	margin-bottom: 72px;
}
.outlineContentItem:before {
	content: "";
	position: absolute;
	width: 2px;
	height: 172px;
	background: #091F3B;
	left: 50%;
	top: 54%;
	transform: translate(-50%,-50%);
}
.outlineContentItem h4 {
	font-size: 2rem;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translatex(-50%);
	background: #091F3B;
	padding: 12px 0;
	color: #fff;
	text-align: center;
	width: 370px;
}
.outlineContentItem .wrap {
	width: 50%;
}
.outlineContentItem .wrap > div {
	max-width: 272px;
	margin: 0 auto;
}
.outlineContentItem .wrap p {
	font-size: 2rem;
	font-weight: 700;
	display: inline-block;
	position: relative;
	margin-bottom: 24px;
}
.outlineContentItem .wrap p:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 7px;
	background: #FFBB0B;
	left: 0;
	bottom: 3px;
	z-index: -1;
}
.outlineContentItem .wrap li:not(:last-child) {
	margin-bottom: 16px;
}
.listening {
	padding: 1px;
	background: url(../images/top/listening_bg.jpg) no-repeat center center / cover;
	color: #fff;
	text-align: center;
	margin-bottom: 64px;
}
.listening__inner {
	margin: 56px auto;
}
.listening__catch {
	font-weight: 500;
	font-size: 2.4rem;
	margin-bottom: 32px;
	line-height: 1.4;
}
.listening__catch span {
	font-size: 5rem;
}
.listening__title {
	font-size: 2.4rem;
	position: relative;
	margin-bottom: 32px;
}
.listening__title:before {
	content: "";
	position: absolute;
	width: 70px;
	height: 3px;
	background: #FFBB0B;
	left: 50%;
	transform: translatex(-50%);
	bottom: -12px;
}

.improvement__title {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 40px;
}
.improvement .list {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 56px 0 20px;
}
.improvement .item {
	text-align: center;
}
.improvement .item__bg {
	background: #091F3B;
	padding: 34px 6px;
	color: #fff;
	min-height: 264px;
}
.improvement .item__text {
	font-size: 2rem;
	margin-bottom: 24px;
	line-height: 1.6;
}
.improvementBefore {
	display: flex;
	position: relative;
	flex-wrap: wrap;
}
.improvementBefore:before,
.improvementBefore:after {
	content: "";
	position: absolute;
	z-index: -1;
}
.improvementBefore:before {
	width: 105%;
	height: 98px;
	background: #B9BDC3;
	left: -20px;
	top: 47%;
}
.improvementBefore:after {
	right: -86px;
	top: 40%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 74px 0 74px 75px;
	border-color: transparent transparent transparent #B9BDC3;
}
.improvementBefore .item {
	width: 208px;
	margin-right: 32px;
}
.improvementBefore .item__bg {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.improvementBefore .item__title {
	font-size: 1.6rem;
	border: 2px solid #091F3B;
	font-weight: 700;
	padding: 10px 0;
	margin-bottom: 16px;
}
.improvementAfter .item__text {
	writing-mode: vertical-rl;
	align-items: center;
	line-height: 2.4;
	margin-bottom: 0;
}
.improvementAfter .item__img {
	margin-top: -4px;
}


/* feature
---------------------------------------- */
.feature {
	padding-bottom: 0;
	margin-bottom: 80px;
}
.feature__inner {
	margin-bottom: 64px;
}
.feature__lead {
	margin-bottom: 88px;
}
.featureItem {
	position: relative;
	background: #FFFFFF;
	padding: 60px 16px 40px;
	box-shadow: 3px 3px 11px 5px rgba(147, 187, 189, 0.2);
}
.featureItem:not(:last-child) {
	margin-bottom: 94px;
}
.featureItem:nth-child(2) {
	margin-bottom: 48px;
}
.featureItem__no {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translatex(-50%);
	color: #fff;
	font-size: 3rem;
	padding: 4px 24px;
	text-align: center;
	background: #091F3B;
}
.featureItem__catch {
	text-align: center;
	margin-bottom: 32px;
}
.featureItem__catch span {
	font-size: 2.4rem;
}
.featureItem__text {
	max-width: 660px;
	margin: 0 auto 36px;
}
.featureItem__img {
	text-align: center;
}
.featureItem__img img {
	max-width: 280px;
}
.featureItem__person {
	margin: 0 12px;
	width: 300px;
}
.featureItem__person .img {
	margin-bottom: 20px;
}
.featureItem__person .name {
	display: flex;
	justify-content: space-between;
	line-height: 1;
	align-items: center;
	margin-bottom: 8px;
}
.featureItem__person .name span:first-child {
	font-size: 2rem;
}
.featureItem__person .name span:last-child {
	font-family: 'Roboto', sans-serif;
}
.featureItem__person .position {
	font-weight: 400;
	margin-bottom: 8px;
	min-height: 30px;
}
.featureDownload {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 94px;
}
.featureDownload a {
	position: relative;
	display: block;
	margin: 12px;
	border: 2px solid #2C4F93;
	border-radius: 6px;
	font-weight: 700;
	text-align: center;
	padding: 8px 0;
	width: 418px;
}
.featureDownload a:before {
	position: absolute;
	content: "";
	background: url(../images/common/icon_download.svg) no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	right: 14px;
	top: 15px;
}

/* flow
---------------------------------------- */
.flow {
	margin-bottom:44px;
	padding: 0;
	padding-top: 40px;
	background: #091F3B;
	color: #fff;
}
.flow__title .en {
	color: #fff;
}
.flow__lead {
	margin-bottom: 32px;
}
.flowList {
	padding-bottom: 40px;
}
.flowItem {
	padding: 60px 0;
	border-bottom: 1px dashed #FFFFFF;
}
.flowItem:last-child {
	border: none;
}
.flowItem__inner {
	position: relative;
	z-index: 1;
}
.flowItem__inner:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 220%;
	background: #fff;
	left: 53px;
	top: 54px;
	z-index: -1;
}
.flowItem:last-child .flowItem__inner:before {
	display: none;
}
.flowItem__icon {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	overflow:hidden;
	padding: 15px;
	margin-right: 28px;
}
.flowItem__title {
	width: 180px;
	text-align: center;
	margin-right: 60px;
}
.flowItem__title span {
	display: block;
	font-size: 1.2rem;
	color: #FFBB0B;
}
.flowItem__text {
	width: calc(100% - 328px);
}
.flow .cta {
	padding-top: 88px;
}

/* price
---------------------------------------- */
.price__inner {
	max-width: 1032px;
}
.price__lead {
	margin-bottom: 40px;
}
.priceList {
	justify-content: center;
	flex-wrap: wrap;
}
.priceItem {
	border-top: 6px solid #091F3B;
	width: 300px;
	margin: 12px;
	filter: drop-shadow(3px 3px 11px rgba(147, 187, 189, 0.2));
}
.priceItem .row {
	padding: 16px;
}
.priceItem .row1 {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.priceItem .row1 p {
	font-size: 1.8rem;
}
.priceItem .row1 h3 {
	font-size: 1.4rem;
}
.priceItem .row2 {
	background: #091F3B;
	color: #fff;
	justify-content: space-between;
	align-items: flex-end;
	padding: 24px;
}
.priceItem .row2 p:first-child {
	font-weight: 400;
	font-size: 3rem;
	font-family: 'Roboto', sans-serif;
	line-height: 1;
	margin-left: 30px;
}
.priceItem .row2 p:last-child {
	font-size: 1.2rem;
}
.priceItem .row3 {
	min-height: 172px;
}
.priceItem .row4 {
	background: #FFBB0B;
	min-height: 214px;
}
.priceItem .row4 li {
	position: relative;
	font-size: 1.4rem;
	padding-left: 26px;
}
.priceItem .row4 li:not(:last-child) {
	margin-bottom: 16px;
}
.priceItem .row4 li:before {
	position: absolute;
	content: "";
	background: url(../images/top/price_check.svg) no-repeat center center / contain;
	width: 18px;
	height: 21px;
	left: 0;
	top: 0;
}

/* top case
---------------------------------------- */
.topCase {
	margin-bottom: 0;
}
.topCase__inner {
	max-width: 1032px;
	margin-bottom: 88px;
}
.topCaseList {
	margin-bottom: 24px;
}
.topCaseItem {
	width: 31%;
	max-width: 300px;
	margin: 12px;
}
.topCaseItem a {
	display: block;
}
.topCaseItem__title {
	font-weight: 500;
	margin-bottom: 8px;
}
.topCaseItem__img {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;
}
.topCase__btn {
	margin: 0 auto;
}

.topPartner {
	text-align: center;
}
.topPartner__inner {
	padding: 0;
	background: url(../images/top/partner_bg.jpg) no-repeat;
	background-size: cover;
	height: 440px;
	margin-bottom: 96px;
	color: #fff;
	max-width: 790px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.topPartner__link {
	display: block;
	padding-top: 86px;
}
.topPartner__title {
	font-size: 5rem;
	font-weight: 400;
}
.topPartner__title span {
	display: inline-block;
	font-weight: 400;
	font-size: 3.2rem;
	margin-left: 4px;
}
.topPartner__lead {
	margin-bottom: 40px;
}
.topPartner__ex {
	border: 1px solid #fff;
	border-top: none;
	padding: 46px 24px;
	max-width: 660px;
	margin: 0 auto;
}
.topPartner__ex p:first-child {
	margin-top: -62px;
	margin-bottom: 32px;
	position: relative;
}
.topPartner__ex p:first-child:before,
.topPartner__ex p:first-child:after {
	position: absolute;
	content: "";
	width: 290px;
	height: 1px;
	background: #fff;
	top: 56%;
	transform: translatey(-50%);
}
.topPartner__ex p:first-child:before {
	left: -25px;
}
.topPartner__ex p:first-child:after {
	right: -25px;
}

/*============================================================
 下層ページ
*============================================================*/
/* common
---------------------------------------- */
.pageHeader {
	margin-bottom: 56px;
}
.pageHeader__inner {
	margin-top: 120px;
}
.pageHeader__inner  h1 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 20px;
	line-height: 1.4;
}

/* お知らせ一覧
---------------------------------------- */
.p_news_list .pageHeader {
	margin-bottom: 40px;
}
.p_news_list .pageContent__inner {
	max-width: 1038px;
}
.p_news_list .catList {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
	margin-bottom: 32px;
}
.p_news_list .catList li{
	list-style: none;
	margin-right: 16px;
}
.p_news_list .catList a {
	text-decoration: underline;
	font-size: 1.4rem;
}
.p_news_list .posts {
	flex-wrap: wrap;
	margin-bottom: 80px;
}
.p_news_list .posts .post{
	width: 30%;
	max-width: 300px;
	margin: 15px;
}
.p_news_list .posts .post__link {
	display: block;
}
.p_news_list .posts .post__title {
	font-weight: 400;
	display: -webkit-box;
    -webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
    overflow: hidden;
	font-size: 1.6rem;
}
.p_news_list .posts .post__thumnail {
	margin-bottom: 16px;
	height: 180px;
}
.p_news_list .posts .post__thumnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p_news_list .posts .post__date {
	display: block;
	margin-bottom: 4px;
	font-size: 1.4rem;
}
.p_news_list .posts .post__cat {
	display: block;
	margin-bottom: 4px;
	font-size: 1.4rem;
}

/* お知らせ詳細
---------------------------------------- */
.p_news_detail .pageContent .c_btn {
	margin: 80px auto;
}
.p_news_detail .pageContent__inner > *{
	margin-bottom: 24px;
	font-weight: 400;
}
.p_news_detail .pageContent__inner h2,
.p_news_detail .pageContent__inner h3,
.p_news_detail .pageContent__inner h4 {
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 16px;
}
.p_news_detail .pageContent__inner ul {
	list-style-type: disc;
	padding-left: 24px;
}
.p_news_detail .pageContent__inner ul li:not(:last-child) {
	margin-bottom: 8px;
}
.p_news_detail .pageContent__inner p > a {
	text-decoration: underline;
}

/* case一覧
---------------------------------------- */
.p_case_list .pageContent__inner {
	margin-bottom: 100px;
}
.p_case_list .block {
	margin-bottom: 56px;
}
.p_case_list .block:last-child {
	margin-bottom: 0;
}
.p_case_list .block a {
	display: flex;
	align-items: center;
	padding-bottom: 56px;
}
.p_case_list .block__img {
	width: 300px;
	margin-right: 32px;
}
.p_case_list .block__content {
	width: calc(100% - 332px);
}
.p_case_list .block__content a {
	display: block;
}
.p_case_list .block__content a > * {
	margin-bottom: 8px;
}
.p_case_list .block__content h2 {
	font-size: 2rem;
}
.p_case_list .block__content .caption {
	font-size: 1.4rem;
}
.p_case_list .block__content p {
	font-weight: 400;
}

/* case詳細
---------------------------------------- */
.p_case_detail .pageContent__inner {
	margin-bottom: 80px;
}
.p_case_detail .block {
	margin-bottom: 64px;
}
.p_case_detail .block > *{
	margin-bottom: 16px;
}
.p_case_detail .block h2 {
	text-align: center;
	margin-bottom: 32px;
}
.p_case_detail .block h2 span{
	display: block;
	margin-top: 12px;
	font-weight: 500;
	font-size: 1.4rem;
}
.p_case_detail .block p {
	font-weight: 400;
}
.p_case_detail .c_btn {
	margin: 0 auto;
}

/* パートナー
---------------------------------------- */
.p_partner {
	font-weight: 400;
}
.p_partner .lead {
	text-align: center;
	margin-bottom: 56px;
}
.p_partner .lead__title {
	margin-bottom: 16px;
}
.p_partner .partnership {
	margin-bottom: 96px;
}
.p_partner .partnership__title {
	text-align: center;
	margin-bottom: 56px;
}
.p_partner .partnership .item {
	display: flex;
}
.p_partner .partnership .item:not(:last-child) {
	margin-bottom: 56px;
}
.p_partner .partnership .item__img {
	width: 300px;
	margin-right: 32px;
}
.p_partner .partnership .item__content {
	width: calc(100% - 332px);
}
.p_partner .partnership .item__content h3 {
	margin-bottom: 16px;
}
.p_partner .partnerEx {
	margin-bottom: 88px;
}
.p_partner .partnerEx__title {
	text-align: center;
	margin-bottom: 16px;
}
.p_partner .partnerEx .list {
	width: 100vw;
    margin-left: calc(50% - 50vw);
}
.p_partner .partnerEx__inner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1038px;
}
.p_partner .partnerEx .item {
	width: 30%;
	max-width: 300px;
	margin: 12px;
}
.p_partner .partnerEx .item img {
	width: 100%;
}

/* お問い合わせ
---------------------------------------- */
.p_contact .pageContent {
	margin-bottom: 100px;
}
.p_contact .errorWrap {
	padding: 16px;
	background: #FFEAE5;
	border: 2px solid #FF451D;
	border-radius: 6px;
	color: #FF451D;
	margin-bottom: 40px;
	display: none;
}
.p_contact .errorWrap > p {
	position: relative;
	padding-left: 48px;
	font-size: 2rem;
	margin-bottom: 12px;
}
.p_contact .errorWrap > p:before {
	position: absolute;
	content: "";
	background: url(../images/contact/error_mark.svg) no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
	top: 2px;
	left: 0;
}
.p_contact .errorWrap li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.p_contact .errorWrap li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	left: 0;
	top: 13px;
	background: #FF451D;
}
.p_contact .lead {
	margin-bottom: 48px;
}
.p_contact .lead__text {
	font-weight: 700;
	color: #2C4F93;
	text-align: center;
	margin-bottom: 40px;
}
.p_contact .lead__tel {
	text-align: center;
	font-weight: 700;
	font-size: 3.6rem;
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
}
.p_contact .lead__tel span {
	display: block;
	font-weight: 400;
	font-size: 2.4rem;
}
.p_contact .step {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}
.p_contact.thanks .step {
	margin-bottom: 40px;
}
.p_contact .step p {
	font-weight: 700;
	position: relative;
	margin: 0 28px;
}
.p_contact .step p.current {
	color: #FFBB0B;
	text-decoration: underline;
}
.p_contact .step p:not(:first-child):before {
	position: absolute;
	content: "";
	background: url(../images/contact/step_arrow_right.svg) no-repeat;
	background-size: contain;
	width: 8px;
	height: 14px;
	top: 8px;
	left: -32px;
}
.p_contact .note {
	text-align: center;
	margin-bottom: 56px;
}
.p_contact .thanksContent__lead {
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 24px;
}
.p_contact .thanksContent__text {
	text-align: center;
	line-height: 2;
	margin-bottom: 32px;
}
.p_contact .thanksContent__img {
	text-align: center;
	margin-bottom: 72px;
}
.p_contact .thanksContent__btn {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.p_contact .thanksContent__btn:before {
	display: none;
}


@media screen and (min-width: 1280px) {
	.mvHeader .c_inner {
		max-width: 100%;
		padding-left: 86px;
	}
}

@media screen and (max-width: 1200px) {
	.sideMenu {
		display: none;
	}
	
	.mvContent__img {
		right: 0;
	}
}

