@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@500&display=swap");
/*marker*/
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ffff11));
  background: linear-gradient(transparent 65%, #ffff11 65%);
  padding: 0 0 4px;
}

/*※注釈*/
.ast {
  padding-left: 1.2em;
  text-indent: -1.2em;
  font-size: 90%;
  margin: 10px 0;
  line-height: 1.5;
}

/*背景色*/
.bg-greyL {
  background-color: #F5F5F5;
}

.bg-greyD {
  background-color: #222;
}

/*リスト*/
ul.disc,
ul.decimal,
ul.square {
  line-height: 1.3;
  margin: 10px 0;
}
ul.disc > li,
ul.decimal > li,
ul.square > li {
  padding: 0 0 0 1em;
  margin: 0 0 6px;
  position: relative;
}
ul.disc > li::before,
ul.decimal > li::before,
ul.square > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}

/*黒丸*/
ul.disc > li::before {
  width: 9px;
  height: 9px;
  background: #5a959e;
  border-radius: 50px;
  top: 5px;
}

/*数字*/
ol.decimal {
  margin: 10px 0 10px 1.5em;
}

ol.decimal > li {
  display: list-item;
  list-style: decimal;
  padding: 3px 0;
}

/*四角*/
ul.square > li::before {
  width: 6px;
  height: 6px;
  background: #5a959e;
  top: 9px;
}

/*column*/
.clm2,
.clm3,
.clm4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .clm2,
  .clm3,
  .clm4 {
    display: block;
  }
}

.clm2 > * {
  width: 48%;
  margin: 0 1% 3%;
}

.clm3 > * {
  width: 31%;
  margin: 0 1.166% 3.5%;
}

.clm4 > * {
  width: 24.4%;
  margin: 0 0.3% 0.6%;
}

@media (max-width: 1024px) {
  .clm2 > *,
  .clm3 > *,
  .clm4 > * {
    width: auto !important;
    margin: 0 0 5%;
  }
}
.ph img {
  width: 100%;
}

/*flex*/
@media (min-width: 1025px) {
  .flex,
  .flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .flex > *,
  .flexBox > * {
    width: auto !important;
  }
}

/*flexBoxList*/
.flexBoxList .flexBox:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*flexBox*/
.flexBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 6% 0;
}
.flexBox:first-of-type {
  margin-top: 0;
}
.flexBox:last-of-type {
  margin-bottom: 0;
}
.flexBox .ph {
  width: 50%;
  position: relative;
  z-index: 0;
}
.flexBox .ph:not(.active) {
  visibility: hidden;
}
.flexBox .ph::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #697a36;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
  -webkit-transform: rotate(0, 0.0001deg);
          transform: rotate(0, 0.0001deg);
  outline: 1px solid transparent;
}
.flexBox .ph.active img {
  -webkit-animation: fadeIn 0.3s linear;
          animation: fadeIn 0.3s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.flexBox .ph.active::before {
  -webkit-animation: hover-in 0.8s forwards alternate, hover-out 0.8s 1s forwards alternate;
          animation: hover-in 0.8s forwards alternate, hover-out 0.8s 1s forwards alternate;
}
@-webkit-keyframes hover-in {
  0% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes hover-in {
  0% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes hover-out {
  0% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@keyframes hover-out {
  0% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.flexBox .inBlock {
  width: 50%;
  padding: 2.5em 6%;
}
.flexBox .inBlock .txt {
  margin: 2% 0;
}
.flexBox.rowReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*TEL*/
.tel a {
  display: inline-block;
  text-decoration: none;
}
.tel span {
  font-size: 210%;
  line-height: 1;
}
.tel span::before {
  content: "TEL";
  font-size: 80%;
  margin-right: 5px;
}

/*youtube*/
.movie {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.movie::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*TITLE*/
.md-title {
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
}
.md-title > span {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.md-title > span::before {
  content: attr(data-text);
  display: block;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 2.5em;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (max-width: 739px) {
  .md-title > span {
    font-size: 3vw;
  }
  .md-title > span::before {
    font-size: 8vw;
  }
}

.md-title-jp {
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
  text-align: center;
}
.md-title-jp > span {
  font-size: 2.4em;
  font-weight: bold;
  vertical-align: middle;
}
.md-title-jp > span big {
  color: #697a36;
  font-size: 180%;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-weight: bold;
  line-height: 1;
  vertical-align: middle;
}
.md-title-jp > span::after {
  content: attr(data-text);
  display: block;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #ccc;
  font-size: 0.35em;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 739px) {
  .md-title-jp {
    margin: 0 0 3%;
  }
  .md-title-jp > span {
    font-size: 6vw;
  }
}

.md01 {
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 1.2em;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .md01 {
    font-size: 3.5vw;
    margin: 0 0 2%;
  }
}
@media (max-width: 739px) {
  .md01 {
    font-size: 5vw;
  }
}

/*SECTION*/
section {
  position: relative;
}
section > .inner {
  width: 85%;
  margin: 0 auto;
  padding: 5rem 0;
}
section > .inner > .block {
  margin-bottom: 8%;
}
@media (max-width: 739px) {
  section > .inner {
    padding: 12% 0;
  }
  section > .inner > .block {
    margin-bottom: 5em;
  }
}

/*ボタン*/
.btn-more {
  max-width: 350px;
  width: 80%;
  margin: 1.2rem auto;
  text-align: center;
  /*インスタグラム*/
}
.btn-more a {
  display: block;
  padding: 1rem 0;
  background-color: #697a36;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 1.1rem 0;
  border-radius: 100px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.btn-more a i {
  margin-right: 0.5em;
  vertical-align: middle;
}
.btn-more a span {
  vertical-align: middle;
}
.btn-more a:hover {
  opacity: 0.9;
}
.btn-more.instagram {
  max-width: 800px;
  width: 90%;
}
.btn-more.instagram a {
  font-size: 2em;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  background: linear-gradient(75deg, #fed475 25%, #e53d5d 45%, #6620e5 80%);
  padding: 2rem 0;
}
@media (max-width: 739px) {
  .btn-more.instagram a {
    font-size: 1.5em;
    padding: 1.5rem 0;
  }
}

/*バナー*/
.bnrList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bnrList > li {
  width: 33.33%;
  position: relative;
}
@media (max-width: 1024px) {
  .bnrList {
    display: block;
  }
  .bnrList > li {
    width: auto;
  }
}

.bnr {
  position: relative;
  background-color: #697a36;
}
.bnr a {
  display: block;
}
.bnr a .fitImg::after {
  padding-top: 20%;
}
.bnr a .ttl {
  margin: 0;
}
.bnr .overlay {
  width: 84%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 auto;
}
.bnr .overlay .ttl {
  color: #fff;
}
.bnr .overlay .ttl::before {
  display: none;
}
@media (max-width: 1024px) {
  .bnr a .fitImg::after {
    padding-top: 40%;
  }
}
@media (max-width: 739px) {
  .bnr a .fitImg::after {
    padding-top: 55%;
  }
}

/*googleマップ*/
.gMap {
  position: relative;
}
.gMap::after {
  content: "";
  display: block;
  padding-top: 37%;
}
.gMap iframe {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .gMap::after {
    padding-top: 60%;
  }
}

/*contents ==============================*/
/*table*/
table.tbl {
  width: 100%;
  margin: 1rem auto;
  line-height: 1.4;
  font-size: 105%;
  border-top: 1px solid #444;
}
table.tbl tr {
  vertical-align: top;
  border-bottom: 1px solid #444;
}
table.tbl tr th {
  width: 20%;
  padding: 1.2em 2em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
table.tbl tr td {
  padding: 1.2em 2em;
}
table.tbl tr .sml {
  font-size: 80%;
}
@media (max-width: 739px) {
  table.tbl:not(.p-tbl) tr th,
  table.tbl:not(.p-tbl) tr td {
    padding-left: 1%;
    padding-right: 1%;
  }
  table.tbl:not(.p-tbl) tr th {
    display: block;
    width: auto;
    padding-bottom: 1.5%;
  }
  table.tbl:not(.p-tbl) tr td {
    display: block;
    width: auto;
    padding-top: 0;
  }
}

/*table scroll*/
.table-scroll {
  margin: 0 auto 1em;
}
@media (max-width: 739px) {
  .table-scroll {
    overflow: auto;
  }
}
.table-scroll > table tr th,
.table-scroll > table tr td {
  display: table-cell !important;
}

/*ページタイトル*/
.page-title {
  padding: 6rem 0 4rem;
  text-align: center;
  line-height: 100%;
}
.page-title span.ttl {
  display: block;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 739px) {
  .page-title span.ttl {
    font-size: 3vw;
  }
}
.page-title span.ttl::before {
  content: attr(data-text);
  display: block;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 2.7em;
  margin: 0 0 0.6em;
}

/*mv*/
#mv {
  position: relative;
  background: #697a36;
}
#mv .fitImg::after {
  padding-top: 24%;
}
#mv .fitImg::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #697a36;
  opacity: 0.28;
  z-index: 1;
}
#mv .pageTitle {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
#mv .pageTitle span.ttl {
  color: #fff;
  font-weight: normal;
}
@media (max-width: 1024px) {
  #mv .fitImg::after {
    padding-top: 55%;
  }
}

/*パンクズ*/
#breadCrumb {
  padding: 20px 3%;
  font-size: 85%;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0;
  background-color: #F5F5F5;
}
@media (max-width: 739px) {
  #breadCrumb {
    padding: 12px 3%;
  }
}

#breadCrumb > ol li {
  display: inline-block;
}

#breadCrumb > ol li::after {
  content: "｜";
  color: #aaa;
}

#breadCrumb > ol li:last-child::after {
  display: none;
}

#breadCrumb > ol li a {
  display: inline-block;
  opacity: 0.5;
}

#breadCrumb > ol li a:hover {
  opacity: 1;
}

/*container*/
#container {
  padding: 0;
}

/*intro*/
.intro {
  max-width: 1200px;
  display: table;
  margin: 2% auto;
}
.intro .txt {
  margin: 0 0 2%;
}

.ctsList .md {
  margin: 2% 0 0;
  text-align: center;
  font-size: 135%;
}
.ctsList .txt {
  margin: 2% 0 0;
}

/*topcontrol*/
#topcontrol {
  z-index: 10;
}
#topcontrol img {
  width: 50px;
  height: 50px;
}

/*HEADER*/
#TOP #header {
  position: absolute;
  top: 0 !important;
  left: 0;
  z-index: 100;
}

#header {
  width: 100%;
}
#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  height: 100px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 739px) {
  #header .inner {
    height: 60px;
  }
}
#header .inner .hd-logo {
  max-width: 220px;
  width: 40%;
  margin: 0 0 0 4%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#header .inner .hd-logo img {
  width: 100%;
}

/*メニュー*/
body.no-scroll {
  overflow: hidden;
}

#toggleBox {
  display: none;
  opacity: 0;
  -webkit-transition: top 7s ease-in-out, opacity 0.4s ease;
  transition: top 7s ease-in-out, opacity 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #697a36;
  overflow: scroll;
  z-index: 500;
}
#toggleBox .inBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
#toggleBox #gNav {
  width: 65%;
  max-width: 750px;
  opacity: 0;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 1s ease;
  transition: opacity 0.2s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.2s ease;
  transition: transform 1s ease, opacity 0.2s ease, -webkit-transform 1s ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#toggleBox #gNav ul.nav {
  margin: 0;
}
#toggleBox #gNav ul.nav li {
  margin: 2em 0;
}
#toggleBox #gNav ul.nav li a {
  display: inline-block;
  color: #fff;
  padding: 0;
  position: relative;
}
#toggleBox #gNav ul.nav li a::before {
  height: 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#toggleBox #gNav ul.nav li a span {
  font-weight: bold;
  letter-spacing: 0.1em;
}
#toggleBox #gNav ul.nav li a span::before {
  content: attr(data-text);
  display: block;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 3.2em;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 739px) {
  #toggleBox #gNav ul.nav li a span::before {
    font-size: 7vw;
  }
}
#toggleBox #gNav ul.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  #toggleBox #gNav ul.sns {
    margin: 22% 0 0;
  }
}
#toggleBox #gNav ul.sns > li {
  margin-right: 1em;
}
#toggleBox #gNav ul.sns > li a {
  color: #fff;
}
#toggleBox #gNav ul.sns > li a i {
  font-size: 2.3em;
}
#toggleBox.open {
  opacity: 1;
  top: 0;
}
#toggleBox.open #gNav {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*header固定*/
/*メニューボタン*/
#MenuBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 800;
  cursor: pointer;
  background-color: #697a36;
}
#MenuBtn .trigger span, #MenuBtn .trigger {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#MenuBtn.active .trigger span:nth-child(2)::after, #MenuBtn .trigger span:nth-of-type(2)::after, #MenuBtn .trigger span {
  background-color: #fff;
}
#MenuBtn .trigger {
  position: relative;
  width: 40%;
  height: 25%;
}
#MenuBtn .trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  margin: auto;
}
#MenuBtn .trigger span:nth-of-type(1) {
  top: 0;
}
#MenuBtn .trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
#MenuBtn .trigger span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#MenuBtn .trigger span:nth-of-type(3) {
  bottom: 0;
}
#MenuBtn.active .trigger span:nth-child(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
#MenuBtn.active .trigger span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#MenuBtn.active .trigger span:nth-child(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 1;
}
#MenuBtn.active .trigger span:nth-child(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}
@media (max-width: 739px) {
  #MenuBtn {
    width: 60px;
    height: 60px;
  }
}

/*=========================================
	 タブレット
=========================================*/
#contact a {
  display: block;
  padding: 6% 8%;
  color: #fff;
  background-color: #697a36;
  position: relative;
}
#contact a .md-title {
  text-align: left;
  margin: 0;
}
#contact a i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 7%;
  border: 2px solid #fff;
  border-radius: 100px;
  font-size: 200%;
  padding: 2.5%;
}
@media (max-width: 1024px) {
  #contact a .md-title > span::before {
    font-size: 6.2vw;
  }
}
@media (max-width: 739px) {
  #contact a i {
    font-size: 1.2em;
    border-width: 1px;
    padding: 3.5%;
  }
}

#footer {
  background-color: #222;
  color: #fff;
  font-size: 85%;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5.5% 0;
  position: relative;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  opacity: 0.7;
}
#footer .ft-inner {
  width: 90%;
  margin: 0 auto;
}
#footer .ft-inner .info {
  margin: 0 0 3%;
}
#footer .ft-inner .info dl dt {
  font-size: 120%;
  font-weight: bold;
  margin: 0 0 0.8%;
}
#footer .ft-inner .ft-copyright {
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  color: #999;
}
@media (min-width: 1025px) {
  #footer .ft-inner ul.sns {
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
  }
  #footer .ft-inner ul.sns li {
    text-align: center;
    line-height: 1;
    margin: 0 0 1px;
  }
  #footer .ft-inner ul.sns li:last-child {
    margin: 0;
  }
  #footer .ft-inner ul.sns li a {
    display: block;
    background-color: #697a36;
    color: #fff;
    padding: 12px 8px;
  }
  #footer .ft-inner ul.sns li a i {
    font-size: 1.8em;
  }
  #footer .ft-inner ul.sns li a span {
    display: block;
    font-size: 85%;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
    margin: 5px 0 0;
  }
}
@media (max-width: 1024px) {
  #footer .ft-inner ul.sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 6% auto 5%;
  }
  #footer .ft-inner ul.sns li {
    margin: 0 1.3%;
  }
  #footer .ft-inner ul.sns li a {
    display: block;
  }
  #footer .ft-inner ul.sns li a i {
    font-size: 2em;
  }
  #footer .ft-inner ul.sns li a span {
    display: none;
  }
}

/*タブレット*/
/*スマートフォン*/
/*# sourceMappingURL=base.css.map */