@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;1,300;1,500&display=swap');


/* Firefox, Opera, Safari */
/*   @font-face {
  font-family: futura PT;
  src: url(../font/futur.ttf) format(”truetype”);
  } */
/* スムーススクロール設定 */
html {
  scroll-behavior: smooth;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.wrapper {
  overflow-x: hidden;
}

.mt10 {
  margin-top: 10px;
}

.mt30 {
  margin-top: 30px;
}

.underline {
  text-decoration: underline;
}

.pc-none {
  display: none;
}

.pc-none2 {
  display: none;
}

/* ヘッダー */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header>.container {
  height: 100px;
  display: flex;
  align-items: center;
  max-width: none;
  padding: 0 60px;
}

/* ロゴ */
.area_logo_header .logo {
  display: block;
}

.area_logo_header img {
  height: 60px;
  vertical-align: bottom;
  transition: all 0.3s;
}

/* logoがhoverでちょっと大きくなる */
.area_logo_header img:hover {
  transform: scale(1.1);
}

/* ヘッダーナビ */
.nav_header {
  margin: 0 0 0 auto;
}

.list_nav_header {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}

.list_nav_header>li {
  padding: 0 15px;
}

.list_nav_header a {
  color: #fff;
  font: 400 18px/1em 'Poppins', 'noto sans japanese', sans-serif;
  transition: 0.3s;
  /* hover delay */
}

/* hover */
.list_nav_header a:hover {
  color: #e6d23c;
  background: #e40177;
}

[class*="btn_ico"] {
  color: #fff;
  font: 400 18px/1em 'Poppins', 'noto sans japanese', sans-serif;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 30px 0 60px;
  background: #e40177;
  box-shadow: 0px 7px 6px -4px rgba(16, 61, 72, .2);
  border-radius: 5px;
  position: relative;
}

[class*="btn_ico"]:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

[class*="btn_ico"][class*="mail"]:before {
  background: url(../img/ico/ico_mail.svg);
}

[class*="btn_ico"][class*="webaccess"]:before {
  background: url(../img/ico/ico_webaccess.svg);
}

/* [class*="btn_ico"][class*="bike"]:before {
  background: url(../img/ico/ico_bicycle.svg);
} */

/*　フリマリンク　*/
span {
  color: blue;
  font-weight: 300;
}

span:hover {
  color: #e40177;
  font-weight: 400;
}

/*　バーガー　*/

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #e40177;
  margin: 5px;
  transition: 0.5s ease;
}

.nav-active {
  transform: translateX(0%) !important;
}


/* バーガーメニューアニメーション*/
@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(405deg) translate(-5px, -6px);
}


/* トップビュー */
.area_top_view {
  background: url(../img/bg/bg_view.jpg) no-repeat bottom center;
  background-size: cover;
}

.area_top_view>.container {
  height: 600px;
  /* height: 700px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.area_top_view img {
  height: 60px;
  vertical-align: bottom;
}

.area_top_view .ttl {
  color: #fff;
  font: 300 26px/1em 'Poppins', 'noto sans japanese', sans-serif;
  letter-spacing: .03em;
  margin: 20px 0 0;
  padding: 0 0 0 40px;
  position: relative;
  z-index: 1;
}

.area_top_view .ttl:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url(../img/ico/ico_bicycle.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* エリア_ホーム */
[class*="area_home"] {
  padding: 80px 0 120px;
}

/* ヘッド */
.head_home {
  margin: 0 0 100px;
  display: flex;
  justify-content: center;
}

.head_home .ttl {
  font: 500 56px/1em 'Poppins', 'noto sans japanese', sans-serif;
  padding: 0 0 12px;
  position: relative;
}

.head_home .ttl:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #e40177;
  position: absolute;
  bottom: 0;
  left: 0;
}



/* 1分割レイアウト */
.layout_1_div {
  justify-content: center;
  flex-direction: column;
}

/* .layout_1_div > div {
     width: 100%;
     padding: 10 0px;
} 
 */

/* 2分割レイアウト */
.layout_2_div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -40px;
}

.layout_2_div>div {
  width: 50%;
  padding: 0 40px;
}

/* テキスト_ホーム */
.text_home .ttl {
  font: 500 32px/1em 'Poppins', 'noto sans japanese', sans-serif;
  margin: 30px 0 20px;
}

.text_home .description {
  font: 300 20px/1.8em 'Poppins', 'noto sans japanese', sans-serif;
}

.text_home .caption {
  font: 200 16px/1.2em 'Poppins', 'noto sans japanese', sans-serif;
  margin-top: 10px;
}

.text_home .payment {
  font: 300 18px/1.2em 'Poppins', 'noto sans japanese', sans-serif;
  margin-top: 10px;
}


.text_home .order_img img {
  box-shadow: none;
  width: 100%;
  margin: 20px 0 0;
  display: flex;
  /*   flex-direction: column;
  align-items: center; */
}

.text_home .btnarea {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
}


/* バックグラウンド */
.bg_black {
  color: #fff;
  background: #000;
}


/* Santasan自転車館とは */
/* .area_home_about img {
  transform:scale(1.1);
  transform-origin: center center;
} */

/* Santasan自転車館とは */
.area_home_about .kite_img {
  margin-bottom: 20px;
}

.kitesanta {
  margin-top: 50px;
}


/* 特徴 */
.list_feature {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.list_feature>li {
  width: 33.3333%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list_feature .img {
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}

.list_feature .img:before {
  content: "";
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: red;
  box-shadow: 0px 2px 12px 2px rgba(245, 39, 156, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.list_feature img {
  width: 80px;
  height: 80px;
  vertical-align: bottom;
}

.list_feature .ttl {
  font: 500 28px/1em 'Poppins', 'noto sans japanese', sans-serif;
  margin: 0 0 30px;
}

.list_feature .description {
  font: 200 16px/2em 'Poppins', 'noto sans japanese', sans-serif;
}


/* ラインナップイメージ */
/* .area_home_lineup item_img {
  box-shadow: 0px 16px 6px -8px rgba(16,61,72,.2);
} */

/* 看板イメージ */
.area_home_about img {
  box-shadow: 0px 16px 6px -8px rgba(16, 61, 72, .2);
  border-radius: 5px;
}

.area_home_lineup img {
  box-shadow: 0px 16px 6px -8px rgba(16, 61, 72, .2);
  border-radius: 5px;
}

/* アウトレット */
.outlet-b {
  margin-bottom: 100px;
}

/* インナーページ */
.inner-page {
  margin-top: 100px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 300px;
  text-align: center;
}

.inner-mv {
  height: 220px;
  background: url(../img/img/bg-shopinfo.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.inner-page-title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 45px;
  letter-spacing: .05em;
  font-weight: 900;
  text-shadow: 3px 4px 3.5px #000;
  width: 100%;
}

.inner-container {
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 50px;
}

.inner-container-title {
  background: #E40177;
  display: inline-block;
  color: #fff;
  font-weight: 900;
  font-size: 35px;
  padding: 5px 20px;
}

.inner-container-title2 {
  margin-bottom: 30px;
}

.inner-container-title2 a {
  font-weight: 900;
  font-size: 35px;
  padding: 0 30px;
  background: linear-gradient(transparent 50%, #D9D9D9 50%);
}

.inner-page-link {
  text-decoration: underline;
  font-weight: 900;
}

/* トップページ販売店舗リンク */
.shopinfo-link {
  width: 70%;
  margin: 0 auto 50px;
}

.shopinfo-link img,
.shopinfo-link picture {
  box-shadow: none;
}

/* 販売店舗一覧 */
.shopinfo-menu {
  margin-bottom: 200px;
}

.shopinfo-menu-title {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-left: 84px;
}

.shopinfo-menu-title::before {
  position: absolute;
  content: '';
  display: block;
  width: 84px;
  height: 84px;
  background-image: url(../img/img/icon-search.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.shopinfo-menu-title,
.shopinfo-menu li a {
  font-weight: 900;
  font-size: 35px;
}

.shopinfo-menu {
  margin-bottom: 100px;
}

.shopinfo-menu li a {
  background: #454545;
  display: inline-block;
  height: 100px;
  max-width: 500px;
  width: 90%;
  padding: 20px 0px;
  margin-bottom: 30px;
  border-radius: 9999px;
  color: #fff;
}

.shopinfo-menu li a:hover {
  background: #000;
}

.shopinfo {
  margin-bottom: 150px;
}

.shopinfo-box {
  padding-bottom: 150px;
  padding-top: 150px;
  border-top: 1px solid #000;
}

.shopinfo-box:first-of-type {
  border: none;
  padding-top: 0;
}

.shopinfo-name {
  font-weight: 900;
  font-size: 35px;
  display: flex;
  flex-direction: column;
}

.shopinfo-name b {
  font-weight: 900;
}

.shopinfo-name small {
  margin-top: -20px;
  font-size: 25px;
}

.shopinfo-fix {
  background: #454545;
  display: inline-block;
  height: 50px;
  max-width: 300px;
  width: 90%;
  padding: 5px 0;
  margin-bottom: 20px;
  border-radius: 9999px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.shopinfo-add {
  text-align: left;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 13px;
}

.shopinfo-caution {
  margin-bottom: 30px;
}

.shopinfo .g-map {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}

.shopinfo .g-map iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.shopinfo-table-title {
  font-weight: 900;
  font-size: 25px;
}

.shopinfo-table {
  margin: 0 auto 20px;
  border: #333 solid 2px;
}

.shopinfo-table-th {
  font-size: 30px;
  border-bottom: #333 solid 2px;
}

.shopinfo-table th {
  background: #D9D9D9;
  border-right: #333 solid 2px;
  padding: 0 20px 0 20px;
  font-weight: 900;
  width: 25%;
  text-align: center;
}

.shopinfo-table th b {
  font-weight: 900;
  font-size: 30px;
}

.shopinfo-table td {
  border-right: #333 solid 2px;
  font-weight: 900;
  font-size: 30px;
}

.shopinfo-text {
  font-size: 18px;
}

.btn-shopinfo a {
  background: #454545;
  display: inline-block;
  height: 100px;
  padding: 20px 50px 0px 130px;
  border-radius: 9999px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  position: relative;
}

.btn-shopinfo a::before {
  position: absolute;
  content: '';
  display: block;
  width: 70px;
  height: 70px;
  background-image: url(../img/img/icon-cart.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
}

.btn-shopinfo a:hover {
  background: #000;
}


/* 閉店のお知らせ */
.closing-info {
  max-width: 1080px;
  width: 90%;
  font-size: 28pt;
  line-height: 3;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 100px;
}

.closing-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 50px;
}


/* 対応エリアイメージ */
.area_home_area img {
  box-shadow: 0px 16px 6px -8px rgba(16, 61, 72, .2);
  border-radius: 5px;
}

/* 営業時間 */
.area_home_area .biz-hour {
  margin-top: 20px;
  width: 100%;
  /* margin: 10px; */
  display: block;
  border-collapse: collapse;
  /* overflow-x: scroll;で、
  スマホ画面幅に表が入りきらない場合は
  横スクロールする（ほとんどのスマホOK） */
  /*   overflow-x: scroll; */
  font: 200 16px/2em 'Poppins', 'noto sans japanese', sans-serif;
}

.area_home_area .biz-hour th,
.biz-hour td {
  padding: 10px;
  text-align: center;
  /* 枠線の色はキーカラーに統一　#e40177 */
  border: 1px solid #e40177;
}

/* 最上段の表の見出し。background-colorは同系色に調整 */
.area_home_area .biz-hour th {
  background-color: pink;
  font-weight: normal;
}

/* 「土」の文字色 */
/* .area_home_area .biz-hour th.sat {
  color: #3db2da;
}　*/

/* 「日」の文字色 */
.area_home_area .biz-hour th.sun {
  color: #f00;
}

/* 営業日カレンダーNEW【html用】 */
.calender_box table {
  width: 100%;
  border: #333 solid 1px;
}

.calender_box:nth-of-type(2) {
  margin-top: 50px;
}

.calender_title {
  font-weight: bold;
  font-size: 24px;
}

.calender_box table th {
  font-weight: bold;
}

.calender_box table th,
.calender_box table td {
  padding: 5%;
  text-align: center;
  border: #333 solid 1px;
  white-space: nowrap;
}

.calender_box table th {
  font-weight: 900;
}

.bg_red {
  background: darksalmon;
}

.teikyu {
  color: darksalmon;
}

.red {
  color: #f00;
}

.blue {
  color: #3db2da;
}

.gray {
  color: gray;
}

.calender_box p {
  font-weight: bold;
  font-size: 24px;
}

.calender_box-p {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}

/* 地図 */
/* .area_home_shopinfo .gmap {
  height: 0;
  overflow: hidden; */
/*   padding-bottom: 56.25%;
  padding-bottom: 100%;
  position: relative;
}

.area_home_shopinfo .iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
} */

/* アウトレットページ */
.inner-header {
  background: #000;
}

.outlet {
  margin-top: 100px;
}

.outlet-img {
  margin-bottom: 50px;
}

.outlet-text {
  max-width: 450px;
  width: 95%;
  margin: 0 auto;
}

.outlet-text p {
  margin-bottom: 30px;
}

.outlet-text span {
  font-size: 30px;
  color: #000;
}

/* フッター */
footer>.container {
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* snsリスト */
.list_sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -10px;
}

.list_sns>li {
  padding: 0 10px;
}

.list_sns a {
  display: block;
  width: 40px;
  height: 40px;
  background: #e40177;
  border-radius: 50%;
  position: relative;
}

.list_sns a:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_sns .twitter a:before {
  background: url(../img/ico/ico_sns_twitter.svg);
}

.list_sns .youtube a:before {
  background: url(../img/ico/ico_sns_youtube.svg);
}

.list_sns .instagram a:before {
  background: url(../img/ico/ico_sns_instagram.svg);
}

.list_sns .facebook a:before {
  background: url(../img/ico/ico_sns_facebook.svg);
}


.copyright {
  font: 300 14px/1em 'Poppins', 'noto sans japanese', sans-serif;
  margin: 30px 0 0;
}

/* Add Cart */
.addCart {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 5px 30px !important;
  background: #fd330d;
  /* ボタンの色指定*/
  color: #fff;
  /* ボタンの文字色指定*/
  font-size: 18px;
  border: solid #fd330d;
  line-height: 2;
  font-weight: bold;
  cursor: pointer;
}

.cart {
  text-align: center;
}

.btn {
  margin: 0 auto;
}

.btn p {
  text-align: center;
}

.btn a {
  display: inline-block;
  width: 30%;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  line-height: 2;
  font-weight: bold;
  background: #e40177;
  padding: 10px 0;
  cursor: pointer;
}



/* 戻るボタン */
.gotop {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font: 300 12px/1em 'Poppins', 'noto sans japanese', sans-serif;
}

.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #e40177;
  border-right: 2px solid #e40177;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}

.gotop:hover {
  opacity: 1;
}



/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .list_nav_header a {
    font: 400 15px/1em 'Poppins', 'noto sans japanese', sans-serif;
    /* width: 55%; */
  }
}

@media screen and (max-width: 768px) {
  /* body {
    display: none;
  } */

  .pc-none {
    display: block;
  }

  header>.container {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 30px;
  }

  .container {
    max-width: 768px;
    padding: 0 10px;
    margin: 0 auto;
  }

  .area_top_view .ttl {
    color: #fff;
    font: 400 24px/1em 'Poppins', 'noto sans japanese', sans-serif;
    letter-spacing: .01em;
    margin: 20px 0 0;
    padding: 0 0 0 40px;
  }

  /* テキスト_ホーム_スマホ文字調整 */
  .text_home .ttl {
    font: 400 24px/1.2em 'Poppins', 'noto sans japanese', sans-serif;
    margin: 20px 0 20px;
    padding: 10px 0 0 0;
  }

  .text_home .description {
    font: 300 16px/1.2em 'Poppins', 'noto sans japanese', sans-serif;
  }

  .text_home .payment {
    font: 300 16px/1.2em 'Poppins', 'noto sans japanese', sans-serif;
    margin-top: 5px;
  }

  /* 注文バナー大きさ調整 */
  .text_home .order_img img {
    box-shadow: none;
    width: 100%;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* リンクリボン */
  .text_home .btnarea {
    margin: 30px 0 0;
    display: flex;
    align-items: center;
  }

  .list_nav_header {
    /* display: flex; */
    /* position: absolute; */
    position: fixed;
    right: 0;
    height: 90vh;
    top: 10vh;
    background-color: #333;
    flex-direction: column;
    align-items: center;
    width: 60%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 10;
    opacity: .9;
  }

  .list_nav_header>li {
    margin-top: 40px;
    opacity: 0;
  }

  .burger {
    display: block;
  }


  /* ヘッド スマホ*/
  .head_home {
    margin: 0 0 50px;
    display: flex;
    justify-content: center;
  }

  .head_home .ttl {
    font: 400 24px/1em 'Poppins', 'noto sans japanese', sans-serif;
    padding: 0 0 12px;
    position: relative;
  }

  .head_home .ttl:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #e40177;
    position: absolute;
    bottom: 0;
    left: 0;
  }


  /* 2分割レイアウト解除 */
  .layout_2_div {
    flex-direction: column;
  }

  .layout_2_div>div {
    width: 90%;
    padding: 10 0px;
  }

  /* エリア_ホーム_スマホ用 */
  [class*="area_home"] {
    padding: 10px 0 20px;
  }

  /* 特徴スマホ用 */
  .list_feature {
    display: flex;
    flex-direction: column;
  }

  .list_feature>li {
    width: 100%;
    padding: 0 10px;
    margin: 0 0 30px;
    flex-direction: column;
    align-items: center;
  }

  .list_feature .img {
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
  }

  .list_feature .ttl {
    font: 400 24px/1em 'Poppins', 'noto sans japanese', sans-serif;
    margin: 0 0 30px;
  }

  .list_feature .description {
    font: 300 16px/1.3em 'Poppins', 'noto sans japanese', sans-serif;
    margin: 0 0 30px;
    padding: 0 30px;
  }

  /* スマホ地図 */
  .area_home_shopinfo .gmap {
    height: 0;
    overflow: hidden;
    /*  padding-bottom: 56.25%; */
    padding-bottom: 75%;
    position: relative;
  }

  .area_home_shopinfo .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }

  /* Add Cart responsive*/
  .addCart {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    padding: 5px 30px !important;
    background: #fd330d;
    /* ボタンの色指定*/
    color: #fff;
    /* ボタンの文字色指定*/
    font-size: 16px;
    border: solid #fd330d;
    line-height: 1.5;
    font-weight: bold;
    cursor: pointer;
  }

  /* トップへ戻るのレスポンシブ対応 */
  .gotop {
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    opacity: 1;
    border: none;
    background: none;
    bottom: 15px;
    right: 15px;
  }

  .gotop::before {
    bottom: 0;
  }

  /* トップページ販売店舗リンク */
  .shopinfo-link {
    width: 90%;
  }

  /* インナーページ */
  .shopinfo-text {
    font-size: 1.6rem;
  }

  /* 閉店のお知らせ */
  .closing-info {
    font-size: 12pt;
  }

  .closing-title {
    font-size: 30px;
  }

}

/* スマホだと電話リンク_レスポンシブ */
@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media(max-width: 499px) {

  .btn a {
    width: 90%;
  }

  .pc-none2 {
    display: block;
  }

  /* 営業日カレンダーNEW */
  .calender_box table {
    width: 100%;
  }

  .calender_box table th,
  .calender_box table td {
    padding: 2%;
  }

  /* インナーページ */

  .inner-page {
    margin-top: 80px;
  }

  .inner-page-title {
    font-size: 30px;
  }

  /* 販売店舗一覧ページ */
  .shopinfo-menu-title {
    font-size: 25px;
    padding-left: 42px;
  }

  .shopinfo-menu li a {
    font-size: 30px;
  }

  .shopinfo-menu-title::before {
    width: 42px;
    height: 42px;
  }

  .shopinfo-box {
    padding-bottom: 50px;
    padding-top: 30px;
  }

  .shopinfo-table th b {
    font-size: 20px;
  }

  .btn-shopinfo a {
    height: 80px;
    padding: 20px 50px 0px 110px;
    font-size: 20px;
  }

  .btn-shopinfo a::before {
    width: 70px;
    height: 70px;
    background-image: url(../img/img/icon-cart.png);
    background-size: 70%;
    top: 65%;
    left: 50px;
  }

}