@charset "utf-8";
/* CSS Document */
/**-----------基本設定-----------**/
body {
  margin: 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 14px;
}
a {
  text-decoration: none;
  color: #FF8A00;
}
a:hover {
  color: #FFAC4A;
}
img {
  width: 100%;
}
section {}
h2 {
  text-align: center;
  font-size: 40px;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border-bottom: 5px solid #FF8A00;
  margin: 25px 15px 25px;
  padding: 0 0 15px;
}
h3 {
  font-size: 22px;
  margin: 10px 0 10px;
  color: #FF8A00;
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 5px 10px;
}
h4 {
  background: #FF8A00;
  color: #fff;
  padding: 2px 10px;
  font-size: 15px;
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
}
.pc-padding-middle {
  padding: 0 20px;
}
@media screen and (max-width: 599px) {
  .pc-padding-middle {
    padding: 0px;
  }
}
/**-----------パーツ個別設定-----------**/
/*改行用*/
@media screen and (max-width: 599px) {
  .line-feed {
    display: block;
  }
}
/*PC-中央　SP-左寄せ*/
.text {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .text {
    text-align: left;
  }
}
/**マージン付与**/
@media screen and (max-width: 599px) {
  .ps-margin40 {
    margin-top: 40px;
  }
}
/**-----------部品--------------**/
.contactlink {
  display: block;
  text-align: center;
  background: #ffff8b;
  max-width: 250px;
  margin: 30px auto;
  padding: 10px;
  color: #47b359;
  font-weight: bold;
}
/**-----------ヘッダー-------------**/
.head-content {
  height: 75px;
  background: #FF8A00;
  box-shadow: 0px 0px 15px -11px #000;
  position: relative;
}
.logo-img {
  float: left;
  max-width: 206px;
  position: relative;
  top: 12px;
  left: 5px;
}
.discription {
  background: #FF8A00;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 16px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 599px) {
  .head-content {
    height: 60px;
  }
  .logo-img {
    padding: 10px 5px 5px;
    top: 0;
    right: 0;
    max-width: 170px;
  }
  .discription {
    font-size: 12px;
  }
}
@media screen and (max-width: 310px) {
  .logo-img {
    max-width: 155px;
    padding: 13px 5px 5px;
  }
}
/**メインイメージ**/
.siteimage {
  background-image: url("image/top1.png");
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.siteimage-sub1 {
  position: absolute;
  max-width: 481px;
  width: 29vw;
  right: 78px;
  bottom: 0;
}
.siteimage-sub2 {
  position: absolute;
  max-width: 334px;
  width: 19vw;
  right: 28vw;
  top: 4vh;
}
@media screen and (max-width: 910px) {
  .siteimage {
    height: 70vh;
  }
  .siteimage-sub1 {
    max-width: 330px;
    width: 55vw;
    right: 1px;
    bottom: auto;
    opacity: 0.6;
  }
  .siteimage-sub2 {
    width: 30vw;
    right: 17vw;
  }
  .siteimage {
    background-image: url("image/top1-sp.png");
  }
}
@media screen and (max-width: 390px) {
  .siteimage-sub2 {
    width: 55vw;
    right: 6vw;
  }
}
/**グローバルメニュー**/
.modal_wrap input {
  display: none;
}
.modal_overlay {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0)
}
.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_content {
  align-self: center;
  max-width: 100%;
  padding: 30px 10px 22px;
  box-sizing: border-box;
  background: rgba(255, 215, 139, 0.85);
  transform: scale(1.2);
  transition: 0.5s;
  min-height: 100vh;
  height: auto;
}
.close_button {
  position: absolute;
  top: 13px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  right: 15px;
}
.close_button_img {}
.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1);
}
.open_button {
  position: fixed;
  top: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  cursor: pointer;
  right: 15px;
  z-index: 99999;
}
@media screen and (max-width: 599px) {
  .open_button {
    top: 7px;
    right: 7px;
  }
  .close_button {
    top: 7px;
    right: 7px;
  }
}
/**-----------コンテンツ個別設定-----------**/
/**column設定**/
.column2 {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.column2-in {
  width: 50%;
  padding: 15px;
}
.pc-sp-row {
  flex-flow: row-reverse;
}
@media screen and (max-width: 599px) {
  .column2 {
    display: block;
    padding: 15px;
  }
  .column2-in {
    width: 100%;
    padding: 0;
  }
  .pc-sp-row {
    flex-flow: row;
  }
}
@media screen and (max-width: 870px) {
  .column2-early {
    display: block;
    padding: 15px;
  }
  .column2-early-in {
    width: 100%;
    padding: 0;
  }
}
.box1 {
  background: #f4f4f4;
}
.box1 h4 {
  margin: 15px 0 0;
}
.box1 p {
  margin: 0;
  padding: 15px 15px;
}
table {
  width: 100%;
}
th {
  background: #FF8A00;
  color: #fff;
  padding: 13px 5px;
}
td {
  border-bottom: 1px solid #FF8A00;
  padding: 5px;
}
/**-----------footer-----------**/
footer p {
  text-align: center;
  font-size: 12px;
  margin: 0;
  background: #FF8A00;
  color: #fff;
}
/**うぃずっと独自**/
/**モーダル**/
.modal_content ul {
  background: #fff;
  max-width: 300px;
  margin: 10px auto 0;
  padding: 20px 20px 30px;
  border-radius: 10px;
}
.modal_content li {
  list-style: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.modal_content li a {
  display: block;
  border-bottom: 2px dotted #FF8A00;
  line-height: 40px;
  transition: 0.3s;
}
.modal_content li a:hover {
  font-size: 18px;
}
.modal-tel {
  background: #FF8A00;
  display: block;
  max-width: 315px;
  margin: 10px auto 50px;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}
.modal-tel:hover {
  background: #FF7800;
  color: #fff;
}
/**top**/
.business-nav {
  position: fixed;
  top: 90px;
  right: 0;
  max-width: 95px;
  padding: 0;
}
.business-nav a {
  background: #fff;
  display: block;
  padding: 10px 10px 10px 15px;
  border-radius: 10px 0px 0 10px;
  box-shadow: -3px 4px 5px -5px #626262;
  transition: 0.3s;
}
.business-nav a:hover {
  background: #ffefce;
}
.business-nav a img {
  max-width: 89px;
}
.care-btn {}
.delivery-btn {}
.bento-btn {}
@media screen and (max-height:390px) {
  .business-nav {
    position: static;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    background: #ffefce;
  }
  .business-nav a {
    border-radius: 50%;
    text-align: center;
    box-shadow: none;
    margin: 10px;
  }
  .business-nav a:hover {
    background: #fff;
    box-shadow: 0px 0px 7px -4px #626262;
  }
}
@media screen and (max-width:910px) {
  .business-nav {
    position: static;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    background: #ffefce;
    padding: 20px 0px;
  }
  .business-nav a {
    border-radius: 50%;
    box-shadow: none;
    margin: 5px;
    padding: 23px;
    display: block;
    text-align: center;
  }
  .business-nav a img {
    padding: 0;
  }
  .business-nav a:hover {
    background: #fff;
    box-shadow: 0px 0px 7px -4px #626262;
  }
}
#service {
  display: flex;
  justify-content: center;
}
.service-name {
  background: #FF9E2C;
  display: block;
  transition: 0.3s;
}
.service-name:hover {
  opacity: 0.7;
}
.service-name img {
  max-width: 336px;
  display: block;
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
}
.service-img1 {
  background-image: url("image/card1.png");
}
.service-img2 {
  background-image: url("image/card2.png");
}
.service-img3 {
  background-image: url("image/card3.png");
}
.service-img {
  background-size: cover;
  background-position: bottom;
  height: 610px;
}
.service1, .service2, .service3 {
  width: 100%;
}
.service1, .service2 {
  border-right: 2px solid #fff;
}
@media screen and (min-width:1600px) {
  .service-img {
    height: 800px;
  }
}
@media screen and (max-width:910px) {
  .service-img {
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .service-img {
    height: 300px;
  }
}
#company {
  margin-top: 45px;
}
.info-1 {
  display: flex;
  margin: 5px auto;
  padding: 5px;
}
.info-img {
  min-width: 132px;
  max-width: 300px;
}
.info-txt {
  padding: 0 10px;
  margin: 0;
}
.info-txt h4 {
  color: #FF8A00;
  background: none;
  padding: 0;
  margin: 0px auto 8px;
  border-bottom: 1px solid;
}
.info-txt p {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
}
@media screen and (max-width: 400px) {
  .info-1 {
    display: block;
    padding: 5px 0;
  }
  .info-img {
    padding: 10px;
  }
}
/**下層**/
.page-title-img {
  display: flex;
}
.page-title-img-in {
  width: 50%;
  padding: 15px;
}
.page-title-left {
  background-image: url("image/underlayer/title-bgi.png");
  background-position: top;
  background-size: cover;
}
.page-title-left img {
  max-width: 374px;
  display: block;
  margin: 0 auto;
  padding: 66px 10px;
}
.page-title-bento {
  background-image: url("image/underlayer/bento-bgi.png");
  background-position: top;
  background-size: cover;
}
.page-title-care {
  background-image: url("image/underlayer/care-bgi.png");
  background-position: top;
  background-size: cover;
}
.page-title-deli {
  background-image: url("image/underlayer/deli-bgi.png");
  background-position: top;
  background-size: cover;
}
.page-title-bento img, .page-title-care img {
  max-width: 644px;
  margin: 0 auto;
  display: block;
  height: auto;
}
@media screen and (max-width: 599px) {
  .page-title-img {
    display: block;
  }
  .page-title-img-in {
    width: 100%;
    padding: 0;
    display: flex;
    position: relative;
    z-index: -1;
    top: -2px;
    align-items: flex-start;
  }
  .page-title-left img {
    max-width: 300px;
    padding: 15px 0px;
    height: auto;
  }
  .page-title-bento, .page-title-care {
    padding: 30px 0 !important;
  }
  .page-title-deli {
    min-height: 225px;
  }
}
.page-bgi {
  background-image: url("image/underlayer/bgi.png");
  background-size: contain;
  background-position: top;
}
@media screen and (max-width: 599px) {
  .page-bgi {
    background-image: url("image/underlayer/bgi-sp.png");
    background-size: contain;
    background-position: top;
  }
}
.page-box1 {
  padding: 5px 15px 25px;
  border-bottom: 2px solid #FF8A00;
  margin: 10px 20px;
}
.page-box2 {
  padding: 15px 25px;
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px -5px #000;
}
@media screen and (max-width: 599px) {
  .page-box2 {
    margin: 20px;
  }
}
/**bento**/
.list-box1 {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.list-box1 li {
  background: #FF8A00;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 23px;
  padding: 12px;
  border-radius: 50%;
  margin: 0px 3px;
}
.tel-banner {
  transition: 0.3s;
}
.tel-banner:hover {
  opacity: 0.8;
}
.dl-btn, .dl-btn2 {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  display: block;
  text-align: center;
  border-radius: 9px;
  transition: 0.3s;
}
.dl-btn {
  background: #FF8A00;
  max-width: 535px;
  margin: 35px auto 10px;
  padding: 20px 10px;
}
.dl-btn:hover {
  opacity: 0.5;
  color: #fff;
}
.dl-btn2 {
  background: #A6A6A6;
  max-width: 535px;
  margin: 10px auto;
  padding: 10px 10px;
}
.dl-btn2:hover {
  opacity: 0.5;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .dl-btn {
    margin: 35px 20px 10px;
  }
  .dl-btn2 {
    margin: 10px 20px;
  }
}
/**care**/
.care-img2 {
  background-image: url("image/underlayer/care-2.png");
}
.care-img3 {
  background-image: url("image/underlayer/care-3.png");
}
.care-img2, .care-img3 {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
}
@media screen and (max-width: 599px) {
  .care-img2 {
    background-image: url("image/underlayer/care-2-sp.png");
  }
  .care-img3 {
    background-image: url("image/underlayer/care-3-sp.png");
  }
  .care-img2, .care-img3 {
    background-attachment: scroll;
  }
}
/**deli**/
.q-and-a {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}
.qatitle {
  padding: 0px 10px 0px 0;
  font-size: 30px;
  line-height: 30px;
}
.qh3 {}
.qatext {
  padding: 5px 15px;
  margin-bottom: 30px;
}