@charset "UTF-8";
/* IEハック用mixin */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* background-color: inherit; */
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  height: 100%;
  overflow: auto;
  min-width: 320px;
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
  overflow-x: hidden;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.js_isIe body {
  font-family: Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

.js #wrap {
  visibility: hidden;
}

.no-js #wrap {
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}

@media screen and (max-width: 859px) {
  .lg-only {
    display: none !important;
  }
}

a {
  text-decoration: none;
  outline: none;
  display: inline-block;
}

a:hover {
  color: #FF801E;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#wrapper {
  webkit-overflow-scrolling: touch;
}

.container-large {
  max-width: 1400px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: 920px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-content-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* tel */
.tel a {
  color: #000;
}

/* 色 */
.color-main {
  color: #F0454E;
}

.color-sub {
  color: #FFFF00;
}

.color-white {
  color: #fff;
}

/* 言語 */
.jp {
  font-size: 1.8rem;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 480px) {
  .jp {
    font-size: 1.6rem;
  }
}

.en {
  font-size: 5.0rem;
  line-height: 1.2;
  display: block;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 480px) {
  .en {
    font-size: 3.0rem;
  }
}

/* ボタン */
.btn {
  background-color: #F0454E;
  color: #fff;
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 1.2;
  padding: 0.8em 2em;
  margin-bottom: 1em;
  margin-top: 1em;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.4rem;
    padding: 0.8em 1.8em;
  }
}

.btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  right: 12px;
  line-height: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 1.4rem;
}

.btn::after {
  background: #F0454E;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn:hover::after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  background: #FF801E;
}

.btn:hover {
  /*	background-color: $color-main;*/
  color: #fff;
}

/* =========================================================
#header
========================================================= */
#header .header-top {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.3em 1em;
}
@media screen and (max-width: 768px) {
  #header .header-top {
    font-size: 4vw;
  }
}

#hero {
  background-color: #F0454E;
  position: relative;
  background-image: url(../images/hero-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 50%;
}
@media screen and (max-width: 768px) {
  #hero {
    background-image: url(../images/hero-back_sp.png);
    background-size: contain;
    background-position: right top;
  }
}

.hero-inner {
  padding: 100px 30px;
  position: relative;
  z-index: 2;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-inner {
    text-align: center;
    padding: 300px 30px 30px;
  }
}
@media screen and (max-width: 480px) {
  .hero-inner {
    padding: 200px 20px 20px;
  }
}

@media screen and (max-width: 480px) {
  .hero-inner h2 {
    max-width: 100vw;
  }
}

@media screen and (max-width: 768px) {
  .hero-midashi {
    background-color: #F0454E;
    padding: 20px 20px 0;
  }
}

/* =========================================================
#secRead
========================================================= */
#secRead {
  padding: 50px 0px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #secRead {
    padding: 30px 0px;
  }
}

/* =========================================================
#secCampaign
========================================================= */
#secCampaign {
  background-color: #F0454E;
  padding: 50px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #secCampaign {
    padding: 30px 0;
  }
}

/* タイトル */
.secCamTitle {
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 1em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secCamTitle {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .secCamTitle {
    font-size: 2.0rem;
  }
}

#secCampaign .secCampaign-inner {
  /*　カーテン */
  display: block;
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #secCampaign .secCampaign-inner {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.secCampaign-inner .secCampaignTxt {
  width: 50%;
  padding-right: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .secCampaign-inner .secCampaignTxt {
    width: 100%;
    padding-right: 0px;
  }
}

.campaignBox {
  padding: 10px 0;
}

/* キャンペーン期間　文字サイズ */
#secCampaign .date {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFF00;
}
@media screen and (max-width: 859px) {
  #secCampaign .date {
    font-size: 2.8rem;
  }
}

#secCampaign .parking-muryou {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFF00;
  letter-spacing: .06em;
}
@media screen and (max-width: 859px) {
  #secCampaign .parking-muryou {
    font-size: 2.8rem;
  }
}

#secCampaign .secCampaign-muryou {
  color: #FFFF00;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 859px) {
  #secCampaign .secCampaign-muryou {
    font-size: 1.8rem;
  }
}

.secCampaign-inner .secCamSub-Title {
  background-color: #fff;
  color: #F0454E;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.4em 0.8em;
  margin-bottom: 0.5em;
}

.secCampaign-inner .secCampaignImg {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .secCampaign-inner .secCampaignImg {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .secCampaign-inner .secCampaignImg img {
    width: 100%;
  }
}

/* =========================================================
#secCamParking
========================================================= */
#secCamParking {
  background-image: url(../images/secCampaign-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 0px;
}
@media screen and (max-width: 768px) {
  #secCamParking {
    background-image: none;
    padding: 30px 0px;
  }
}
@media screen and (max-width: 480px) {
  #secCamParking {
    padding: 30px 0px;
  }
}

#secCamParking .secCamParking-inner {
  background-color: #fff;
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  #secCamParking .secCamParking-inner {
    padding: 0px 20px;
  }
}

#secCamParking .parking-title {
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 0.4em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #secCamParking .parking-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  #secCamParking .parking-title {
    font-size: 2.0rem;
  }
}

#secCamParking .secCamParking-inner h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

#secCamParking .parkingImg {
  width: 100%;
}

.otoku {
  font-size: 4.2rem;
  line-height: 1.2;
  color: #F0454E;
  font-weight: bold;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
@media screen and (max-width: 859px) {
  .otoku {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  .otoku {
    font-size: 2.6rem;
  }
}

.parkingSubtitle {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  background-color: #F0454E;
  padding: 0.4em 0.8em;
}

/* リスト */
.osusumeList {
  position: relative;
  padding-left: 1.1em;
}

.osusumeList > li {
  position: relative;
  text-align: left;
  margin-bottom: 0.6em;
  line-height: 1.4;
  color: #F0454E;
  font-weight: bold;
  font-size: 1.8rem;
}

.osusumeList > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  margin-left: -1.2em;
  line-height: 1.4;
  font-weight: 900;
  color: #F0454E;
  display: block;
}

/* =========================================================
#secOverview
========================================================= */
#secOverview {
  overflow: hidden;
  padding: 50px 0px;
}
@media screen and (max-width: 768px) {
  #secOverview {
    padding: 30px 0px;
  }
}

.secOver-title {
  margin-bottom: 0.5em;
  color: #004676;
  text-align: center;
  margin-bottom: 0.5em;
}

#secOverview .overviewTitle {
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em;
}

/* リスト */
.overviewList {
  position: relative;
  padding-left: 1.1em;
}

.overviewList > li {
  position: relative;
  text-align: left;
  margin-bottom: 0.6em;
  line-height: 1.4;
  color: #000;
}

.overviewList > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  margin-left: -1.2em;
  line-height: 1.4;
  font-weight: 900;
  color: #000;
  display: block;
}

/* googlemap */
#gmap {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

#gmap iframe, #gmap object, #gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  frameborder: 0;
  border: 0;
  allowfullscreen: "";
}

/* =========================================================
#secFeature
========================================================= */
#secFeature {
  overflow: hidden;
  padding: 50px 0px;
}
@media screen and (max-width: 480px) {
  #secFeature {
    padding: 30px 0px;
  }
}

.secFeature-title {
  margin-bottom: 0.5em;
  color: #004676;
  text-align: center;
  margin-bottom: 0.5em;
}

.featureBox {
  overflow: hidden;
  margin-bottom: 20px;
}

.featureBox .featureBoxImgArea {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .featureBox .featureBoxImgArea {
    height: 50vw;
  }
}
.featureBox .featureBoxImgArea .featureBoxImgArea-inner {
  width: 100%;
  height: 100%;
  position: absolute;
}

.featureBox .imgArea01 {
  background-image: url(../images/secFeature-im01.jpg);
}

.featureBox .imgArea02 {
  background-image: url(../images/secFeature-im02.jpg);
}

.featureBox .imgArea03 {
  background-image: url(../images/secFeature-im03.jpg);
}

.featureBox .imgArea04 {
  background-image: url(../images/secFeature-im04.jpg);
}

.featureBox .featureTxtArea {
  position: relative;
}

.featureBox .featureTxtArea::after {
  background-color: #FAFAFA;
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.featureMidashi {
  display: table;
  background-color: #F0454E;
  padding: 0.5em 2em 0.5em 0;
  position: relative;
  margin-top: -2.2em;
  z-index: 3;
  width: 100%;
}

.featureBox .featureMidashi-num {
  position: relative;
  z-index: 3;
  display: table-cell;
  width: 10%;
}

.featureBox .featureMidashi-num img {
  display: inline-block;
}

.featureBox .featureMidashi-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  z-index: 3;
  display: table-cell;
  vertical-align: middle;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .featureBox .featureMidashi-title {
    font-size: 2.0rem;
  }
}

.featureBox .featureMidashi::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, #f0454e 0%, #f14a4a 24.13%, #f5583e 52.78%, #fb702b 83.62%, #ff801e 100%);
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YwNDU0ZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmODAxZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0454e), color-stop(100%, #ff801e));
  background: -moz-linear-gradient(left, #f0454e, #ff801e);
  background: -webkit-linear-gradient(left, #f0454e, #ff801e);
  background: linear-gradient(to right, #f0454e, #ff801e);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-main',endColorstr='#FF801E' , GradientType=1);
}

.featureBox .featureTxt {
  position: relative;
  padding: 20px 3vw 3vw;
}
.featureBox .featureTxt p {
  position: relative;
  z-index: 3;
}

/* =========================================================
#secContact
========================================================= */
#secContact {
  background-color: #F0454E;
  padding: 50px 0px;
}
@media screen and (max-width: 480px) {
  #secContact {
    padding: 30px 0px;
  }
}

#secContact .secContact-inner {
  max-width: 600px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

#secContact .secContactBox {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

#secContact .secContactTel {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 480px) {
  #secContact .secContactTel {
    font-size: 2.8rem;
    color: #000;
  }
}

/* =========================================================
#pagetop backtotop
========================================================= */
.pagetop {
  width: 3em;
  height: 3em;
  background-color: #F0454E;
  bottom: 30px;
  display: inline-block;
  position: fixed;
  right: 10px;
  transform: translate3d(0px, 50px, 0px);
  transition-duration: 0.3s;
  visibility: hidden;
  z-index: 999;
  padding: 1em;
  line-height: 1;
  border-radius: 1.5em;
  color: #fff !important;
}

.pagetop i {
  text-align: center;
  width: 1em !important;
}

.pagetop:hover {
  background-color: #FFFF00;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.pagetop.backtotop-visible {
  transform: translate3d(0px, 0px, 0px);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  visibility: visible;
}

.pagetop.backtotop-visible:hover {
  background-color: #FFFF00;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* =========================================================
#footer
=========================================================*/
#footer {
  padding: 30px 0;
  background-color: #fff;
}

#footer #footer-logo {
  margin-bottom: 10px;
}

#footer #footer-logo:hover {
  opacity: 0.7;
}

#footer-navi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#footer-navi > li:nth-child(n + 2) {
  padding-left: 1em;
}

#footer-navi > li > a {
  color: #000;
  font-size: 1.2rem;
}

#footer-navi > li > a:hover {
  color: #F0454E;
}

#copy {
  font-size: 12px;
  text-align: center;
  margin-top: 1em;
}

/* =========================================================
.curtainEffect
========================================================= */
.curtainEffect {
  position: relative;
}

.curtainEffect:after, .curtainEffect:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition-property: width;
  transition-duration: .75s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.curtainEffect:before {
  background-color: #F0454E;
  z-index: 4;
  transition-delay: 0.85s;
}

.-color.curtain-sub:before {
  background-color: #FFFF00;
}

.curtainEffect:after {
  background-color: #fff;
  z-index: 5;
  transition-delay: .15s;
}

.curtainEffect-start:after, .curtainEffect-start:before {
  width: 0;
}

.inview, .inview_fadeIn, .inview_fadeInUp, .inview_fadeInRight, .inview_fadeInLeft {
  opacity: 0;
}

.inview.animated, .inview_fadeIn.animated, .inview_fadeInUp.animated, .inview_fadeInRight.animated, .inview_fadeInLeft.animated {
  -moz-animation-duration: 1s !important;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
}

.effect-blur {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  -moz-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.effect-blur-on {
  -moz-animation-name: effectBlur;
  -webkit-animation-name: effectBlur;
  animation-name: effectBlur;
  opacity: 1;
  transition: .8s;
}

@-webkit-keyframes effectBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes effectBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
/* =========================================================
.fixedmenu
========================================================= */
.fixedmenu {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 9999999999;
  width: 100%;
  overflow: hidden;
  display: none;
}

.fixedmenu li {
  margin: 0;
  padding: 0;
  display: table-cell;
  width: 33.333%;
  vertical-align: middle;
  list-style-type: none;
}

.fixedmenu li a i {
  font-size: 20px;
  line-height: 1;
}

.fixedmenu li a {
  padding: 10px 0;
  font-size: 10px;
  font-size: 1rem;
  border: none;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.fixedmenu li a span {
  display: block;
  line-height: 1;
}

/* =========================================================
#fixedside
========================================================= */
#fixedside {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  -webkit-transform: translate(0, -170px);
  transform: translate(0, -170px);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

#fixedside.fixed-menu-visible {
  visibility: visible;
}

#fm-inquiry {
  background: #eee;
  position: absolute;
  width: 300px;
  right: -300px;
  z-index: 60;
}

#fm-partner {
  background: #eee;
  position: absolute;
  top: 156px;
}

#fm-inquiry {
  top: 0;
}

#fm-inquiry {
  background: #f5f5f5;
}

#fmi-clickme,
#fmc-clickme {
  position: absolute;
  top: 0;
  left: -45px;
  height: 175px;
  width: 45px;
  cursor: pointer;
}

#fmi-close,
#fmc-close {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 20px;
}

#fmi-inner,
#fmc-inner {
  float: left;
  width: 100%;
  overflow: hidden;
}

#fmi-mail {
  color: #333;
  padding: 20px 15px 10px;
}

#fmi-mail .fmi-mail-ttl {
  margin: 0 0 20px;
  overflow: hidden;
  list-style: none;
}

#fmi-mail .fmi-mail-ttl li {
  float: left;
  vertical-align: top;
}

#fmi-mail .fmi-mail-ttl li small {
  display: block;
  font-size: 1.2rem;
}

#fmi-mail .fmi-mail-ttl li:nth-child(1) {
  width: 10%;
  margin-right: 5px;
}

#fmi-mail .fmi-mail-ttl li:nth-child(2) {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

#fmi-mail .fmi-mail-bnr {
  overflow: hidden;
  padding: 0 0 0 0;
  list-style: none;
}

#fmi-mail .fmi-mail-bnr a {
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  padding: 1em;
  line-height: 1em;
  font-size: 2rem;
  display: block;
  background-color: #F0454E;
}

.js_isIe #fmi-mail .fmi-mail-bnr a {
  padding: 1em 1em 0.7em;
}

#fmi-mail .fmi-mail-bnr a:hover {
  background-color: #FF801E;
}

#fmi-tel {
  background: #F0454E;
  color: #fff;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}

#fmi-tel p {
  font-size: 1.6rem;
  line-height: 1.2;
}

#fmi-tel p strong {
  font-size: 3.4rem;
  font-family: 'Roboto', sans-serif;
}

#fmi-tel p small {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  #fixedside {
    display: none;
  }
}
