@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://use.typekit.net/kpw7qqe.css");
html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

/*a:hover { opacity:0.7;filter:alpha(opacity=70);-ms-filter: "alpha( opacity=70 )"; }*/
li {
  list-style: none;
}

img {
  max-width: 100%;
}

html {
  font-size: 62.5%;
  font-weight: 400;
  color: #333;
  -webkit-text-size-adjust: 100%;
  /*	scroll-behavior: smooth;*/
  scroll-padding-top: 90px;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

body#top {
  background: url(../img/bg_1.png) 0 0 repeat;
}

.l-wrap {
  width: 100%;
  position: relative;
  padding: 0 0 0;
}

@media screen and (min-width: 800px) {
  .l-wrap {
    padding: 0;
    overflow: hidden;
  }
}
.pcv {
  display: none;
}

.spv {
  display: block;
}

@media (992px <= width) {
  .pcv {
    display: block;
  }
  .spv {
    display: none;
  }
}
.floL {
  float: left;
}

.floR {
  float: right;
}

.clear {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

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

.lato {
  font-family: "Lato", sans-serif;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.din {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.inner {
  width: auto;
  margin: 0 20px;
}
@media (768px <= width) {
  .inner {
    margin: 0 8%;
  }
}
@media (992px <= width) {
  .inner {
    max-width: 1120px;
    /*width:100%;
    width:auto;
    margin:0 10%;*/
  }
}
@media (1200px <= width) {
  .inner {
    margin: 0 auto;
  }
}
.inner::after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

/*********************************************************************************************

	TEST

**********************************************************************************************/
@media (0 <= width) {
  .testA {
    background-color: #000;
  }
}
@media (576px <= width) {
  .testA {
    background-color: #889;
  }
}
@media (768px <= width) {
  .testA {
    background-color: #a12;
  }
}
@media (992px <= width) {
  .testA {
    background-color: #9c0;
  }
}
@media (1200px <= width) {
  .testA {
    background-color: #969;
  }
}
/*********************************************************************************************

	HEADER

**********************************************************************************************/
#header {
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 30px;
  padding: 10px 0 5px;
}
#header .inner {
  margin: 0 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

@media (768px <= width) {
  #header {
    height: 55px;
    padding-top: 20px;
  }
  #header .inner {
    margin: 0 3%;
  }
}
@media (992px <= width) {
  #header .inner {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }
}
.siteid {
  width: 32%;
}
.siteid a {
  display: block;
  text-indent: -9999px;
  background: url(../img/siteid_w.png) 0 0 no-repeat;
  background-size: 100%;
  width: 120px;
  height: 25px;
}

@media (768px <= width) {
  .siteid a {
    width: 162px;
    height: 34px;
  }
}
.h-inner {
  width: 68%;
}

/* SP - menu button */
.l-header__btn {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: none;
}
@media (992px <= width) {
  .l-header__btn {
    display: none;
  }
}

.l-header__btn div {
  width: 20px;
  height: 21px;
  margin: 13px 0 13px 16px;
  position: relative;
  transition: all 0.4s;
  box-sizing: border-box;
  z-index: 20;
}

.l-header__btn div span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}

.l-header__btn div span:nth-of-type(1) {
  top: 5px;
}

.l-header__btn div span:nth-of-type(2) {
  top: 12px;
}

.l-header__btn div span:nth-of-type(3) {
  bottom: 0px;
}

.l-header__btn.is-open span {
  background-color: #fff;
}

.l-header__btn.is-open span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

.l-header__btn.is-open span:nth-of-type(2) {
  opacity: 0;
}

.l-header__btn.is-open span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

/* SP - overlay*/
.sp-nav {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100vh;
}

.sp-nav_inner {
  display: block;
  background-color: #333333;
  padding: 30px 10px 60px 10px;
  transition: all 0.2s ease-in;
}

.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  position: fixed;
  top: 55px;
  left: 0;
  opacity: 0.6;
  transition: all 0.4s;
  visibility: hidden;
  visibility: visible;
  width: 100vw;
  z-index: -1;
}

.js-accordion_inner {
  display: none;
}

@media (992px <= width) {
  .sp-nav {
    display: inline-block;
    position: relative;
    top: 0;
    height: 100%;
  }
  .sp-nav_inner {
    background: none;
    padding: 0;
    text-align: left;
  }
  .overlay,
  .js-accordion_inner {
    display: none;
  }
}
.h-box {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  margin-right: 40px;
  align-items: center;
}

@media (992px <= width) {
  .h-box {
    margin: 0;
  }
}
/* 言語切り替え：プラグインによる／仮 */
.gtranslate_wrapper .glink {
  display: inline-block;
  margin: 0 0 0 10px;
  color: #fff;
  padding: 0 2px 6px 2px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}

.gtranslate_wrapper .glink.gt-current-lang {
  border-bottom: 1px solid #fff;
}

@media (992px <= width) {
  .lang-box {
    margin-left: 30px;
  }
  .gtranslate_wrapper {
    background-color: #fff;
    height: 24px;
    border-radius: 12px;
  }
  .gtranslate_wrapper .glink {
    display: inline-block;
    margin: 0 0 0 0;
    color: #333;
    padding: 0 12px;
    font-size: 1.3rem;
    line-height: 23px;
    font-weight: 500;
  }
  .gtranslate_wrapper .glink.gt-current-lang {
    background-color: #cdcdcd;
    border-radius: 12px;
  }
}
/* *********************************** */
.h-info {
  letter-spacing: -0.4em;
  text-align: center;
  margin-bottom: 30px;
}
.h-info li {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 15px;
}
.h-info li a {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 0 25px;
  color: #fff;
}
.h-info li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/icon_h2.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0;
}
.h-info li:first-child a::before {
  background: url(../img/icon_h1.png) 0 0 no-repeat;
  background-size: 100%;
}

@media (992px <= width) {
  .h-info {
    text-align: left;
    margin: 0;
  }
  .h-info li {
    margin: 0 0 0 15px;
  }
  .h-info li a {
    font-size: 1.2rem;
    padding: 0 0 0 25px;
  }
  .h-info li a::before {
    top: -2px;
  }
}
.nav-g {
  margin: 0 20px;
  border-top: 1px solid #717171;
}
.nav-g li a, .nav-g li p {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 20px 0;
  border-bottom: 1px solid #717171;
  color: #fff;
  text-align: left;
}
.nav-g li p {
  position: relative;
}
.nav-g li p::after {
  content: "+";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.nav-g li p.open::after {
  content: "\f068";
}

@media (992px <= width) {
  .nav-g {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
    border: none;
  }
  .nav-g li {
    margin: 0 0 0 25px;
  }
  .nav-g li a, .nav-g li p {
    font-size: 1.5rem;
    padding: 0;
    display: block;
    transition: all 0.2s ease-in;
    cursor: pointer;
    border: none;
  }
  .nav-g li:hover a, .nav-g li:hover p {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
  }
  .nav-g li:hover .menu_sp {
    max-height: 9999px;
    opacity: 1;
    transition: all 0.2s;
  }
  .nav-g li .menu_sp {
    transition: all 0.2s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: auto;
    position: absolute;
    top: 43px;
    text-align: left;
    z-index: 60;
    width: 230px;
  }
}
.g-2nd ul {
  padding: 0 0 20px 20px;
  border-bottom: 1px solid #717171;
  margin: 0;
}
.g-2nd ul > li {
  margin: 0;
  width: 100%;
  padding: 0;
}
.g-2nd ul > li a {
  position: relative;
  padding: 10px 10px 10px 23px;
  font-size: 1.4rem;
  display: block;
  border: none;
}
.g-2nd ul > li a::before {
  content: "";
  width: 15px;
  height: 10px;
  background: url(../img/arw_3.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 13px;
  left: 0;
}
.g-2nd ul > li.g-site a span {
  position: relative;
}
.g-2nd ul > li.g-site a span::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/arw_2.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 3px;
  right: -23px;
}

@media (992px <= width) {
  .g-2nd ul {
    padding: 0;
    border-bottom: none;
    margin: 0;
  }
  .g-2nd ul > li {
    display: block;
    margin: 0 0 1px 0;
  }
  .g-2nd ul > li a {
    padding: 16px 20px;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
  }
  .g-2nd ul > li a::before {
    display: none;
  }
  .g-2nd ul > li a:hover {
    background: rgba(63, 63, 63, 0.8);
  }
}
/*********************************************************************************************

	FOOTER

**********************************************************************************************/
#footer {
  background: url(../img/bg_2.jpg) 0 0 repeat;
  background-size: cover;
}

.f-inner {
  background: url(../img/bg_footer.png) center bottom no-repeat;
  background-size: cover;
  position: relative;
  z-index: 5;
  padding-bottom: 100px;
  max-height: 350px;
}
.f-inner::before {
  content: "";
  display: block;
  padding-top: 62.6875%;
}

@media (768px <= width) {
  .f-inner {
    padding-bottom: 100px;
    max-height: 700px;
  }
}
.f-content {
  margin-top: -20px;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.f-shop_area {
  width: auto;
  margin: 0 20px 60px 20px;
  color: #fff;
}

.f-siteid {
  width: 45%;
  margin: 0 auto 30px;
}
.f-siteid img {
  width: 100%;
}

.f-shop_list li {
  margin-bottom: 20px;
}
.f-shop_list li p {
  font-size: 1.5rem;
  line-height: 1.4;
}

@media (768px <= width) {
  .f-content {
    margin-top: -60px;
    padding-bottom: 40px;
  }
  .f-shop_area {
    width: auto;
    margin: 0 5% 50px;
  }
  .f-siteid {
    width: 200px;
    margin: 0 auto 40px;
  }
  .f-shop_list li {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
  }
  .f-shop_list li p {
    font-size: 1.4rem;
  }
  .f-shop_list li p.f-name {
    width: 19%;
  }
  .f-shop_list li p.f-tel {
    display: flex;
    gap: 15px;
    margin-left: auto;
  }
}
@media (992px <= width) {
  .f-shop_area {
    width: 800px;
    margin: 0 auto 50px;
  }
}
.f-menu {
  text-align: left;
  margin: 0 20px 60px 20px;
}
.f-menu li {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 20px;
}
.f-menu li a {
  color: #fff;
}

.t-copy {
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}

@media (768px <= width) {
  .f-menu {
    text-align: center;
    letter-spacing: -0.4em;
    margin: 0 0 40px 0;
  }
  .f-menu li {
    display: inline-block;
    letter-spacing: normal;
    margin: 0 0 10px;
  }
  .f-menu li a {
    display: block;
    position: relative;
    margin: 0 30px 0 0;
  }
  .f-menu li a::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: -15px;
  }
}
#page_top {
  display: block;
  position: fixed;
  bottom: 20%;
  right: 50px;
  opacity: 1;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  #page_top {
    bottom: 15%;
  }
}

#page_top a {
  display: block;
  text-decoration: none;
  position: relative;
  color: #333333;
  font-size: 1.2rem;
}
#page_top a span {
  position: relative;
  padding: 55px 0 0 0;
}
#page_top a span::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/pagetop.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 7px;
}

.recruit #footer {
  padding-bottom: 90px;
}

@media (992px <= width) {
  .recruit #footer {
    padding-bottom: 0;
  }
}
/*********************************************************************************************

	MAIN - contents

**********************************************************************************************/
#main {
  margin: 0;
  padding: 0;
}

/*********************************************************************************************

	RECRUIT

**********************************************************************************************/
.recruit-area {
  position: relative;
  background: url(../img/tp_rec.jpg) 60% 0 no-repeat;
  background-size: cover;
  height: 0%;
  height: auto;
  /*
  padding-top: unquote("min(100vh,75%)");
  */
  padding: 250px 0;
}

.rec-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 85%;
}
.rec-box h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
.rec-box p {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
}

.rec-more,
.rec-site {
  margin-top: 30px;
  display: inline-block;
  border: 1px solid #fff;
  width: 80%;
}
.rec-more a,
.rec-site a {
  display: block;
  padding: 20px 0;
  font-size: 1.5rem;
}
.rec-more a span,
.rec-site a span {
  position: relative;
  padding: 0 28px 0 0;
}
.rec-more a span::after,
.rec-site a span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/arw_1.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 2px;
  right: 0;
}

.rec-site a span::after {
  background: url(../img/arw_2.png) 0 0 no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  top: 4px;
}

@media (768px <= width) {
  .recruit-area {
    padding: 200px 0;
  }
}
@media (992px <= width) {
  .recruit-area {
    background: url(../img/tp_rec.jpg) 0 0 no-repeat;
    background-size: cover;
    /*
    padding-top: unquote("min(60vh,75%)");
    */
    padding: 300px 0;
  }
  .rec-box h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .rec-box p {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
  }
  .rec-more {
    width: auto;
    margin-top: 30px;
    display: inline-block;
  }
  .rec-more a {
    font-size: 1.8rem;
    padding: 20px 70px;
  }
  .rec-more a span {
    padding: 0 35px 0 0;
  }
  .rec-more a span::after {
    width: 25px;
    height: 25px;
    top: 1px;
  }
  .rec-site a span {
    padding: 0 25px 0 0;
  }
  .rec-site a span::after {
    width: 15px;
    height: 15px;
    top: 6px;
  }
}
/*********************************************************************************************

	インスタ ※プラグインによる：後で編集

**********************************************************************************************/
aside {
  padding: 40px 0 40px;
  position: relative;
}
aside::after {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  background-color: #efefef;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
}

.insta-inner {
  width: auto;
  margin: 0 3%;
  position: relative;
  z-index: 2;
  /*
  ul {
    clear: both;
  display:flex;
  justify-content: space-between;
  flex-wrap:wrap;

    li {
      width: calc(33.3333% - 8px);
      margin-bottom:10px;
      img { width:100%; height:auto; }
    }
  }
  */
}
.insta-inner::after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}
.insta-inner h2 {
  float: right;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 0 25px;
  margin: 0 0 15px;
}
.insta-inner h2::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/icon_insta.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.feed-box {
  margin: 40px auto;
  clear: both;
  text-align: center;
}

@media (992px <= width) {
  aside {
    padding: 100px 0 120px;
  }
  aside::after {
    width: 40%;
  }
  .insta-inner {
    margin: 0 10%;
    /*
    ul {
      li {
        width: calc(20% - 8px);
        margin-bottom:10px;
      }
    }
    */
  }
}
/*********************************************************************************************

	PARTS

**********************************************************************************************/
/* タブバナー */
.tab-banner {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 200;
  text-align: center;
  bottom: 0;
  left: 0;
}

.btn-inq {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 2px;
}
.btn-inq > li {
  width: calc(50% - 1px);
  background-color: #918105;
}
.btn-inq > li a {
  display: block;
  padding: 18px 0;
  color: #fff;
}
.btn-inq > li p {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}
.btn-inq > li p span {
  position: relative;
  padding: 0 0 0 25px;
}
.btn-inq > li p span::before {
  content: "";
  width: 20px;
  height: 21px;
  background: url(../img/icon_tab1.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn-inq > li:last-child a p span::before {
  background: url(../img/icon_tab2.png) 0 0 no-repeat;
  background-size: 100%;
}

@media (992px <= width) {
  .tab-banner {
    display: block;
    width: 56px;
    top: 15%;
    right: 0;
    left: auto;
  }
  .btn-inq {
    display: block;
    background: none;
    padding: 0;
  }
  .btn-inq > li {
    width: 100%;
    margin-bottom: 10px;
  }
  .btn-inq > li a {
    padding: 18px 0;
  }
  .btn-inq > li p {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
    writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-inq > li p span {
    padding: 27px 0 0 0;
  }
  .btn-inq > li p span::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*==========================================================================
text / a
==========================================================================*/
/*
a:hover { opacity:0.8;filter:alpha(opacity=80);-ms-filter: "alpha( opacity=80 )"; }
*/
.tate {
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

.i-arw span {
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 19px;
}
.i-arw span::before {
  content: "";
  width: 15px;
  height: 10px;
  background: url(../img/i_arw_1.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .i-arw span {
    font-size: 1.5rem;
  }
}

.i-site span {
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 19px;
}
.i-site span::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/i_arw_2.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .i-site span {
    font-size: 1.5rem;
  }
}

/* BTN */
.btn-sq {
  text-align: center;
  width: 360px;
  margin: 0 auto;
}
.btn-sq a {
  display: block;
  padding: 20px 0;
  border-radius: 4px;
  background-color: #e6e6e6;
  color: #333;
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
.btn-sq a:hover {
  box-shadow: none;
  transform: translateY(4px);
  background-color: #d9d9d9;
}

@media screen and (max-width: 767px) {
  .btn-sq {
    width: 100%;
  }
  .btn-sq a {
    padding: 17px 0;
  }
}
.i-arw a {
  position: relative;
  padding-left: 32px;
}
.i-arw a::before {
  content: "";
  display: block;
  width: 27px;
  height: 18px;
  background: url(../img/i_arw_1.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .i-arw a {
    padding-left: 25px;
  }
  .i-arw a::before {
    width: 20px;
    height: 13px;
  }
}

/*==========================================================================
grid
==========================================================================
.box-grid {
  display:flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
.box-grid_c {
  display:flex;
  justify-content: center;
  flex-wrap:wrap;
}
.box-grid_s {
  display:flex;
  justify-content: start;
  flex-wrap:wrap;
}
.box-grid_e {
  display:flex;
  justify-content: end;
  flex-wrap:wrap;
}

@include base.pcView {
  .is-items { align-items:center; }
  .is-reverse { flex-direction: row-reverse; }
}

.is-column { 
  @include base.spView {
    flex-flow: column; 
  }
}
*/
/*==========================================================================
404
==========================================================================*/
.message-404 {
  padding: 100px 0 120px;
  text-align: center;
}
.message-404 p {
  font-size: 1.8;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 3em;
}/*# sourceMappingURL=cmn.css.map */