@charset "UTF-8";
/*===============================================
●共通
===============================================*/
/* 打ち消し */
.osaka {
  font-family: "heisei-kaku-gothic-std", sans-serif;
}
.osaka ul {
  margin: 0;
  padding-left: 0;
}
.osaka li {
  list-style: none;
}
.osaka p {
  margin: 0;
}
.osaka h2 {
  color: #333;
}
.osaka h3 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  margin: 0;
}
.osaka address {
  margin-bottom: 0;
}
.osaka table {
  border-collapse: collapse;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (min-width: 960px) {
  .pcNone {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .spNone {
    display: none;
  }
}

.redColor {
  color: #e60012;
}

/* タイトル */
.iw-ttl-side {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .iw-ttl-side {
    padding: 0 4.6rem;
  }
}
.iw-ttl-side::before, .iw-ttl-side::after {
  background-color: #292e49;
}
.iw-ttl-side .title::before, .iw-ttl-side .title::after {
  content: "";
  position: absolute;
  bottom: 40%;
  display: inline-block;
  width: 1em;
  height: 2px;
  background-color: #292e49;
}
@media screen and (max-width: 639px) {
  .iw-ttl-side .title::before, .iw-ttl-side .title::after {
    bottom: 10px;
  }
}
.iw-ttl-side .title::before {
  left: 0.8rem;
  transform: rotate(60deg);
}
@media screen and (max-width: 639px) {
  .iw-ttl-side .title::before {
    left: 0.5rem;
  }
}
.iw-ttl-side .title::after {
  right: 0.8rem;
  transform: rotate(-60deg);
}
@media screen and (max-width: 639px) {
  .iw-ttl-side .title::after {
    right: 0.5rem;
  }
}

/* 丸 */
.circle {
  position: relative;
}
.circle::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -0.2rem;
  margin-right: 0.1rem;
}
@media screen and (max-width: 639px) {
  .circle::before {
    width: 16px;
    height: 16px;
    vertical-align: -0.1rem;
  }
}

/* 電話 */
.telLink {
  color: #000 !important;
  margin-left: 3.5rem;
  position: relative;
}
.telLink:hover {
  text-decoration: none;
}
.telLink:before {
  content: "";
  display: inline-block;
  background: url(../img/tel.svg) no-repeat center center/contain;
  width: 35px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: -2.4rem;
}

/* inner */
.inner01 {
  max-width: 1367px;
  margin: 0 auto;
  box-sizing: border-box;
}

.inner02 {
  max-width: 1040px;
  margin: 0 auto;
}

/* flex */
.flexBox {
  display: flex;
}

/* 料金 */
.price {
  color: #e60012;
  letter-spacing: 0.05rem;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1rem;
  }
}
.price span {
  font-size: 2.25rem;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  margin-right: 0.2rem;
}
@media screen and (max-width: 639px) {
  .price span {
    font-size: 1.7rem;
    margin-right: 0.1rem;
  }
}

/* リンクボタン */
.btn {
  max-width: 490px;
  height: 72px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 36px;
  letter-spacing: 0.075rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .btn {
    height: auto;
    padding: 0.8rem 2em;
  }
}
.btn::after {
  content: "";
  background: url(../img/arrow_red.svg) no-repeat center center/contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 1.8rem;
}
@media screen and (max-width: 639px) {
  .btn::after {
    right: 1rem;
  }
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #fff;
}

.redBtn {
  font-size: 1.25rem;
  background-color: #e60012;
}
@media screen and (max-width: 639px) {
  .redBtn {
    font-size: 1.1rem;
  }
}
.redBtn::after {
  content: "";
  background: url(../img/arrow_red.svg) no-repeat center center/contain;
}

.blackBtn {
  background-color: #000;
}
.blackBtn::after {
  content: "";
  background: url(../img/arrow_black.svg) no-repeat center center/contain;
}

.menuBtn {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .menuBtn {
    padding: 0 5px;
  }
}
.menuBtn:hover:before {
  opacity: 0.8;
}
.menuBtn::before, .menuBtn::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.menuBtn::before {
  border-style: solid;
  border-width: 0 14px 76px 14px;
  border-color: transparent transparent #e0ceae transparent;
  right: -14px;
  top: 0;
}
@media screen and (max-width: 639px) {
  .menuBtn::before {
    border-width: 0 10px 55px 10px;
    right: -10px;
  }
}
.menuBtn::after {
  background: url(../img/check.svg) no-repeat center center/contain;
  width: 83px;
  height: 33px;
  right: -4rem;
  top: -2.2rem;
}
@media screen and (max-width: 639px) {
  .menuBtn::after {
    width: 70px;
    height: 30px;
    right: -0.5rem;
    top: -2.3rem;
  }
}
.menuBtn a {
  width: 100%;
  height: 80px;
  background-color: #e60012;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(-10deg);
  color: #fff;
  font-size: 1.56rem;
  letter-spacing: 0.075rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 639px) {
  .menuBtn a {
    height: 60px;
    font-size: 1.4rem;
  }
}
.menuBtn a > span::before, .menuBtn a > span::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
}
@media screen and (max-width: 639px) {
  .menuBtn a > span::before, .menuBtn a > span::after {
    width: 24px;
    height: 40px;
    top: calc(50% - 20px);
  }
}
.menuBtn a > span::before {
  background: url(../img/fork.svg) no-repeat center center/contain;
  left: 8%;
}
@media screen and (max-width: 639px) {
  .menuBtn a > span::before {
    left: 5%;
  }
}
.menuBtn a > span::after {
  background: url(../img/spoon.svg) no-repeat center center/contain;
  right: 8%;
}
@media screen and (max-width: 639px) {
  .menuBtn a > span::after {
    right: 5%;
  }
}
.menuBtn a .yellowColor {
  color: #fcee21;
}
.menuBtn a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* お申し込みはこちら 追従ボタン */
.entryBtn {
  writing-mode: vertical-rl;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 10;
}
.entryBtn a {
  background-color: #e60012;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.18rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
  position: relative;
  width: 60px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 100;
}
@media screen and (max-width: 639px) {
  .entryBtn a {
    font-size: 1.1rem;
    height: 220px;
    width: 45px;
    padding-bottom: 0.3rem;
  }
}
.entryBtn a::after {
  content: "";
  display: inline-block;
  background: url(../img/entry.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 0.8rem;
  right: 0.5rem;
}
@media screen and (max-width: 639px) {
  .entryBtn a::after {
    bottom: 0.5rem;
    right: 0.3rem;
    width: 14px;
    height: 14px;
  }
}
.entryBtn a:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* fv
---------------------------------------- */
#fv {
  position: relative;
}
@media screen and (min-width: 640px) {
  #fv {
    height: 100vh;
  }
}
@media screen and (max-width: 639px) {
  #fv {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#fv h1 {
  writing-mode: vertical-rl;
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 10;
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}
@media screen and (max-width: 639px) {
  #fv h1 {
    font-size: 1.4rem;
    top: 1rem;
    right: 1rem;
  }
}
#fv h1 > span {
  background-color: #fff;
  display: table;
  margin-left: 1.8rem;
  padding: 1.5rem 0.5rem 0;
  letter-spacing: 0.3rem;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  #fv h1 > span {
    margin-left: 0.8rem;
    padding: 1rem 0.2rem 0;
  }
}
#fv h1 > span:first-of-type {
  padding-bottom: 1rem;
}
@media screen and (max-width: 639px) {
  #fv h1 > span:first-of-type {
    padding-bottom: 0.8rem;
  }
}
#fv .slider {
  width: calc(100% - 377px);
  margin-left: auto;
}
@media screen and (max-width: 639px) {
  #fv .slider {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#fv .slider .image {
  position: relative;
}
#fv .slider .image::after {
  content: "";
  display: inline-block;
  width: 116px;
  height: 32px;
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
}
@media screen and (max-width: 639px) {
  #fv .slider .image::after {
    width: 90px;
    height: 25px;
    left: 1rem;
    bottom: 1rem;
  }
}
#fv .slider .image.fish::after {
  background: url(../img/fish.png) no-repeat center center/contain;
}
#fv .slider .image.meat::after {
  background: url(../img/meat.png) no-repeat center center/contain;
}
#fv .slider img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  #fv .slider img {
    height: calc(100vh - 350px);
  }
}
@media screen and (max-width: 320px) {
  #fv .slider img {
    height: calc(100vh - 160px);
  }
}
#fv #fvText {
  font-weight: 600;
  font-size: 1.3rem;
  max-width: 377px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  #fv #fvText {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 639px) {
  #fv #fvText {
    font-size: 1.1rem;
  }
}
#fv #fvText .image {
  text-align: center;
}
@media screen and (max-width: 639px) {
  #fv #fvText .image {
    width: 45%;
    margin: 0 auto 0.8rem;
  }
}
@media screen and (max-width: 639px) {
  #fv #fvText .image:nth-of-type(2) {
    margin-bottom: 0.4rem;
    margin-top: -0.5rem;
  }
}
#fv #fvText ul {
  text-align: center;
  margin: 25% auto 30%;
}
@media screen and (max-width: 639px) {
  #fv #fvText ul {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 0.5rem;
  }
}
#fv #fvText li {
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 639px) {
  #fv #fvText li {
    font-size: 1.05rem;
  }
}
#fv #fvText li:first-of-type {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 639px) {
  #fv #fvText li:first-of-type {
    margin-bottom: 0.1rem;
  }
}
#fv #fvText .telLink {
  margin-left: 3.5rem;
}
@media screen and (max-width: 639px) {
  #fv #fvText .telLink {
    margin-left: 3rem;
  }
}
#fv #fvText .telLink:before {
  left: -2.4rem;
}
@media screen and (max-width: 639px) {
  #fv #fvText .telLink:before {
    width: 30px;
    left: -2.2rem;
  }
}
#fv .menuBtn {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  #fv .menuBtn {
    max-width: 260px;
  }
}
#fv .menuBtn::before {
  border-width: 0 14px 56px 14px;
  right: -18px;
}
@media screen and (max-width: 639px) {
  #fv .menuBtn::before {
    border-width: 0 10px 42px 10px;
    right: -8px;
  }
}
#fv .menuBtn::after {
  content: none;
}
#fv .menuBtn a {
  height: 60px;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  #fv .menuBtn a {
    height: 45px;
    font-size: 1.25rem;
  }
}
#fv .menuBtn a > span::before, #fv .menuBtn a > span::after {
  width: 20px;
  height: 40px;
  top: calc(50% - 20px);
}
@media screen and (max-width: 639px) {
  #fv .menuBtn a > span::before, #fv .menuBtn a > span::after {
    width: 15px;
    height: 30px;
    top: calc(50% - 15px);
  }
}
#fv .menuBtn a > span::before {
  left: 5%;
}
#fv .menuBtn a > span::after {
  right: 5%;
}

/* スライダーカスマイズ */
.slick-dots {
  bottom: 2rem;
}
@media screen and (max-width: 639px) {
  .slick-dots {
    bottom: 0.5rem;
  }
}
.slick-dots li {
  margin: 0 8px;
}
@media screen and (max-width: 639px) {
  .slick-dots li {
    margin: 0 4px;
  }
}
.slick-dots li button::before {
  font-size: 6rem;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 639px) {
  .slick-dots li button::before {
    font-size: 3rem;
  }
}
.slick-dots li.slick-active button::before {
  opacity: 1;
  color: #f4d5c2;
}

/* 楽膳の美味しい夕食宅配
---------------------------------------- */
#point {
  margin: 6.8rem auto 8rem;
}
@media screen and (max-width: 639px) {
  #point {
    margin: 5.5rem auto 5rem;
  }
}
#point h2 {
  letter-spacing: 0.15rem;
  margin-bottom: 6.8rem;
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 640px) {
  #point h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 639px) {
  #point h2 {
    margin-bottom: 2.5rem;
  }
}
#point .pointBox {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (min-width: 960px) {
  #point .pointBox {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 959px) {
  #point .pointBox {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox .text {
    width: 60%;
  }
}
@media screen and (max-width: 959px) {
  #point .pointBox .text {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 639px) {
  #point .pointBox .text {
    padding-bottom: 0;
  }
}
#point .pointBox .text h3 {
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  color: #595757;
  font-weight: 500;
  font-size: 1.12rem;
  position: relative;
  display: flex;
  align-items: center;
}
#point .pointBox .text h3:before {
  content: "";
  background-color: #333;
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 30px;
  height: 3px;
}
@media screen and (min-width: 960px) {
  #point .pointBox .text h3:before {
    height: 6px;
    bottom: -1.5rem;
  }
}
#point .pointBox .text h3 span {
  background-color: #e60012;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}
@media screen and (max-width: 639px) {
  #point .pointBox .text h3 span {
    width: 20px;
    height: 20px;
    margin-left: 0.3rem;
    font-size: 1rem;
  }
}
#point .pointBox .text h4 {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: bold;
  color: #e60012;
  font-size: 2rem;
  font-size: clamp(1.25rem, 0.3929rem + 2.1429vw, 2rem);
  letter-spacing: 0.125rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}
@media screen and (min-width: 960px) {
  #point .pointBox .text h4 {
    margin: 4rem 0 2rem;
  }
}
@media screen and (max-width: 639px) {
  #point .pointBox .text h4 {
    font-size: 6vw;
    margin: 2.5rem 0 0.8rem;
    letter-spacing: 0.05rem;
  }
}
#point .pointBox .text p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
}
@media screen and (min-width: 960px) {
  #point .pointBox .text p {
    font-size: 1.18rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 639px) {
  #point .pointBox .text p {
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox .image {
    width: 43%;
  }
}
#point .pointBox .image img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(odd) .text {
    left: 46%;
    margin-left: 4%;
    margin-right: 2%;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(even) .text {
    right: 46%;
    margin-right: 4%;
    margin-left: 2%;
  }
}
#point .pointBox:nth-of-type(1)::before, #point .pointBox:nth-of-type(3)::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  background: #fbf5f0;
}
#point .pointBox:nth-of-type(1)::before {
  content: "";
  height: 100%;
  top: -5%;
  transform: skewY(10deg);
}
@media screen and (max-width: 639px) {
  #point .pointBox:nth-of-type(1)::before {
    top: 0;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(1) .text {
    max-width: 615px;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(2) .text {
    max-width: 590px;
  }
}
#point .pointBox:nth-of-type(3)::before {
  content: "";
  height: 90%;
  top: 12%;
  transform: skewY(-10deg);
}
@media screen and (max-width: 639px) {
  #point .pointBox:nth-of-type(3)::before {
    height: 100%;
    top: 8%;
  }
}
#point .pointBox:nth-of-type(3):after {
  content: "";
  position: absolute;
  bottom: 6%;
  right: 0;
  border-style: solid;
  border-width: 65px 450px 65px 0;
  border-color: transparent #dc503c transparent transparent;
  z-index: -20;
}
@media screen and (max-width: 639px) {
  #point .pointBox:nth-of-type(3):after {
    bottom: -4rem;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(3) .text {
    max-width: 475px;
  }
}
#point .pointBox:nth-of-type(4) {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(4) {
    margin-top: 7%;
  }
}
@media screen and (min-width: 960px) {
  #point .pointBox:nth-of-type(4) .text {
    width: 96%;
    margin: 0 2%;
  }
}

/* すきなおかずが毎日選べるのは楽膳だけ
---------------------------------------- */
#menu {
  background-color: #fbf5f0;
  padding-top: 6.25rem;
  padding-bottom: 5rem;
  box-sizing: border-box;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 639px) {
  #menu {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}

#menuContent {
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 639px) {
  #menuContent {
    padding-bottom: 5rem;
  }
}
#menuContent h2 {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #menuContent h2 {
    font-size: 2.1rem;
  }
}
#menuContent h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 5rem;
}
@media screen and (max-width: 639px) {
  #menuContent h2 > span {
    padding: 0 2.5rem;
  }
}
#menuContent h2 > span::before, #menuContent h2 > span::after {
  content: "";
  display: inline-block;
  background: url(../img/lunchbox.svg) no-repeat center center/contain;
  width: 54px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
}
@media screen and (max-width: 639px) {
  #menuContent h2 > span::before, #menuContent h2 > span::after {
    width: 36px;
    height: 25px;
    top: calc(50% - 12px);
  }
}
#menuContent h2 > span::before {
  left: 0;
}
#menuContent h2 > span::after {
  right: 0;
}
#menuContent h3 {
  text-align: center;
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: 0.125rem;
  margin: 3rem 0 0.5rem;
}
@media screen and (max-width: 639px) {
  #menuContent h3 {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
}
#menuContent h3 .redColor {
  padding: 0 2rem;
}
@media screen and (max-width: 639px) {
  #menuContent h3 .redColor {
    padding: 0 0.3rem;
  }
}
#menuContent > p {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.125rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 639px) {
  #menuContent > p {
    font-size: 1.05rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
#menuContent .flexBox {
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  #menuContent .flexBox {
    flex-direction: column;
  }
}
#menuContent .menuBox {
  border: 2px solid #e60012;
  padding: 0.5rem 0.5rem 1rem;
  width: 47.2%;
  box-sizing: border-box;
}
@media screen and (max-width: 639px) {
  #menuContent .menuBox {
    width: 100%;
  }
}
#menuContent .menuBox .image {
  background-color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.5rem;
}
#menuContent .menuBox h4 {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  background: url(../img/ribbon_red.svg) no-repeat center center/contain;
  width: 185px;
  height: 37px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0.15rem;
  box-sizing: border-box;
}
#menuContent .menuBox p {
  font-size: 1.18rem;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  margin: 1.5rem auto 0.8rem;
  max-width: 430px;
  font-weight: 300;
}
@media screen and (max-width: 639px) {
  #menuContent .menuBox p {
    max-width: 100%;
    margin: 1rem auto 0.5rem;
    line-height: 1.5;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 639px) {
  #menuContent .menuBox:first-of-type {
    margin-bottom: 2rem;
  }
}

/* お楽しみ弁当の日・おかずと一緒にお届けします
---------------------------------------- */
#menu .boxList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#menu .box {
  background-color: #fff;
  text-align: center;
  padding: 0.5rem 0 1.5rem;
  margin-bottom: 3.5%;
}
@media screen and (max-width: 639px) {
  #menu .box {
    padding: 0.5rem 0.5rem 1rem;
    box-sizing: border-box;
  }
}
#menu .box h3 {
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  #menu .box h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0;
  }
}
#menu .box h3 span {
  display: block;
  font-size: 1.1rem;
}
#menu .box .manufacturing {
  font-size: 1.12rem;
  letter-spacing: 0.0125rem;
  line-height: 1.9;
}
@media screen and (max-width: 639px) {
  #menu .box .manufacturing {
    font-size: 0.9rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
#menu .box .price {
  margin-top: 0.5rem;
}

/* お楽しみ弁当の日
---------------------------------------- */
#lunchBoxContent {
  margin-bottom: 7rem;
}
@media screen and (max-width: 639px) {
  #lunchBoxContent {
    margin-bottom: 4rem;
  }
}
#lunchBoxContent > p {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.125rem;
  line-height: 1.7;
  text-align: center;
  margin: 2.5rem 0 3rem;
}
@media screen and (max-width: 639px) {
  #lunchBoxContent > p {
    margin: 1.5rem 0 1rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    text-align: justify;
  }
}
#lunchBoxContent .boxList {
  gap: 4%;
}
#lunchBoxContent .box {
  background-color: #fff;
  width: 48%;
}
@media screen and (max-width: 639px) {
  #lunchBoxContent .box {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 639px) {
  #lunchBoxContent .box .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
  }
}
#lunchBoxContent .box .image {
  margin-bottom: 1rem;
}
@media screen and (max-width: 639px) {
  #lunchBoxContent .box:nth-of-type(4) .image {
    margin-top: 0.5rem;
  }
}

/* おかずと一緒にお届けします
---------------------------------------- */
#sideDishContent h2 {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 639px) {
  #sideDishContent h2 {
    margin-bottom: 1.5rem;
  }
}
#sideDishContent .boxList {
  justify-content: center;
  gap: 3.3%;
}
@media screen and (max-width: 639px) {
  #sideDishContent .boxList {
    justify-content: center;
    gap: 3.5%;
  }
}
#sideDishContent .box {
  display: flex;
  flex-direction: column;
  width: 22.5%;
}
@media screen and (max-width: 959px) {
  #sideDishContent .box {
    width: 48%;
  }
}
#sideDishContent .box .text {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
#sideDishContent .box.gramBox p {
  line-height: 1;
  margin-top: 0.5rem;
}
#sideDishContent .box.gramBox .price span {
  font-size: 2rem;
}
@media screen and (max-width: 639px) {
  #sideDishContent .box.gramBox .price span {
    font-size: 1.5rem;
  }
}
#sideDishContent .box.gramBox .gram {
  font-size: 1.18rem;
  letter-spacing: 0.1rem;
  vertical-align: 0.4rem;
  margin-right: 0.3rem;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  #sideDishContent .box.gramBox .gram {
    font-size: 1.1rem;
    vertical-align: 0.25rem;
  }
}
#sideDishContent .box:nth-of-type(2) .image {
  margin-top: 1rem;
}
#sideDishContent .box:nth-of-type(3) .image {
  margin-top: 1rem;
}
@media screen and (max-width: 639px) {
  #sideDishContent .box:nth-of-type(3) .image {
    margin-top: 0;
  }
}
#sideDishContent .caution {
  margin: 0 auto 4.3rem;
  max-width: 770px;
}
#sideDishContent .caution li {
  font-size: 1.06rem;
  line-height: 1.88;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 639px) {
  #sideDishContent .caution li {
    font-size: 0.92rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

/* 高齢者に限らず様々なシーンで喜ばれています。
---------------------------------------- */
#flow {
  overflow-x: hidden;
}

#voice {
  background: url(../img/voice_bg.jpg) no-repeat center bottom/cover;
  padding: 6.25rem 0 13rem;
}
@media screen and (max-width: 639px) {
  #voice {
    padding: 4rem 0;
  }
}
#voice h2 {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 639px) {
  #voice h2 {
    margin-bottom: 2rem;
  }
}
#voice .flexBox {
  gap: 3.5%;
}
@media screen and (max-width: 639px) {
  #voice .flexBox {
    flex-direction: column;
  }
}
#voice .voiceBox {
  background-color: #fff;
  position: relative;
  width: 31%;
  padding: 1.5rem 1.5rem 0;
}
@media screen and (max-width: 639px) {
  #voice .voiceBox {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    padding: 1rem 1rem 0;
  }
}
#voice .voiceBox::before, #voice .voiceBox::after {
  content: "";
  display: inline-block;
}
#voice .voiceBox:before {
  border-top: solid 20px #fff;
  border-right: solid 20px transparent;
  width: calc(100% - 20px);
  height: 0;
  position: absolute;
  right: 0;
  top: 100%;
}
#voice .voiceBox::after {
  background-color: #4f4f4f;
  width: 54px;
  height: 2px;
  position: absolute;
  right: -1.1rem;
  bottom: -0.7rem;
  transform: rotate(-45deg);
}
@media screen and (min-width: 640px) {
  #voice .voiceBox .image {
    float: left;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 639px) {
  #voice .voiceBox .image {
    max-width: 64px;
    width: 20%;
    margin-right: 4%;
  }
}
#voice .voiceBox p {
  font-size: 1.18rem;
  letter-spacing: 0.04rem;
  line-height: 1.78;
  text-align: justify;
}
@media screen and (max-width: 639px) {
  #voice .voiceBox p {
    font-size: 1rem;
    line-height: 1.5;
    width: 75%;
  }
}

/* 週3日からご注文できます！
---------------------------------------- */
#orderBg {
  position: relative;
  background-color: #fbf5f0;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 639px) {
  #orderBg {
    padding-bottom: 4rem;
  }
}
#orderBg::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 100%;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-bottom: 100px solid #fbf5f0;
}
@media screen and (max-width: 639px) {
  #orderBg::before {
    border-bottom: 50px solid #fbf5f0;
  }
}

#order {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 639px) {
  #order {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}
#order h2 {
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 639px) {
  #order h2 {
    margin-bottom: 2rem;
  }
}
#order .priceTitle {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 639px) {
  #order .priceTitle {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
#order .priceTitle,
#order .priceTitle ul,
#order .priceTitle li {
  display: flex;
  align-items: center;
}
#order .priceTitle .around {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.1rem;
  margin-right: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  #order .priceTitle ul {
    flex-direction: column;
  }
}
#order .priceTitle ul li {
  margin-right: 2rem;
  margin-top: 1rem;
}
#order .priceTitle ul li .number {
  background-color: #4f4f4f;
  color: #fff;
  display: inline-block;
  font-size: 1.18rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  padding: 0.45rem 1.22rem 0.25rem;
  margin-right: 0.8rem;
}
#order .orderTable {
  background-color: #fff;
  box-sizing: border-box;
  padding: 1.8rem;
}
@media screen and (max-width: 959px) {
  #order .orderTable {
    padding: 15px 15px 10px;
  }
}
@media screen and (max-width: 959px) {
  #order .orderTable .scrollText {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.88rem;
  }
  #order .orderTable .scrollText::before {
    content: "";
    display: inline-block;
    background: url(../img/scroll.svg) no-repeat center center/contain;
    width: 1.25rem;
    height: 1.24rem;
    margin-right: 0.2rem;
  }
}
#order .orderTable table {
  border: 1px solid #231815;
  border-bottom: none;
  width: 100%;
}
@media screen and (max-width: 959px) {
  #order .orderTable table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
#order .orderTable table tr th,
#order .orderTable table tr td {
  font-size: 1.18rem;
  letter-spacing: 0.1rem;
  padding: 0.5rem;
}
#order .orderTable table tr th {
  border-bottom: 1px solid #231815;
  font-weight: bold;
  width: 15%;
}
@media screen and (max-width: 959px) {
  #order .orderTable table tr th {
    padding: 0.5rem 1rem;
  }
}
#order .orderTable table tr td {
  border-left: 1px solid #231815;
  border-bottom: 1px solid #231815;
  font-weight: 300;
}
@media screen and (max-width: 959px) {
  #order .orderTable table tr td {
    padding: 0.5rem 2rem;
  }
}
#order .orderTable table tr td.color {
  background-color: #fbf5f0;
}
#order .orderTable table tr td.day {
  font-size: 1.18rem;
  letter-spacing: 0.1rem;
  padding-left: 2%;
  width: 36%;
}
#order .orderTable table tr td.cost {
  padding-left: 2%;
  width: 45%;
}
#order .orderTable table tr td .number {
  margin-right: 1rem;
}
#order .orderTable table tr td .price {
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
#order .orderTable table tr td .price span {
  font-size: 1.3rem;
  margin-right: 0;
}
#order .orderTable table tr td .quantity {
  font-size: 1rem;
}
#order .orderTable .flexBox {
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  #order .orderTable .flexBox {
    flex-direction: column;
  }
}
#order .orderTable .circle {
  font-weight: bold;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 639px) {
  #order .orderTable .circle {
    font-size: 1rem;
    line-height: 1.5;
  }
}
#order .orderTable .caution {
  font-weight: 300;
  font-size: 1.06rem;
  letter-spacing: 0.1rem;
}

/* ご注文からお届けまで
---------------------------------------- */
.iw-order {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 639px) {
  .iw-order {
    padding-bottom: 4rem;
  }
}
.iw-order h2 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 639px) {
  .iw-order h2 {
    margin-bottom: 1.5rem;
  }
}
.iw-order .uk-card-body {
  background-color: #fff;
}
@media screen and (min-width: 640px) {
  .iw-order .iw-order-method-wrap h5,
  .iw-order .iw-order-method-wrap .uk-margin-remove {
    font-size: 1rem;
  }
}
.iw-order .iw-order-method-wrap .uk-flex-center {
  align-items: center;
}

/* 配達可能エリア
---------------------------------------- */
#area {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 639px) {
  #area {
    margin-bottom: 4rem;
  }
}
#area h2 {
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 639px) {
  #area h2 {
    margin-bottom: 1.5rem;
  }
}
#area .areaBox {
  background-color: #fff;
  padding: 1.25rem;
  display: flex;
}
@media screen and (max-width: 959px) {
  #area .areaBox {
    flex-direction: column;
  }
}
#area .areaBox .map {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
  height: 0;
}
@media screen and (min-width: 960px) {
  #area .areaBox .map {
    width: 69%;
    max-width: 690px;
    padding-bottom: 48%;
  }
}
@media screen and (max-width: 959px) {
  #area .areaBox .map {
    padding-bottom: 55%;
  }
}
@media screen and (max-width: 639px) {
  #area .areaBox .map {
    padding-bottom: 75%;
  }
}
#area .areaBox .map iframe {
  position: absolute;
  top: -67px;
  left: 0;
  width: 100% !important;
  height: calc(100% + 67px) !important;
}
#area .areaBox .content {
  margin-left: 2.2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  #area .areaBox .content {
    margin-left: 0;
  }
}
#area .areaBox .content ul {
  margin-bottom: 20%;
}
@media screen and (max-width: 959px) {
  #area .areaBox .content ul {
    margin: 1rem 0 1rem;
  }
}
#area .areaBox .content ul li {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}
@media screen and (max-width: 639px) {
  #area .areaBox .content ul li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 639px) {
  #area .areaBox .content ul li::before {
    top: 0.25rem;
  }
}
#area .areaBox .content ul li.circle {
  margin-bottom: 0.5rem;
}
#area .areaBox .content .image {
  max-width: 110px;
  margin: 0 auto 8%;
}
@media screen and (max-width: 959px) {
  #area .areaBox .content .image {
    margin-bottom: 0;
    max-width: 100%;
  }
}

/* お申し込み方法
---------------------------------------- */
#entry h2 {
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 639px) {
  #entry h2 {
    margin-bottom: 1.5rem;
  }
}
#entry .entryBox {
  background-color: #fff;
  padding: 3rem 1.8rem 2rem;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 959px) {
  #entry .entryBox {
    flex-direction: column-reverse;
    padding: 2rem 1.2rem;
  }
}
@media screen and (max-width: 959px) {
  #entry .entryBox .image {
    max-width: 80%;
    margin: 1.5rem auto 0;
  }
}
#entry .entryBox .text {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #entry .entryBox .text {
    max-width: 638px;
  }
}
#entry .entryBox .stepBox {
  background-color: #f7f5b4;
  position: relative;
}
#entry .entryBox .stepBox::before, #entry .entryBox .stepBox::after {
  content: "";
  display: inline-block;
  position: absolute;
}
#entry .entryBox .stepBox::before {
  background-color: #eda79d;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  top: -18px;
  left: -10px;
  z-index: 20;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox::before {
    width: 50px;
    height: 50px;
    top: -10px;
    left: -8px;
  }
}
#entry .entryBox .stepBox::after {
  top: 1.1rem;
  right: -1rem;
  width: 100%;
  border: 1px solid #231815;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox::after {
    right: -0.7rem;
  }
}
#entry .entryBox .stepBox:first-of-type {
  margin-bottom: 2.8rem;
}
#entry .entryBox .stepBox:first-of-type::after {
  height: 97%;
}
#entry .entryBox .stepBox:last-of-type::after {
  height: 92%;
}
#entry .entryBox .stepBox .stepInner {
  position: relative;
  padding: 0.6rem 1rem 1rem 3.75rem;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox .stepInner {
    padding: 0.6rem 0.5rem 1rem 2rem;
  }
}
#entry .entryBox .stepBox .stepInner::before, #entry .entryBox .stepBox .stepInner::after {
  content: "";
  display: inline-block;
  background-color: #f7f5b4;
  position: absolute;
  z-index: 10;
}
#entry .entryBox .stepBox .stepInner::before {
  width: 18px;
  height: 20px;
  left: 6px;
  top: 50px;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox .stepInner::before {
    height: 35px;
    top: 20px;
  }
}
#entry .entryBox .stepBox .stepInner::after {
  height: 10px;
  width: 60px;
  left: 62px;
  top: 16px;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox .stepInner::after {
    width: 70px;
    left: 35px;
  }
}
#entry .entryBox .stepBox h3,
#entry .entryBox .stepBox p {
  position: relative;
  z-index: 30;
}
#entry .entryBox .stepBox h3 {
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 600;
  margin-left: -2.5rem;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox h3 {
    font-size: 1.15rem;
    margin-left: -1rem;
    padding-bottom: 0.5rem;
  }
}
#entry .entryBox .stepBox p {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
#entry .entryBox .stepBox .flexBox {
  justify-content: space-between;
}
@media screen and (min-width: 640px) {
  #entry .entryBox .stepBox .flexBox {
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox .flexBox {
    flex-direction: column;
  }
}
#entry .entryBox .stepBox ul {
  margin-top: 0.2rem;
}
#entry .entryBox .stepBox ul li {
  letter-spacing: 0.05rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox ul li {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
#entry .entryBox .stepBox ul li .telLink {
  font-size: 1.56rem;
  font-size: clamp(1.4rem, 2.3vw, 1.56rem);
  letter-spacing: 0.05rem;
  font-weight: bold;
  margin-left: 3.8rem;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox ul li .telLink {
    font-size: 1rem;
    letter-spacing: 0;
    margin-left: 2.4rem;
  }
}
#entry .entryBox .stepBox ul li .telLink::before {
  left: -2.6rem;
}
@media screen and (max-width: 639px) {
  #entry .entryBox .stepBox ul li .telLink::before {
    width: 22px;
    height: 16px;
    left: -1.7rem;
    top: calc(50% - 8px);
  }
}
#entry .entryBox .stepBox .telLink {
  margin-left: 2.5rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 10;
}

/* お気軽にお問合せください
---------------------------------------- */
#contact {
  background-color: #e0ceae;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 639px) {
  #contact {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 960px) {
  #contact .uk-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#contact h2 {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 639px) {
  #contact h2 {
    margin-bottom: 2rem;
  }
}
#contact .flexBox {
  justify-content: center;
}
@media screen and (max-width: 959px) {
  #contact .flexBox {
    flex-direction: column;
  }
}
#contact .image {
  max-width: 320px;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 639px) {
  #contact .image {
    width: 83.5%;
  }
}
#contact .text address {
  font-weight: 300;
}
#contact .text address ul {
  padding-top: 1%;
  padding-bottom: 1%;
}
#contact .text address ul:first-of-type {
  border-right: 2px solid #000;
  padding-right: 3%;
  margin-right: 3%;
}
@media screen and (max-width: 959px) {
  #contact .text address ul:first-of-type {
    border-right: none;
    border-bottom: 1px solid #000;
    padding: 0 0 1.5rem 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
  }
}
#contact .text address ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#contact .text address ul li:not(.circle) {
  margin-left: 1.2rem;
}
@media screen and (max-width: 639px) {
  #contact .text address ul li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 959px) {
  #contact .text address ul li .pcNone {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  #contact .text address ul li .pcNone {
    display: block;
  }
}
#contact .text address ul li .telLink {
  margin-left: 2.2rem;
}
@media screen and (max-width: 639px) {
  #contact .text address ul li .telLink {
    display: inline-block;
    font-size: 1rem;
  }
}
#contact .text address ul li .telLink::before {
  width: 32px;
  height: 18px;
  left: -2.2rem;
}
#contact .text address ul li .operatingCompany {
  color: #333;
  text-decoration: underline;
}
#contact .blackBtn {
  margin-top: 4.1rem;
}
@media screen and (max-width: 639px) {
  #contact .blackBtn {
    margin-top: 2rem;
  }
}

/* お問合せフォーム
---------------------------------------- */
#formArea #storeTypeBox {
  position: relative;
}
@media screen and (min-width: 640px) {
  #formArea #storeTypeBox th {
    min-width: 169px;
  }
}
#formArea #storeTypeBox td {
  display: flex;
}
@media screen and (min-width: 640px) {
  #formArea #storeTypeBox td {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 959px) {
  #formArea #storeTypeBox td {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 639px) {
  #formArea #storeTypeBox td {
    flex-direction: column;
  }
}
#formArea #storeTypeBox td .storeType:first-of-type {
  margin-right: 1.5rem;
}
@media screen and (max-width: 639px) {
  #formArea #storeTypeBox td .storeType:first-of-type {
    margin-right: 0;
  }
}
#formArea #storeTypeBox td .storeType label {
  cursor: pointer;
}
#formArea #storeTypeBox #StoreType-error {
  position: absolute;
  left: 1.5rem;
  bottom: 1rem;
}
@media screen and (max-width: 639px) {
  #formArea #storeTypeBox #StoreType-error {
    left: 1.8rem;
    bottom: 0.2rem;
  }
}

#resultWrap #contactAddress {
  margin-bottom: 0;
}
@media screen and (max-width: 639px) {
  #resultWrap #contactAddress {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 639px) {
  #resultWrap #contactAddress p,
  #resultWrap #contactAddress a {
    font-size: 1rem;
  }
}
#resultWrap .btnBack {
  margin-top: 3rem;
}
@media screen and (max-width: 639px) {
  #resultWrap .btnBack {
    margin-top: 2.5rem;
  }
}

/* footer
---------------------------------------- */
#incFooter {
  font-weight: 300;
}/*# sourceMappingURL=index.css.map */