@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/*==============================================================
>>> COMMON CONTENTS 
----------------------------------------------------------------
1.0 Common
  1.1 Reset
  1.2 Layout
  1.3 Common
2.0 Header
  2.1 top
  2.2 logo
  2.3 nav
  2.4 mv
3.0 Home
4.0 Page
5.0 Archive
6.0 Single
7.0 Etc
  7.1 CV
  7.2 SNS
  7.3 Breadcrumb
8.0 Footer
  8.1 nav
  8.2 terms
  8.2 copyright
==============================================================*/
/* 注意
  汎用classは単独で使わないように
  index, top, page, detail, inner
--------------------------------------------------------------*/
/*==============================================================
1.0 Common
--------------------------------------------------------------*/
/* 1.1 Reset
--------------------------------------------------------------*/
html {
	font-size: 15px;
	line-height: 2;
}
@media screen and (min-width:769px) and (max-width:1280px){
	html {
		font-size: 1.16vw;
	}
}
@media screen and (max-width:768px) {
	html {
		font-size: 13px;
	}
}
body {
	background-color:#FFFFFF;
	font-family: "Noto Sans JP","Avenir",sans-serif;
}
a {
	color:#000000;
	transition: 0.3s;
}
a:link {
	color:#000000;
}
a:visited {
	color:#000000;
}
a:hover {
	opacity: 0.7;
	transition: 0.3s;
}
::selection {
	background: #000000;
	color: #FFFFFF;
}
::-moz-selection {
	background: #000000;
	color: #FFFFFF;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
figure {
	margin: 0;
	line-height: 0;
}
/* 1.2 Layout
--------------------------------------------------------------*/
.section.bgc {
	background: #F7F7F7;
	margin-top: 0;
	margin-bottom: 0;
}
.section.bg {
	margin-top: 0;
	margin-bottom: 0;
}


/* media query : mobile */
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.section {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.section.bgc {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.sp {
		display: none; 
	}
	.section {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}
	.section.bgc {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	.container {
		max-width: 85rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.container-65rem {
		width: 100%;
		max-width: 65rem;
		margin-left: auto;
	}
}
/* Cursor */
@media screen and (min-width:769px) {
	.cursor {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 0px;
		height: 0px;
		border-radius: 50%;
		border: 2px solid #00B595;
		z-index: 1000;
		transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
		transition-timing-function: ease-out;
		transform: translate(0, 0);
		pointer-events: none;
		/*mix-blend-mode: difference;*/
	}
	/*aタグにホバーした時に見た目変化*/
	.cursor.cursor--hover {
		top: -25px;
		left: -25px;
		width: 50px;
		height: 50px;
	}
}
/* 1.3 Common
--------------------------------------------------------------*/
/* H,P */
.h1 {
	
}
.h1 p {
	font-family: "Avenir", sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
	text-transform: capitalize;
}
.h1 h1 {
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 4px;
}
.h2 {
	margin-bottom: 5rem;
}
.h2::after {
	content: "";
	position: absolute;
	width: 5rem;
	height: 4px;
	bottom: -2rem;
	left: 0;
	background: linear-gradient(90deg, #00B595 0, #0361B6 100%);
    background: -webkit-linear-gradient(0deg, #00B595 0, #0361B6 100%);
}
.h2 p {
	font-family: "Avenir",sans-serif;
	font-weight: 600;
    margin-bottom: 1rem;
	line-height: 1;
	text-transform:capitalize;
	padding-left: 0.1rem;
}
.h2 h2 {
	font-family: "Noto Sans JP",sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-left: -0.1rem;
}
.h2.text-center:after {
	left: calc(50% - 2.5rem);
}
.h3 {
	padding-left: 1.3rem;
	margin-bottom: 1.6rem;
}
.h3:before {
	content: "";
    display: block;
    position: absolute;
    background: #00B595;
    width: 0.5rem;
    height: 2rem;
    left: 0;
    top: 0.2rem;
}
.h3 p {
	font-family: "Avenir",sans-serif;
    font-size: 1rem;
	font-weight: 600;
	line-height: 1;
    margin-bottom: 0.8rem;
}
.h3 h3 {
	font-family: "Noto Sans JP",sans-serif;
    font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}
.desc {
	line-height: 2;
    margin-bottom: 2rem;
}
.desc strong {
    font-size: 1.5rem;
    font-weight: 500;
	line-height: 1.5;
}
.attention {
	margin-top: 2rem;
	font-size: 80%;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.h1 p {
		font-size: 1.2rem;
	}
	.h1 h1 {
		font-size: 2.8rem;
	}
	.h2 p {
		font-size: 1rem;
	}
	.h2 h2 {
		font-size: 2rem;
	}
	.h3 h3 {
		font-size: 1.4rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.h1 p {
		font-size: 1.4rem;
	}
	.h1 h1 {
		font-size: 3.2rem;
	}
	.h2 p {
		font-size: 1.2rem;
	}
	.h2 h2 {
		font-size: 2.8rem;
	}
	.h3 h3 {
		font-size: 1.8rem;
	}
}
/* button */
.button {
	display: block;
    width: 100%;
    max-width: 22rem;
}
.button a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 2rem);
    height: 4rem;
    background: linear-gradient(90deg, #00B595 0, #0361B6 100%);
    background: -webkit-linear-gradient(0deg, #00B595 0, #0361B6 100%);
    border-radius: 3rem;
    color: #FFF;
    padding-right: 2rem;
}
.button a::after {
	content: "";
	display: block;
	position: absolute;
	right: 1rem;
	top: calc(50% - 1rem);
	width: 2rem;
	height: 2rem;
	background: url(../img/icon-circle-chevron-right-wht.svg) no-repeat center/contain;
}
/* etc */
.card-box {
	padding: 2rem;
	border-radius: 1.25rem;
	overflow: hidden;
}
.box-shd {
	background: #FFF;
	-moz-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0/10%);
    -o-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0/10%);
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.block-center {
	margin-left: auto;
	margin-right: auto;
}
.link-empty::after {
	content: "";
    display: block;
    position: absolute;
    width: .85rem;
    height: .5rem;
    top: calc(50% - .45rem);
	background: url(../img/icon-empty__blk.svg) no-repeat center / contain;
    right: -1rem;
}
.full-width {
	max-width: none;
	width: 100%;
}
.lightbox {
	cursor: pointer;
	transition: 0.3s;
}
.lightbox:hover:before {
	content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    background: url(../img/icon-magnifying-glass.svg) no-repeat center / contain;
	transition: 0.3s;
    z-index: 1;
}
/* logo */
#symbol {
	fill: #00B595;
	stroke-width: 0px;
}
#logotype {
	fill: #000;
	stroke-width: 0px;
}
/* fade */
.fadeUp {
    opacity: 0;
    transform: translate(0, 70px);
    transition: transform 800ms, opacity 1000ms;
}
.fadeLeft {
    opacity: 0;
    transform: translate(-70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeRight {
    opacity: 0;
    transform: translate(70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeUp.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeLeft.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeRight.appear {
    opacity: 1;
    transform: translate(0, 0);
}
/* slide */
.slick-track {
    display: flex !important;
}
.slick-track .slick-slide {
    height: auto;
}
/*==============================================================
2.0 Header
--------------------------------------------------------------*/
.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: .3s;
    top: 0;
    left: 0;
}
.header.scroll {
	background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .07);
    transition: .3s;
}
/* 2.1 top
--------------------------------------------------------------*/
.header-top {
	padding: 2rem 0;
	transition: .3s;
}
.header-top .container {
	display: flex;
	max-width: 100%;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.header-top {
		padding: 1rem 0;
		height: 2rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header-top {
		padding: 2rem 0;
	}
}
/* 2.2 logo
--------------------------------------------------------------*/
.header-logo {

}
.header-logo__link {
	display: block;
	line-height: 0;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	#header-logo {
		width: 17rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	#header-logo {
		width: 20rem;
	}
}
/* 2.3 nav
--------------------------------------------------------------*/
.header-nav {
	width: calc(100% - 16rem);
	display: flex;
    flex-direction: row-reverse;
    align-items: center;
	transition: 0.5s;
}
#menu-header-nav {
	display: flex;
	align-items: center;
}
#menu-header-nav .sub-menu {
	display: none;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.header-nav__trigger {
		position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16%;
        cursor: pointer;
        z-index: 500;
        width: 4rem;
        height: 4rem;
        top: 0;
        right: 0;
	}
	.header-nav__trigger span {
		height: 2px;
		width: 60%;
		background: linear-gradient(90deg, #00B595 0, #0361B6 100%);
        background: -webkit-linear-gradient(0deg, #00B595 0, #0361B6 100%);
	}
	.header-nav__menu {
		display: none;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header-nav__trigger {
		display: none;
	}
	#menu-header-nav {
		gap: 5vw;
	}
}
/* active ---------------------------------------------*/
.header.active {
	background: #FFF;
	height: 100%;
	transition: 0.5s;
}
.header.active .wrapper {
	height: 100%;
}
.header.active .container {
	flex-direction: column;
    justify-content: flex-start;
	height: 100%;
	padding: 0;
}
.header.active .header-logo {
	width: 100%;
}
.header.active #header-logo #symbol {
	fill: #00B595 !important;
}
.header.active #header-logo #logotype {
	fill: #000 !important;
}
.header.active .header-nav {
	display: block;
	width: 100%;
	height: 100%;
}
.header.active .header-nav__trigger span {
	background-color: #000 !important;
	transition: 0.3s;
}
.header.active .header-nav__trigger span:nth-of-type(1) {
	-webkit-transform: translateY(.6rem) rotate(-45deg);
	transform: translateY(.6rem) rotate(-45deg);
	position: absolute;
	top: 1.3rem;
    left: 0.8rem;
	transition: 0.3s;
}
.header.active .header-nav__trigger span:nth-of-type(2) {
	display: none;
	transition: 0.3s;
}
.header.active .header-nav__trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-.6rem) rotate(45deg);
	transform: translateY(-.6rem) rotate(45deg);
	position: absolute;
	top: 2.5rem;
    left: 0.8rem;
	transition: 0.3s;
}
.header.active .header-nav__menu {
	margin-right: 0;
}
.header.active .menu-header-nav-container {
	height: 100%;
}
.header.active #menu-header-nav .sub-menu {
	display: block;
}
.header.active #menu-header-nav li {
	width: 100%;
	height: 100%;
}
.header.active #menu-header-nav a {
	display: block;
	color: #000 !important;
	font-weight: bold;
}
.header.active #menu-header-nav .sub-menu a {
	font-weight: normal;

}
.header.active .link-emplty::after {
	background: url(../img/icon-empty__blk.svg) no-repeat center / contain !important;
}

/* media query : mobile */
@media screen and (max-width:768px) {
	.header.active .header-logo {
		padding-left: 1.5rem;
		padding-bottom: 1.5rem;
	}
	
	.header.active .header-nav__menu {
		display: block;
		overflow-y: scroll;
		height: calc(100% - 4rem);
		height: calc(100svh - 4rem);
	}
	.header.active #menu-header-nav {
		flex-direction: column;
		padding: 0 1.5rem 5rem 1.5rem;
		
	}
	.header.active #menu-header-nav a {
		border-top: 2px solid #00B595;
		border-bottom: 1px solid #D1D1D1;
		padding: 0.5rem 0;
	}
	.header.active #menu-header-nav .sub-menu a {
		border-top: none;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header.active .header-top {
		height: calc(100% - 2rem);
	}
	.header.active .header-logo {
		padding-left: 5rem;
	}
	.header.active .header-nav__menu {
		height: 100%;
	}
	.header.active #menu-header-nav {
		align-items: flex-start;
		justify-content: space-between;
		gap: 0;
		margin-top: 2rem;
		height: 100%;
	}
	.header.active #menu-header-nav li.menu-item-has-children {
		padding: 0 1rem;
		border-left: 1px solid #D1D1D1;
	}
	.header.active #menu-header-nav li.menu-item-has-children:first-child {
		border-left: none;
	}
	.header.active #menu-header-nav a {
		color: #FFF !important;
		background: #ccc;
        display: block;
        margin-left: -1rem;
        width: 100%;
        padding: 1rem;
	}
	.header.active #menu-header-nav li:first-child a {
		background: url(../img/common-menu__001.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:first-child+li a {
		background: url(../img/common-menu__002.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:first-child+li+li a {
		background: url(../img/common-menu__003.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:first-child+li+li+li a {
		background: url(../img/common-menu__004.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:first-child+li+li+li+li a {
		background: url(../img/common-menu__005.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:first-child+li+li+li+li+li a {
		background: url(../img/common-menu__006.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav li:last-child a {
		background: url(../img/common-menu__007.png) no-repeat center/cover;
	}
	.header.active #menu-header-nav .sub-menu a {
		color: #000 !important;
		background: none !important;
		margin-left: 0;
		padding: 1rem 0 0 0;
	}
}

/* scroll ---------------------------------------------*/
.header.scroll .header-top {
	padding-top: 1rem;
	padding-bottom: 1rem;
	transition: .3s;
}
@media screen and (min-width: 769px) {
	.header.scroll.active .header-top {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}
/* 2.4 mv
--------------------------------------------------------------*/
.mv {
	background: #F5F6F8;
}

@media screen and (max-width:768px) {
	.mv {
		margin-top: 4rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
	
}
@media screen and (min-width: 769px) {
    .mv {
		margin-top: 6.496rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
/* sub-nav
--------------------------------------------------------------*/
.sub-nav {
	border-bottom: 1px solid #E4E4E4;
}
.sub-nav__list,
.sub-nav__list li.cat-item, 
.sub-nav__blog ul.children {
	display: flex;
    align-items: center;
}
.sub-nav__list li a {
	display: flex;
    line-height: 1;
    padding: 0 2rem;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
	text-align: center;
}
.sub-nav__list li.current_page_item a,
.sub-nav__list li.current_page_parent a,
.sub-nav__blog li.cat-item.current-cat a {
	background: linear-gradient(90deg, #00B595 0, #0361B6 100%);
    background: -webkit-linear-gradient(0deg, #00B595 0, #0361B6 100%);
	color: #FFF;
}
.sub-nav__list li.cat-item.current-cat ul.children a {
	background: none;
	color: #000;
}
.page_item_has_children .children {
	display: none;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.sub-nav {
		overflow-x: auto;
	}
	.sub-nav .container {
        width: max-content;
		padding: 0;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
}

/*==============================================================
3.0 Home
--------------------------------------------------------------*/
/* 3.0 home.css
--------------------------------------------------------------*/

/*==============================================================
4.0 Page
--------------------------------------------------------------*/
/* 4.0 page.css
--------------------------------------------------------------*/

/*==============================================================
5.0 Archive
--------------------------------------------------------------*/
/* 5.0 archive.css
--------------------------------------------------------------*/

/*==============================================================
6.0 Single
--------------------------------------------------------------*/
/* 6.0 single.css
--------------------------------------------------------------*/

/*==============================================================
7.0 Etc
--------------------------------------------------------------*/
/* 7.1 CV
--------------------------------------------------------------*/
.cv {
	background: url(../img/contact.jpg) no-repeat center/cover;
	color: #FFF;
	text-align: center;
}
.cv .container {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.cv .h2:after {
	background: #FFF;
}
.cv-button {
	display: flex;
	justify-content: center;
	width: 100%;
}
.cv-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: #FFF;
	height: 4rem;
	border-radius: 3rem;
}
.cv-button .cv-tel {
    font-weight: 600;
}
.cv-button .cv-mail {
	border: 1px solid #FFF;
	font-size: 1.2rem;
}
.cv-button .cv-mail::after {
	content: "";
	display: block;
	position: absolute;
	right: 1rem;
	top: calc(50% - 1rem);
	width: 2rem;
	height: 2rem;
	background: url(../img/icon-circle-chevron-right-wht.svg) no-repeat center/contain;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.cv {
		padding-top: 3rem;
    	padding-bottom: 3rem;
	}
	.cv-button {
		flex-direction: column;
		gap: 1.5rem;
	}
	.cv-button .cv-tel {
        border: 1px solid #FFF;
        font-size: 2rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.cv {
		padding-top: 5rem;
    	padding-bottom: 5rem;
	}
	.cv-button {
		gap: 3rem;
	}
	.cv-button a {
		width: 50%;
		max-width: 24rem;
	}
	.cv-button .cv-tel {
		font-size: 2.8rem;
	}
	
}
/* 7.2 toc
--------------------------------------------------------------*/
#toc_container {
	margin: 0 auto;
    margin-bottom: 2rem !important;
    padding: 1rem 2rem !important;
    border-radius: 1.25rem;
}

/* 7.3 Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	color: #000;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-top: 1px solid #D6D6D6;
	border-bottom: 1px solid #D6D6D6;
	font-size: 0.825rem;
	line-height: 2;
}
.breadcrumbs a {
	color: #000;
}
.breadcrumbs .container {
	max-width: 100%;
}
/* 7.4 404
--------------------------------------------------------------*/

/*==============================================================
8.0 Footer
--------------------------------------------------------------*/
.footer #header-logo {
	max-width: 20rem;
}
.footer #symbol {
    fill: #00B595 !important;
}
.footer #logotype {
    fill: #000 !important;
}
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.footer .container {
		max-width: none;
	}
}
/* 8.1 nav
--------------------------------------------------------------*/
.footer-menu {
	background: #f7f7f7;
}
#menu-footer-nav {
	display: flex;
    justify-content: space-between;
}
#menu-footer-nav a {
	display: block;
	font-weight: bold;
}
#menu-footer-nav .sub-menu a {
	font-weight: normal;
}
#menu-footer-nav .menu-item {
	width: 100%;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.footer-menu {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}
	#menu-footer-nav {
		flex-direction: column;
	}
	#menu-footer-nav a {
		padding: 0.5rem 0;
		border-top: 2px solid #00B595;
		border-bottom: 1px solid #D1D1D1;
	}
	#menu-footer-nav .sub-menu a {
		border-top: none;
		
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.footer-menu {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	#menu-footer-nav {
		gap: 2rem;
	}
	#menu-footer-nav a {
		margin-bottom: 0.5rem;
	}
	#menu-footer-nav .sub-menu a {
		margin-bottom: 0;
	}
}



/* 8.2 terms / social / copyright
--------------------------------------------------------------*/
.footer-terms {
	padding-top: 2rem;
	padding-bottom: 2rem;
	border-top: 1px solid #D6D6D6;
}
.footer-terms .container {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.footer-terms .wrap {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.footer-terms #menu-terms-nav {
	display: flex;
	gap: 2rem;
}
.footer-terms #menu-social-nav {
	display: flex;
	gap: 1.5rem;
}
.social-nav__menu-fb a,
.social-nav__menu-x a {
	content: "";
    display: inline-block;
    text-indent: 1000%;
    white-space: nowrap;
    overflow: hidden;
    width: 3rem;
    height: 3rem;
}
.social-nav__menu-fb {
	background: url(../img/social-nav__menu-fb.svg) no-repeat center/contain;
}
.social-nav__menu-x {
	background: url(../img/social-nav__menu-x.svg) no-repeat center/contain;
}
.footer-terms .copyright {
	line-height: 0;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.footer-terms .container {
		flex-direction: column;
	}
	.footer-terms .wrap {
		flex-direction: column;
		width: 100%;
	}
	.menu-terms-nav-container {
	}
	.footer-terms #menu-terms-nav {
	}
	.footer-terms #menu-social-nav {
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.footer-terms .container {
		flex-direction: row-reverse;
	}
	.footer-terms .wrap {
		flex-direction: row;
		justify-content: flex-end;
		width: 50%;
	}
	.footer-terms .copyright {
		width: 50%;
	}
	.footer-terms #menu-terms-nav {
	}
}
