@charset "UTF-8";

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  width: 100%;
  height: 100%;
  margin: 0px;
  font-size: 0.8rem;
  background: #fff;
  position: relative;
  min-height: 100%;
  color: #6c272d;
  letter-spacing: 0.03em;
  line-height: 1.8em;
}

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

a:hover {
  color: #00838f;
}

a img {
  opacity: 1;
}

a img:hover {
  opacity: 0.77;
}

p {
  width: 100%;
}

hr {
  border: 1px dashed #6c272d;
  margin-bottom: 30px;
}

#new_video {
  width: 90%;
  margin: 5% auto;
}

#new_video ul {
  width: 100%;
  list-style-type: none;
  overflow: hidden;
}

#new_video ul li {
  width: 30%;
  margin-right: 5%;
  float: left;
}

#new_video ul li:last-child {
  margin-right: 0;
}

#new_video ul li video {
  width: 100%;
}

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

@media screen and (max-width: 750px) {
  p {
    width: 95%;
  }

  #new_video ul li {
    width: 100%;
    float: none;
  }
}

/* header */
.header {
  width: 100%;
  display: block;
  background: #FAF8F8;
  padding-top: 25px;
  position: fixed;
  z-index: 100;
}

.header_wrap {
  width: 960px;
  max-width: 100%;
  color: #6c272d;
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.header_logo {
  padding: 0px 5px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  float: left;
  display: flex;
  align-items: baseline;
}

.header_logo div {
  padding-left: .5rem;
}

.header_logo h1 {
  float: left;
  margin-top: 0px;
}

.header_list {
  width: 170px;
}

.header_list li {
  list-style: none;
  float: left;
}

.vani_tel {
  font-family: 'Arvo', serif;
  font-size: 1.3rem;
  color: #e4007f;
}

.header_txt {
  display: block;
}

@media screen and (max-width: 750px) {
  .header_wrap {
    text-align: center;
    margin-bottom: 0;
  }

  .header_logo {
    display: block;
    float: none;
  }

  .header_logo h1 {
    float: none;
    height: 75px;
  }

  .header_txt {
    display: none;
  }
}

/* header_grid_2025/04/28 編集分 */

@media (max-width:600px) {
  .header_wrap_grid {
    display: grid;
    grid-template: repeat(1, auto) / repeat(1, 1fr);
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-gap: .7rem;
    margin: auto;
    place-content: center;
    place-items: center;
  }

  .header_c_tel {
    margin-bottom: .5rem;
  }
}

@media (min-width:600px) {
  .header_wrap_grid {
    display: grid;
    row-gap: 1.5rem;
    grid-template-columns: 60% 40%;
    grid-template-rows: 50% 50%;
    place-content: center;
    margin: .5rem;
    white-space: nowrap;
  }

  .header_a_txt {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding: 2rem;
    place-content: end left;
    align-items: flex-end;
    font-size: 1.2rem;
  }

  .header_b_logo {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: right;
    padding-right: 1.5rem;
  }

  .header_c_tel {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
    padding-right: 1.5rem;
  }
}

.header_name {
  font-size: larger;
}

/* コンテンツ_ナビ */
.contens {
  width: 100%;
  background: #044a96;
  height: 47px;
}

/* menu_Ver2 */
#menu {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

#menu li {
  display: block;
  float: left;
  width: 16%;
  margin: 0;
  padding: 0;
}

#menu li a {
  display: block;
  padding: 12px 0;
  background: #044a96;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}

#menu li a:hover {
  background: #00838f;
}

#toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  #menu li {
    width: none;
    border-bottom: 1px solid #fff;
  }
}

@media only screen and (max-width: 480px) {
  #menu {
    display: none;
  }

  #menu li {
    width: 100%;
  }

  #menu li a {
    font-weight: normal;
  }

  #toggle {
    display: block;
    position: relative;
    width: 100%;
    background: #044a96;
  }

  #toggle a {
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #044a96;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
  }

  #toggle:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }

  #toggle a:before,
  #toggle a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #044a96;
  }

  #toggle a:before {
    margin-top: -6px;
  }

  #toggle a:after {
    margin-top: 2px;
  }
}

/* メイン */
.main {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin-bottom: 200px;
  padding-top: 20px;
  border-top: 2px solid #044a96
}

.main img {
  border-radius: 5px 5px 0 0;
}

.main_wrap {
  width: 1050px;
  max-width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 5px;
}

@media only screen and (max-width: 750px) {
  .main {
    margin-bottom: 20px;
  }

  .main_wrap {
    width: 95%;
  }
}

/* メイン2 */
.main2 {
  width: 100%;
  min-height: 100%;
  margin-bottom: 200px;
  padding-top: 100px;
  border-top: 2px solid #044a96
}

/* メイン3 */
.main3 {
  width: 100%;
  min-height: 100%;
  margin-top: -7.5px;
  margin-bottom: 200px;
  padding-top: 100px;
  border-top: 2px solid #044a96
}

.In_Intro {
  width: 100%;
  display: inline-block;
  overflow: hidden;
}

.In_Intro_t {
  width: 60%;
  float: left;
  padding-left: 10px;
}

.In_Intro_img {
  width: 35%;
  float: right;
  text-align: center;
}

/* 180806_背景切り替え */
.Top-fixed-bg01 {
  min-height: 100%;
  background-image: url("../images/vani_top_04r.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.Top-fixed-bg01 p {
  font-size: 10pt;
  color: #fff;
  padding: 20% 0%;
  width: 75%;
  margin: auto;
  text-align: center;
  line-height: 2.7;
}

.Top-scroll {
  height: auto;
  z-index: 2;
}

@media screen and (max-width: 750px) {
  .Top-fixed-bg01 {
    background-attachment: scroll
  }
}

/* 180805_新商品 */
#Newitem {
  width: 100%;
  background: #fff;
  margin: 80px 0;
}

.Item_wrap {
  width: 1050px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.Item_wrap h1 {
  font-size: 14pt;
  font-weight: normal;
  position: relative;
}

.Item_wrap h1::after {
  content: "";
  position: absolute;
  left: 0;
  margin-top: 25px;
  width: 98%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
}

@media screen and (max-width: 750px) {
  #Newitem {
    margin: 80px auto 0px auto;
  }

  .Item_wrap {
    width: 95%;
  }

  .Item_wrap h1 {
    font-size: 12pt;
  }
}

/* colorbox内_コンテンツ */
#colorboxcontent {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}

.mainImage {
  width: 75%;
  margin: 0 auto;
}

.thumbnails {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.thumbnails img {
  width: 19%;
}

#colorboxcontent h1 {
  font-size: 14pt;
  font-weight: bold;
}

.shrinkToFit {
  cursor: zoom-in;
}

.shrinkToFit img {
  width: 60%;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .mainImage {
    width: 97%;
  }

  .thumbnails {
    width: 90%;
  }

  .thumbnails img {
    width: 18.5%;
  }
}

/* スペックテーブル */
.CL-spec {
  border-collapse: collapse;
  width: 70%;
  margin: 0 auto;
}

.CL-spec th,
.CL-spec td {
  border: 1px solid #dbe1e8;
  padding: 8px;
}

.CL-spec th {
  background: #f9fafc;
  text-align: left;
  width: 120px;
}

@media only screen and (max-width: 800px) {
  .CL-spec {
    width: 100%;
  }

  .CL-spec tr,
  .CL-spec th,
  .CL-spec td {
    display: block;
    width: auto;
  }

  .CL-spec tr:first-child {
    border-top: 1px solid #dbe1e8;
  }

  .CL-spec th,
  .CL-spec td {
    border-top: none;
  }
}

/* TOP_アクセスアイコン */
a.cp_btn {
  position: relative;
  display: block;
  width: 160px;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #e4007f;
  border: 1px solid #fff;
  overflow: hidden;
}

a.cp_btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -160px;
  height: 100%;
  width: 100%;
  background: #fff;
  opacity: 0.3;
  transition: .4s;
}

a.cp_btn:hover:before {
  left: 0;
}

/* SNS */
/*
.sns_wrap {
  width: 100%;
  display: grid;
}*/

/*

.SNS_box {
  width: 45%;
  float: left;
  padding: 10px;
  text-align: center;
}

.SNS_box2 {
  width: 45%;
  float: right;
  padding: 10px;
}

.SNS_box2_re {
  width: 45%;
  float: right;
  padding: 10px;
}
  */

.sns_wrap {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 45% 45%;
  width: 100%;
  justify-content: center;
  height: auto;
  margin: auto;
  grid-gap: 4rem;
}

@media screen and (max-width: 768px) {
  .sns_wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 95%;
    width: 95%;
    justify-content: center;
    height: auto;
    margin: auto;
  }
}

/*
@media screen and (max-width: 768px) {

  .SNS_box,
  .SNS_box2,
  .SNS_box2_re {
    width: 90%;
    float: none;
  }
}*/

.instagram_container {
  display: block;
  border: 1px rgba(0, 0, 0, .12) solid;
  border-radius: 10px;
  padding: 1.5rem;
}

.circle_flame {
  width: 10vw;
  height: 10vw;
  border: 1px rgba(0, 0, 0, .5) solid;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  padding: 1.5rem;
  margin: 0 auto 2rem auto;
}

.instagram_text {
  color: #231d1d;
}

.instagram_icon_btn {
  color: #e10072;
  border: 1px #e10072 solid;
  background-color: #fff;
  border-radius: 10px;
  /*padding: .5rem 1rem .5rem .5rem;*/
  margin: 1rem auto auto auto;
  width: 60%;
  position: relative;
}

.instagram_icon_btn :hover {
  color: #fff;
  background-color: #e10072;
  border-radius: 10px;
}

.instagram_inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto;
}

.instagram_01 {
  margin-left: .5rem;
}

.instagram_02 {
  font-size: 175%;
  font-weight: 600;
  place-content: center;
  margin: .6rem;
  white-space: nowrap;
  place-items: center;
  text-align: center;
}

@media screen and (max-width: 467px) {
  .instagram_02 {
    font-size: 125%;
    font-weight: 600;
    place-content: center;
    place-items: center;
    margin: auto;
    white-space: nowrap;
  }
}


/* TOP地図 */

.top_access_wrap {
  width: 100%;
  /*margin-bottom: 100px;*/
}

.top_access {
  display: grid;
  grid-template: repeat(1, auto) / repeat(2, 1fr);
  width: 100%;
  height: auto;
  margin: auto auto 2rem auto;
}

.top_access01 {
  margin: 0 5rem auto auto;
}

@media screen and (max-width: 768px) {
  .top_access {
    display: grid;
    grid-template: repeat(1, auto) / repeat(1, 1fr);
    place-content: center;
    place-items: center;
    grid-gap: 1rem;
    width: 100%;
    height: auto;
    margin: auto auto 1rem auto;
  }

  .top_access01 {
    width: 100%;
    text-align: center;
    margin: auto;
  }
}

/*  

.top_access01 {
  width: 300px;
  float: left;
  margin: 0 30px;
}

.top_access01 img {
  width: 100%;
}

.top_access02 {
  width: auto;
  float: right;
}/*

@media screen and (max-width: 768px) {
  .top_access {
    display: block;
  }

  .top_access01,
  .top_access02 {
    width: 95%;
    float: none;
    padding: 8px;
  }*/
/*
.top_access01 img {
  width: 80%;
}

/* スライダー */
.slider_wrap {
  width: 100%;
  padding-top: 11.5rem;
  position: relative;
  overflow: hidden;
}

.header_img {
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 467px) {
  .header_img {
    padding-top: 4%;
  }
}

/* 更新履歴 */
.history {
  width: 1050px;
  margin: 20px auto;
}

.history ul {
  padding: 0;
  line-height: 1.8;
  width: 100%;
  list-style: none;
  font-size: 9pt;
  height: 130px;
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
}

.history li {
  position: relative;
  margin: 0 0 10px;
  padding: 0 5px 10px 8em;
  border-bottom: 1px dotted #6c272d;
}

.history ul li span.date {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6em;
  margin: 0;
  padding: 0 0 0 5px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .history {
    width: 100%;
  }

  .history li {
    padding: 0 0 10px 0;
  }

  .history ul li span.date {
    position: inherit;
  }

  .history ul {
    width: 90%;
  }
}

.Title {
  padding: 0 0 0 5px;
  font-weight: bold;
  font-size: 12pt;
  color: #6c272d;
  letter-spacing: 0.2em;
}

.conte_Title {
  font-size: 18pt;
  padding: 0 0 0 5px;
  color: #6c272d;
  letter-spacing: 0.2em;
  background: url(/images/vani_icon.svg) no-repeat;
  line-height: 40px;
  padding-left: 30px;
  background-size: 22px;
}

.conte_SBTitle {
  font-size: 14pt;
  padding: 0 0 0 5px;
  color: #6c272d;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 750px) {
  .conte_Title {
    background-size: 19px;
  }
}

/* お店について */
/*タイルレイアウトを動かす領域の大きさ*/
.list {
  width: 100%;
}

/*タイルレイアウト上下左右の余白*/
.list-box {
  margin: 10px;
}

/*サムネイル画像を固定サイズにしたいなら無くてもok*/
.list-img {
  max-height: auto;
}

/*画像の大きさ widthは必須。heightを指定すると高さが異なるタイルレイアウトにはなりません。*/
.list-img img {
  width: 280px;
  height: auto;
}

/*テキストエリアの大きさ*/
.list-text {
  width: 280px;
}

.list-text2 {
  width: 850px;
}

.Shop_box {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.Shop_box-img {
  width: 30%;
  float: left;
  margin: 10px;
}

/* coupon */
.Con_wrap {
  width: 1050px;
  max-width: 100%;
  margin: 100px auto;
  padding: 2rem 3rem 3rem 3rem;
}

.Cup_box {
  display: inline-flex;
  width: 100%;
  margin: 10px auto;
  overflow: hidden;
}

.Cup_img {
  position: relative;
  float: left;
  width: 40%;
  text-align: center;
  margin-right: 7px;
}

.Cup__img--expiry {
  position: absolute;
  bottom: 15px;
  right: 15%;
  background: #fff;
  width: 180px;
  border-radius: 5px;
}

.Cup_boxT {
  float: right;
  width: 55%;
}

.red {
  color: red;
  font-size: 10pt;
}

@media screen and (max-width: 750px) {
  .Con_wrap {
    width: 95%;
    padding: 0;
    overflow: hidden;
  }

  .Cup_box {
    display: inline;
  }

  .Cup_img {
    float: none;
    width: 100%;
  }

  .Cup_boxT {
    float: none;
    width: 100%;
  }
}

/* FAQ */
.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #1b2538;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  border-radius: 0.5em;
  background: rgba(27, 37, 56, 0.1);
}

.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
  content: 'Q';
}

.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #00838f;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: '\2b';
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  border-radius: 0 0 0.5em 0.5em;
}

.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: 'A';
}

.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content {
  max-height: 45em;
  border: 10px solid rgba(27, 37, 56, 0.1);
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked~label {
  color: #00838f;
  border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

/* access */
.access_wrap {
  width: 960px;
  max-width: 100%;
  margin: 100px auto;
  padding: 20px 5px;
}

.Acs_box {
  display: inline-flex;
  width: 100%;
  margin: 10px auto;
  overflow: hidden;
}

.Acs_box-img {
  float: left;
  width: 40%;
  text-align: center;
  margin-right: 7px;
}

.Acs_box-text {
  float: left;
  width: 55%;
}

.Acs_vaniT {
  font-size: 13pt;
  letter-spacing: 0.03em;
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .Acs_box {
    display: inline;
  }

  .Acs_box-img {
    float: none;
    width: 100%;
  }

  .Acs_box-text {
    float: none;
    width: 100%;
  }
}

/* アクセス_取扱カード一覧 */
.s_card {
  margin: 9px auto;
  max-width: 700px;
  letter-spacing: 0.3em;
}

.s_card img {
  margin: 10px;
}

.s_card dl {
  width: 100%;
  text-align: center;
}

.s_card dt {
  padding: 5px 10px;
  color: #FFF;
  background-color: #6c272d;
  font-size: 17px;
}

.s_card dd {
  padding: 5px 10px;
  margin-left: 0;
  margin-right: 0;
  border-width: 0 1px 1px;
  border-style: none;
  background: #fff;
}

.item_wrap2 {
  width: 1000px;
  max-width: 100%;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.item_wrap2 h1 {
  font-size: 14pt;
  font-weight: normal;
  position: relative;
}

.item_wrap2 h1:after {
  content: "";
  position: absolute;
  left: 0;
  margin-top: 25px;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
}

.item_box-main {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 20px 0px;
}

.item_box {
  width: 17%;
  height: 248px;
  float: left;
  margin: 15px;
  margin-bottom: 40px;
}

.item_box-img {
  max-width: 100%;
  width: 150px;
  height: auto;
  text-align: center;
}

.item_box-text {
  width: 150px;
  height: auto;
  font-size: 9pt;
}

@media screen and (max-width: 750px) {
  .item_wrap2 {
    width: 95%;
  }

  .item_box-main {
    margin: 5px;
  }

  .item_box {
    width: 38%;
  }

  .item_box-text {
    width: 98%;
    font-size: 8pt;
  }
}

/* 告知バナー */
.koku_bana_wrap {
  width: 100%;
  margin-bottom: 200px;
}

.koku_bana_wrap img {
  display: inline-flex;
  padding: 5px;
}

/* footer */
.footer {
  width: 100%;
  background: #FAF8F8;
  bottom: 0;
  border-top: 2px solid #044a96;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #00838f;
}

.footer_wrap {
  width: 960px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.footer_txt {
  display: block;
}

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

/* 年末年始のお知らせ */
.red {
  color: red;
  font-weight: 100;
}

.c_topCorona {
  width: 1050px;
  margin: 20px auto;
  padding: 10px;
  margin: 10px auto;
  background: #FFFFFF;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
  .c_topCorona {
    width: 100%;
  }
}

.c_topCoronaTtl {
  font-size: 150%;
  padding: 10px 20px 10px;
  font-weight: bold;
  text-align: center;
}

.c_topCoronaTxt {
  text-align: center;
  padding: 10px 20px 10px;
}

.c_topCoronaTxt strong {
  font-weight: bold;
  color: #FF0004;
  display: block;
  margin: 20px 0px 0px;
  font-size: 120%;
}

.pc {
  display: block;
}

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

/* SHOP紹介ページのグリッド組み・グリッドエリア */

.about_shop_wrapper {
  display: grid;
}

@media (min-width:320px) {
  .about_shop_wrapper {
    display: grid;
    grid-template: repeat(1, auto) / repeat(1, 1fr);
    grid-template-columns: 75%;
    grid-template-rows: auto;
    grid-gap: .7rem;
    margin: auto;
    place-content: center;
    place-items: center;
  }

  .Con_wrap {
    width: 100%;
  }

  .about_shop_title {
    margin: .5rem 3rem 2rem 3rem;
  }
}

@media (min-width:480px) {
  .about_shop_wrapper {
    display: grid;
    column-gap: 1.3rem;
    row-gap: 1.1rem;
    grid-template-columns: 50% 50%;
    grid-template-rows: 421px 170px 422px 74px 120px 258px 98px 6px;
    place-content: center;
    margin: -1rem auto auto auto;
  }

  .about_shop_a {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .about_shop_a img {
    width: 100%;
    height: auto;
  }

  .about_shop_b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .about_shop_b img {
    width: 100%;
    height: auto;
  }

  .about_shop_c {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .about_shop_c img {
    width: 100%;
    height: auto;
  }

  .about_shop_d {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .about_shop_d img {
    width: 100%;
    height: auto;
  }

  .about_shop_e {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .about_shop_e img {
    width: 100%;
    height: auto;
  }

  .about_shop_f {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .about_shop_f img {
    width: 100%;
    height: auto;
  }

  .about_shop_g {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    margin-top: -1.5rem;
    margin-left: 1rem;
  }

  .about_shop_h {
    grid-column: 2 / 3;
    grid-row: 4 / 6;
  }

  .about_shop_h img {
    width: 100%;
    height: auto;
  }

  .about_shop_i {
    grid-column: 1 / 2;
    grid-row: 5 / 7;
  }

  .about_shop_i img {
    width: 100%;
    height: auto;
  }

  .about_shop_j {
    grid-column: 2 / 3;
    grid-row: 6 / 7;
  }

  .about_shop_j img {
    width: 100%;
    height: auto;
  }

  .about_shop_k {
    grid-column: 1 / 2;
    grid-row: 7 / 8;
    margin-top: -3rem;
    margin-left: 1rem;
  }

  .about_shop_l {
    grid-column: 2 / 3;
    grid-row: 7 / 8;
  }

  .about_shop_l img {
    width: 100%;
    height: auto;
  }

  .about_shop_m {
    grid-column: 1 / 3;
    grid-row: 8 / 9;
  }

  .about_shop_m img {
    width: 100%;
    height: auto;
  }

  .Con_wrap {
    width: 80%;
  }

  .about_shop_title {
    margin-left: 1rem;
  }
}

@media (min-width:768px) {
  .about_shop_wrapper {
    display: grid;
    column-gap: 1.2rem;
    row-gap: .5rem;
    grid-template-columns: 33% 33% 34%;
    grid-template-rows: 254px 176px 88px 126px 218px 208px 38px 181px;
    margin-top: -2rem;
    padding: 2rem;
  }

  .about_shop_a {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .about_shop_a img {
    width: 100%;
    height: auto;
  }

  .about_shop_b {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .about_shop_b img {
    width: 100%;
    height: auto;
  }

  .about_shop_c {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .about_shop_c img {
    width: 100%;
    height: auto;
  }

  .about_shop_d {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
  }

  .about_shop_d img {
    width: 100%;
    height: auto;
  }

  .about_shop_e {
    grid-column: 1 / 2;
    grid-row: 3 / 6;
  }

  .about_shop_e img {
    width: 100%;
    height: auto;
  }

  .about_shop_f {
    grid-column: 2 / 3;
    grid-row: 3 / 6;
  }

  .about_shop_f img {
    width: 100%;
    height: auto;
  }

  .about_shop_g {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
    margin-top: -3.5rem;
  }

  .about_shop_h {
    grid-column: 3 / 4;
    grid-row: 5 / 7;
  }

  .about_shop_h img {
    width: 100%;
    height: auto;
  }

  .about_shop_i {
    grid-column: 1 / 2;
    grid-row: 6 / 9;
  }

  .about_shop_i img {
    width: 100%;
    height: auto;
  }

  .about_shop_j {
    grid-column: 2 / 3;
    grid-row: 6 / 8;
  }

  .about_shop_j img {
    width: 100%;
    height: auto;
  }

  .about_shop_k {
    grid-column: 3 / 4;
    grid-row: 7 / 8;
    margin-top: -5rem;
  }

  .about_shop_l {
    grid-column: 2 / 3;
    grid-row: 8 / 9;
  }

  .about_shop_l img {
    width: 100%;
    height: auto;
  }

  .about_shop_m {
    grid-column: 3 / 4;
    grid-row: 8 / 9;
  }

  .about_shop_m img {
    width: 100%;
    height: auto;
  }

  .Con_wrap {
    width: 1050px;
    padding: 2rem 3rem 3rem 3rem;
  }

  .about_shop_title {
    margin-left: 1rem;
  }
}

/* 電話番号のリンクがSP以外のデバイスでアクティブにならないようにする */

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}