@charset "UTF-8";
/* Scss Document */
.BtnCommon {
  width: 200px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 500;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  line-height: 45px;
}

.BtnCommon:hover {
  background-color: #f89704;
  -webkit-box-shadow: 0px 15px 20px rgba(229, 186, 46, 0.4);
          box-shadow: 0px 15px 20px rgba(229, 186, 46, 0.4);
  color: #fff;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

/*191205=ふわっと浮き上がる<div class="Btn-Orijinal Btn-Type1"><a href="" target="_blank">ボタン</a></div>*/
.Btn-Orijinal {
  position: relative;
  padding: 1em 1.5em;
  border: none;
  background-color: #f3f4f53d;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  margin: 1em auto;
  width: 200px;
  text-align: center;
  color: #333;
  font-weight: bolder;
}

.Btn-Type1::after, .Btn-Type1::before {
  content: '';
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 2px;
}

.Btn-Type1::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #7fbfff;
  border-right-color: #7fbfff;
}

.Btn-Type1::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #7fbfff;
  border-left-color: #7fbfff;
}

.Btn-Type1:hover::after, .Btn-Type1:hover::before {
  width: 100%;
  height: 100%;
}

/*200205=<div class="Btntenzen"><a href="" target="_blank">ボタン</a></div>*/
.Btntenzen {
  width: 300px;
  background: #fff;
  padding: 2px;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .35s ease-in-out .35s;
  transition: all .35s ease-in-out .35s;
  margin: 0 auto;
  text-align: center;
}

.Btntenzen a {
  display: block;
  padding: 15px 30px;
  background: #fff;
  z-index: 100;
  position: relative;
  -webkit-transition: all .35s ease-in-out .35s;
  transition: all .35s ease-in-out .35s;
  color: #9ec353;
  text-decoration: none;
  border: 1px solid #9ec353;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.Btntenzen:hover a {
  background: #9ec353;
  color: #fff;
  -webkit-transition: all .35s ease-in-out .35s;
  transition: all .35s ease-in-out .35s;
  border: 1px solid #fff;
}

.Btntenzen:after, .Btntenzen:before, .Btntenzen:hover a {
  background: #9ec353;
  color: #444;
}

.Btntenzen:after {
  bottom: -100%;
  right: -100%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #9ec353;
  -webkit-transition: all .35s ease-in-out .5s;
  transition: all .35s ease-in-out .5s;
}

.Btntenzen:hover:after {
  right: 0;
  bottom: 0;
  -webkit-transition: all ease-out .35s;
  transition: all ease-out .35s;
}

.Btntenzen:before {
  top: -100%;
  left: -100%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f1f1;
  -webkit-transition: all .35s ease-in-out .5s;
  transition: all .35s ease-in-out .5s;
}

.Btntenzen:hover:before {
  left: 0;
  top: 0;
  -webkit-transition: all ease-in-out .35s;
  transition: all ease-in-out .35s;
}

/*200205=<div class="Btntenzen01"><div class="Btntenzen01-Motion"><a href="" target="_blank">ボタン</a></div></div>*/
.Btntenzen01 {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
}

.Btntenzen01-Motion {
  color: #333;
  position: relative;
}

.Btntenzen01-Motion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #f1f1f15c;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.Btntenzen01-Motion:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}

.Btntenzen01-Motion::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
  border: 1px solid #333;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.Btntenzen01-Motion:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.Btntenzen01-Motion:hover a {
  letter-spacing: 2px;
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
}

.Btntenzen01-Motion a {
  display: block;
  text-decoration: none;
  color: #333;
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
}

.dis {
  display: block;
}

.disn {
  display: none;
}

.TopMain {
  max-width: 1000px;
  background: #fff8e1;
  margin: 0 auto;
  color: #333;
}

.Normal {
  padding: 0 3%;
  vertical-align: super;
}

.Cold {
  padding: 2% 0;
  display: inline;
}

.Cold img {
  width: 90px;
}

.Month {
  background: #c6b198;
  padding: 1%;
  max-width: 300px;
  margin: 2% 0;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.BgGreen {
  background: url(../images/green.png) no-repeat;
  background-size: cover;
}

.Mt {
  margin: 10% auto 1%;
}

.Mt-2 {
  margin: 8% 0 0;
}

.Pad {
  padding: 6% 0 0;
}

.Red {
  color: #9f141a;
}

.En-Name {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

.PhotoItem {
  margin: 7rem 0 0;
  text-align: center;
}

.BtnCom {
  text-align: center;
  width: 300px;
  position: relative;
  margin: 0 auto;
}

.BtnCom::after {
  content: "";
  position: absolute;
  background: url(../images/icon.png) no-repeat;
  width: 43px;
  height: 43px;
  top: 12%;
  left: 5%;
}

.BtnCom a {
  position: relative;
  display: inline-block;
  background: #5a2e14;
  padding: 4% 6%;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  width: 300px;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  border: 1px solid #826a4d;
}

.BtnCom a:hover {
  background: #826a4d;
  border: 1px solid #5a2e14;
}

.BtnCom a::after {
  position: absolute;
  bottom: 23px;
  left: 84.3%;
  content: '';
  width: 16%;
  height: 2px;
  background: #c6b198;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: .3s;
  transition: .3s;
}

.BtnCom a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  width: 25%;
  -webkit-transition: .3s;
  transition: .3s;
}

.Info-Tit {
  text-align: center;
  margin: 3% auto;
  font-size: 22px;
  font-size: 2.2rem;
  background: #5a2e14;
  max-width: 500px;
  border-radius: 20px;
  padding: 0.5%;
  color: #fff;
}

.Info-Text {
  max-width: 800px;
  margin: 3% auto;
  background: url(../images/bg-01.png) repeat;
  padding: 2%;
  color: #333;
  border: 4px double #5a2e14;
  line-height: 1.8;
}

.Line {
  display: block;
  border-bottom: 1px solid #5a2e14;
  max-width: 180px;
}

.Deco {
  display: block;
}

.TopArea-Flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5%;
}

.TopArea-R {
  width: 70%;
}

.TopArea-L {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 40%;
  height: 440px;
  line-height: 2;
  margin: 0 6% 0 0;
  font-size: 17px;
  font-size: 1.7rem;
  color: #000000;
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopArea-Bg--01 {
  background: url(../images/bg-02.png) no-repeat;
}

.TopArea-Bg--02 {
  background: url(../images/bg-03.png) no-repeat;
}

.TopArea-Bg--03 {
  background: url(../images/bg-04.png) no-repeat;
}

.TopCol {
  background: #fff;
  text-align: center;
}

.TopCol-In {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4% 0;
  position: relative;
}

.TopCol-Img {
  width: 50%;
  text-align: center;
}

.TopCol-Picture {
  text-align: center;
  position: relative;
  margin: 0 0 0 2%;
}

.TopCol-Deta {
  width: 48%;
  margin: 0 3%;
}

.TopCol-Tit {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  padding: 1% 0;
  text-align: left;
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopCol-Tit:after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #5a2e14;
  width: 150px;
  height: 2px;
  top: 84%;
  left: 0;
}

.TopCol-Text {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0px;
  margin: 4% auto;
}

.TopCol-Price {
  font-size: 40px;
  font-size: 4rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 4% auto;
}

.TopCol-Price .En {
  font-size: 20px;
  font-size: 2rem;
}

.TopCol-Cm {
  background: #fff;
  color: #515966;
  max-width: 100px;
  text-align: center;
  border-radius: 10px;
  margin: 1%;
}

.TopCol-Num {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

.TopCols-Text-new {
  margin: 1rem auto;
  max-width: 600px;
}

.TopCols-Tit {
  font-size: 30px;
  font-size: 3rem;
  padding: 0 4%;
  text-align: left;
  margin: 2% 0 4%;
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopCols-TitSup {
  font-size: 30px;
  font-size: 3rem;
  padding: 0 4%;
  text-align: center;
  margin: 2% 0 4%;
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopCols-Tit-01 {
  font-size: 25px;
  font-size: 2.5rem;
  margin: 2% 0 4%;
  padding: 0 4%;
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopCols-Text {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0px;
  margin: 2% 0 4%;
  padding: 0 4%;
  max-width: 748px;
}

.TopCols-Img {
  text-align: center;
}

.TopCols-ImgSize {
  max-width: 400px;
  margin: 0 auto;
}

.TopCols-ImgSize img {
  width: 400px;
}

.TopCols-ImgL, .TopCols-ImgN {
  max-width: 400px;
  margin: 0 auto;
}

.TopCols-ImgL img, .TopCols-ImgN img {
  width: 400px;
}

.TopCols-cold {
  color: #0086fb;
  background: #c2e3ff;
  width: 110px;
  text-align: center;
  border-radius: 20px;
  padding: 1%;
  font-weight: bold;
  margin: 0 auto;
}

.TopCols-Clomun {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 920px;
  margin: 3% auto;
}

.TopCols-In {
  width: 47%;
}

.TopCols-ImgR {
  width: 47%;
}

.TopCols-Price {
  font-size: 40px;
  font-size: 4rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 auto;
  text-align: center;
}

.TopCols-Price .En {
  font-size: 20px;
  font-size: 2rem;
}

.TopCols .column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.TopCols-Btn {
  margin: 3% auto;
}

.TopCols-Num {
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

.TopCols-Top {
  position: relative;
}

.TopCols-Ab {
  position: absolute;
  bottom: 0%;
  max-width: 500px;
  right: 0;
  padding: 3%;
  background: #ffffffd1;
}

.TopCols-AbTit {
  font-family: kan415typos-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.TopCols-AbText {
  padding: 1% 0;
}

.Ari {
  margin: 2% 0 5%;
}

.Hou {
  margin: 2% 0 5%;
}

.New {
  font-size: 22px;
  font-size: 2.2rem;
  color: #9c0606;
  font-weight: bold;
}

.BackTop {
  text-align: center;
  margin: 5% auto -3px;
  padding: 3%;
}

.BackTop a {
  color: #fff;
}

.Fini {
  margin: -5.4px;
}

.Footer {
  background: url(../images/bottom.png) bottom left no-repeat;
  background-size: 45%;
  padding: 0 0 12%;
}

.Footer-Area {
  max-width: 1000px;
  margin: 5% auto 17%;
}

.Footer-Sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 250px;
  margin: 5% auto;
}

.Footer-SnsItem a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Footer-SnsItem a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Footer-Link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 640px;
  margin: 7% auto;
}

.Footer-LinkItem a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Footer-LinkItem a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.FooterBottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1%;
  background: #eddfce;
  font-size: 13px;
  font-size: 1.3rem;
}

.FooterBottom a {
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.FooterBottom a:hover {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.FooterBottom-L {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 38%;
}

.FooterBottom-Item {
  width: 200px;
}

.FooterBottom-R {
  width: 42%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-decoration: none;
  font-weight: 100;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 100%;
  font: inherit;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  word-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
}

ol, ul {
  list-style: none;
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/*table {
	border-collapse: collapse;
	border-spacing: 0;
}*/
/** {
    -webkit-appearance: none;
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input {
  border: 0;
  background: none;
}

textarea {
  border: 0;
  background: #fff;
}

a {
  color: #0044cc;
}

.type-A {
  display: none;
}

p {
  text-justify: inter-ideograph;
}

body {
  background-size: 100%;
  overflow: hidden;
  min-width: 100%;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: #fff8e1;
  background: url(../images//body.jpg) repeat;
}

html {
  overflow: auto;
  font-size: 62.5%;
}

.Fade {
  /* 追加部分 */
  -webkit-transform: translate3d(30px, 50px, 0) skewY(0deg) skewX(10deg);
          transform: translate3d(30px, 50px, 0) skewY(0deg) skewX(10deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  opacity: 0;
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
}

/* 追加部分 */
.FadeIn {
  -webkit-transform: translate3d(0, 0, 0) skewY(0deg) skewX(0deg);
          transform: translate3d(0, 0, 0) skewY(0deg) skewX(0deg);
  opacity: 1;
  -webkit-transition: opacity 1s, -webkit-transform 1s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: opacity 1s, -webkit-transform 1s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 1s cubic-bezier(0.08, 0.92, 0.35, 1), opacity 1s;
  transition: transform 1s cubic-bezier(0.08, 0.92, 0.35, 1), opacity 1s, -webkit-transform 1s cubic-bezier(0.08, 0.92, 0.35, 1);
}

.Fade01 {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all ease-in-out .35s;
  transition: all ease-in-out .35s;
}

.FadeIn01 {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.6s, -webkit-filter 0.5s 0.1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: opacity 0.6s, -webkit-filter 0.5s 0.1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: filter 0.5s 0.1s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity 0.6s;
  transition: filter 0.5s 0.1s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity 0.6s, -webkit-filter 0.5s 0.1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.Fade02 {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
}

.fadein02 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*コピーペーストして作るとき移動させたら更新
@import  "./base/lib/variables";
@import  "./base/lib/mixins";
これがトップにこないと反映されない*/

@media (max-width: 640px) {
  .Mt {
    margin: 14% auto 1%;
  }
  .Width {
    width: 100px;
  }
  .BtnCom {
    margin: 3% auto;
  }
  .Info-Text {
    width: 90%;
    padding: 3%;
  }
  .TopArea-Flex {
    display: block;
  }
  .TopArea-R {
    width: 100%;
  }
  .TopArea-L {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    width: 100%;
    height: auto;
    border-top: 1px solid #333;
    margin: 3% auto;
  }
  .TopCol-In {
    display: block;
    padding: 10% 0;
  }
  .TopCol-Img {
    width: 90%;
    margin: 0 auto;
  }
  .TopCol-Deta {
    width: 90%;
    margin: 0 auto;
  }
  .TopCol-Tit {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .TopCol-Text {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .TopCol-Price {
    font-size: 30px;
    font-size: 3rem;
  }
  .TopCol-Price .En {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .TopCols-Tit {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .TopCols-TitSup {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .TopCols-Clomun {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .TopCols-In {
    width: 90%;
    margin: 2% auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .TopCols-ImgR {
    width: 90%;
    margin: 2% auto;
  }
  .TopCols-Price {
    font-size: 30px;
    font-size: 3rem;
  }
  .TopCols-Price .En {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .TopCols .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .TopCols-Ab {
    position: inherit;
  }
  .Fini {
    margin: -16.4px;
  }
  .Footer-Sns {
    max-width: 180px;
  }
  .Footer-SnsItem {
    width: 70px;
  }
  .Footer-Link {
    display: block;
  }
  .Footer-LinkItem {
    text-align: center;
    margin: 8% auto 6%;
  }
  .FooterBottom {
    display: block;
  }
  .FooterBottom-L {
    width: 90%;
    margin: 0 auto;
  }
  .FooterBottom-Item {
    width: 170px;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .FooterBottom-R {
    width: 90%;
    text-align: center;
    margin: 2% auto;
  }
}

/*# sourceMappingURL=css/styles.css.map */
