@charset "UTF-8";
/*------------------------------------------*/
/*common
/*------------------------------------------*/
html {
  background: #fffae3;
}

body {
  max-width: 828px;
  margin: 0 auto;
}

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

.main {
  margin: 0 auto;
}

.contents {
  margin: 0 auto;
}

.contents p {
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 5%;
  color: #fff;
  margin-top: -50px;
}

.contents p.under {
  padding: 20px;
  background: #fff;
  color: #333;
  margin-top: 0;
}

/*------------------------------------------*/
/*schedule
/*------------------------------------------*/
.schedule {
  text-align: center;
  background: #ffecb4;
}

/* サムネイル */
.thumbnail {
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 81.76%;
  margin-left: 3%;
}

.thumbnail:hover {
  transform: scale(1.03);
}

/* ライトボックス背景 */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 1rem;
  left: 0;
  box-sizing: border-box;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

/* 表示する画像 */
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  margin: auto;
  display: block;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* アニメーションON時 */
.lightbox.show .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

/* 閉じるボタン */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 80%;
  }
  .lightbox .close {
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
  }
}
/*------------------------------------------*/
/*cv area
/*------------------------------------------*/
.cv-area {
  text-align: center;
  padding: 6% 0;
}
.cv-area.first {
  background: #ffecb4;
}
.cv-area.second {
  background: #fffd1f;
  padding-bottom: 8%;
}
.cv-area .txt_moshikomi {
  width: 55.56%;
  margin-bottom: 3%;
}
.cv-area .btn_moshikomi {
  transition: 0.3s;
}
.cv-area .btn_moshikomi:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.cv-area .cv_btn {
  margin-bottom: 3%;
  display: inline-block;
  width: 82.85%;
}
.cv-area .txt_odenwa {
  width: 34.54%;
  margin-bottom: 1%;
}
@media (min-width: 768px) {
  .cv-area .txt_odenwa {
    margin-bottom: 3%;
  }
}
.cv-area p {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.cv-area p a img {
  width: 58vw;
  max-width: 480px;
}

/*------------------------------------------*/
/*shop info
/*------------------------------------------*/
#info {
  padding: 8% 0 28%;
}
@media (min-width: 768px) {
  #info {
    padding-bottom: 18%;
  }
}
#info h2 {
  text-align: center;
  margin-bottom: 6%;
}
#info h2 img {
  width: 85.99%;
}
#info .shop-item {
  padding: 0 7.25%;
  margin-bottom: 8%;
}
@media (min-width: 768px) {
  #info .shop-item {
    margin-bottom: 4%;
  }
}
#info .shop-item h3 {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}
#info .shop-item .tel {
  font-weight: 900;
  color: #f2334e;
}
#info .shop-item .tel span {
  font-size: 18px;
}
#info .shop-item .tel a {
  font-size: 28px;
  color: #f2334e;
  text-decoration: none;
}
#info .shop-item .add {
  margin-bottom: 1%;
}
#info .shop-item dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#info .shop-item dl dt {
  background: #017300;
  width: 16.8%;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  text-align: center;
  padding: 1% 0;
  margin-bottom: 1%;
}
#info .shop-item dl dd {
  width: 81%;
  padding-top: 0;
  margin-left: 2.2%;
  margin-bottom: 1%;
}
@media (min-width: 768px) {
  #info .shop-item dl dd {
    padding-top: 0.5%;
  }
}
#info .shop-item dl dd.two {
  width: 25%;
}
#info .map {
  text-align: center;
}
#info .map iframe {
  margin: auto;
  height: 300px;
}
@media (min-width: 768px) {
  #info .map iframe {
    height: 400px;
  }
}

/*------------------------------------------*/
/*footer
/*------------------------------------------*/
/*------------------------------------------*/
/*page_top_button
/*------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 74px;
  right: calc(50% - 404px);
  font-size: 70%;
  font-weight: 800;
  z-index: 2;
}

@media (max-width: 827px) {
  #page-top {
    right: 10px;
  }
}
#page-top.higher {
  bottom: 195px;
}

#page-top a {
  background: #fff;
  opacity: 0.5;
  text-decoration: none;
  color: #333;
  width: 80px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border: solid 1px #777;
  border-radius: 5px;
}

/*------------------------------------------*/
/*fixed
/*------------------------------------------*/
.fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 1;
  max-width: 828px;
}

.fixed p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #9ecc03;
  padding: 4px 0 0;
  font-size: 1.5rem;
}

.fixed ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.fixed ul li {
  width: 100%;
  box-sizing: border-box;
  border-top: solid 1px #fff;
}
.fixed ul li:last-of-type a {
  background: #9ecc03;
}

.fixed li a {
  display: block;
  background: #00741c;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 20px 0 20px 10px;
  box-sizing: border-box;
}

.fixed li li a {
  padding: 10px 0 10px 10px;
  height: inherit;
}

.fixed li:not(:last-of-type) {
  border-right: solid 1px #fff;
}

.fixed li a:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  right: 4%;
  transform-origin: center center;
  transform: translateY(-50%) rotate(-45deg);
}

.fixed li a.tel_tap:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_tel.svg) no-repeat center/contain;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  #page-top {
    bottom: 75px;
  }
  .fixed p {
    font-size: 1.1rem;
    padding: 2px 0 0;
  }
  .fixed ul {
    flex-wrap: wrap;
  }
  .fixed ul li {
    width: 50%;
  }
  .fixed ul li a {
    padding: 15px 0 15px 10px;
  }
  .fixed li:nth-child(2) {
    border-right: none;
  }
  .fixed li a {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .fixed li li a {
    font-size: 1rem;
    padding: 10px 0 10px 6px;
  }
  .sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */