/* メインイメージ */
#main {
  width: 100vw;
  height: auto;
  padding-top: 50.3%;
  background: url(../img/index/mainImg_andre05.jpg) center center no-repeat;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  #main {
    width: 100vw;
    height: calc(100vw * 980.0 / 750.0);
    background: url(../img/index/mainImg_andre_sp05.jpg) center top no-repeat;
    background-size: 100% auto;
  }
}

/* カテゴリタイトル */
h2 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 12px;
  padding: 50px 0 20px 20px;
  font-size: 1.64rem;
  font-weight: 500;
  color: #F08300;
  text-align: left;
  line-height: 1.0;
  letter-spacing: 0.1rem;
  position: relative;
}
h2.ttl_about {
  margin-bottom: -10px;
  z-index: 2;
}
h2 span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
}
h2:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  top: 60px;
  left: -20px;
}
h2:after {
	content: attr(data-word);
	display: block;
  margin: 5px 0 0;
	font-size: 0.83rem;
}
@media screen and (max-width: 767px) {
  h2 {
    max-width: 100%;
    font-size: 1.48rem;
  }
  h2.ttl_about {
    margin-bottom: 0;
  }
  h2:before {
    width: 12px;
    left: 0px;
  }
  h2:after {
    display: block;
    margin: 3px 0 0;
    font-size: 0.78rem;
  }
}

/* more */
.more {
  width: 240px;
  margin: 5px auto 10px;
  padding: 0;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border: 1px solid #443e35;
  overflow: hidden;
}
.more a {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 0;
  font-size: 0.93rem;
  font-weight: bold;
  color: #443e35;
  text-align: center;
  line-height: 1.0;
}

@media screen and (max-width: 767px) {
  .more {
    width: 48%;
    margin: 35px auto 30px;
  }
}

/* クイックメニュー */
.top_menu {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.top_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: auto;
  margin: 5px 0 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.top_menu ul li {
  width: 33.3%;
  width: calc(100vw / 3);
  overflow: hidden;
}
.top_menu ul li a {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 1.08rem;
  font-weight: bold;
  color: #fc9989;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.9);
}
.top_menu ul li a:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px 0 0;
  vertical-align: -40%;
}
.top_menu ul li:first-of-type a:before {
  background: url(../img/index/quick_menu_iconC01.png) center center no-repeat;
  background-size: contain;
}
.top_menu ul li:nth-of-type(2) a:before {
  background: url(../img/index/quick_menu_iconC02.png) center center no-repeat;
  background-size: contain;
}
.top_menu ul li:last-of-type a:before {
  background: url(../img/index/quick_menu_iconC03.png) center center no-repeat;
  background-size: contain;
}
.top_menu ul li a:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 25%;
  display: inline-block;
  width: 2px;
  height: 50%;
  -moz-transform: translateX(-30%);
  -webkit-transform: translateX(-30%);
  -ms-transform: translateX(-30%);
  transform: translate(-30%);
  background-color: #fc9989;
}
.top_menu ul li:last-of-type a:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .top_menu {
    width: 100%;
    max-width: auto;
    margin: 0;
  }
  .top_menu ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    border-radius: none;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
  }
  .top_menu ul li a {
    padding: 3px 0;
    font-size: 0.93rem;
    background: none;
    line-height: 1.2;
  }
  .top_menu ul li a:before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto;
  }
  .top_menu ul li:first-of-type a:before {
    background: url(https://crepe-andre.com/common/img/index/quick_menu_iconC01.png) center center no-repeat;
    background-size: 85% auto;
  }
  .top_menu ul li:nth-of-type(2) a:before {
    background: url(https://crepe-andre.com/common/img/index/quick_menu_iconC02.png) center center no-repeat;
    background-size: 85% auto;
  }
  .top_menu ul li:last-of-type a:before {
    background: url(https://crepe-andre.com/common/img/index/quick_menu_iconC03.png) center center no-repeat;
    background-size: 85% auto;
  }
}


/* 営業のお知らせ */
.open_msg {
  width: 38%;
  max-width: 430px;
  margin: -150px 0 20px 53%;
  padding: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  background: #fff;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
  position: relative;
}
.open_msg span {
  display: inline-block;
  margin-left: 2px;
  color: #e8652b;
}
@media screen and (max-width: 767px) {
  .open_msg {
    width: 96%;
    margin: 10px auto;
    font-size: 0.93rem;
  }
}


/* お知らせ */
.newsBox {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 80px;
  background: none;
}
.newsBox .newsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 94%;
  margin: 20px auto 35px;
  padding: 0;
  font-size: 0.98rem;
}
.newsBox .newsInner a {
  display: block;
  width: 45%;
  height: auto;
  margin: 0 0 0 5%;
  padding: 0;
}
.newsBox .newsInner a dl {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
}
.newsBox .newsInner a:first-of-type dl {
  border-right: 1px solid #ccc;
}
.newsBox .newsInner a dl dt,
.newsBox .newsInner a dl dd {
  width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  font-size: 0.93rem;
}
.newsBox .newsInner a dl dt {
  color: #6c675f;
}
.newsBox .newsInner a dl dt span {
  display: inline-block;
  margin: 0 7px 0 0;
  padding: 5px 4px 4px;
  border: 1px solid #6c675f;
  font-size: 0.83rem;
  color: #6c675f;
  line-height: 1.0;
}
.newsBox .newsInner a dl dd {
  padding: 7px 0 5px;
}

@media screen and (max-width: 767px) {
  .newsBox .newsInner {
    display: block;
    width: 94%;
  }
  .newsBox .newsInner a {
    width: 100%;
    margin: 0 auto;
  }
  .newsBox .newsInner a dl {
    border-bottom: 1px solid #ccc;
  }
  .newsBox .newsInner a:first-of-type dl {
    border-right: 0px;
  }
  .newsBox .newsInner a dl dt,
  .newsBox .newsInner a dl dd {
    padding-left: 7px;
  }
}

/* 営業日時 */
.shopBox {
  width: 100%;
  margin: 0;
  padding: 0 0 80px;
  background: #F4EFE7;
  font-size: 0.93rem;
}
.shopBox .sttl {
  width: 100%;
  padding: 15px 0 0;
  font-weight: 600;
  color: #603813;
  text-align: center;
}
.shopBox .address {
  width: 100%;
  margin: 10px 0 20px;
  font-size: var(--root-fs-s);
  text-align: center;
}
.shopBox table {
  width: 50%;
  margin: 10px auto;
  padding: 0;
}
.shopBox table tr td {
  width: 35%;
  padding: 7px 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  text-align: center;
}
.shopBox table tr:last-of-type td {
  border-bottom: none;
}
.shopBox table tr td:last-of-type {
  border-right: none;
}
.shopBox table tr td:first-of-type {
  width: 30%;
}
.shopBox .mapImage {
  width: 80%;
  max-width: 960px;
  margin: 15px auto 0;
  padding-bottom: 35%;
  overflow: hidden;
  position: relative;
}
.shopBox .mapImage iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.shopBox .mapImage:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #9c7d5f;
  mix-blend-mode: overlay;
  pointer-events: none;
  content: "";
}
.shopBox .holiday {
  width: 100%;
  margin: 20px 0 50px;
  font-size: 1.08rem;
  font-weight: bold;
  color: #ff6d56;
  text-align: center;
}
.shopBox .more {
  border: 1px solid #443e35;
}
.shopBox .more a {
  color: #443e35;
}
@media screen and (max-width: 767px) {
  .shopBox {
    width: 100%;
    margin: 0;
    padding: 0 0 30px;
    background: #F4EFE7;
    font-size: 0.93rem;
  }
  .shopBox .sttl {
    width: 100%;
    padding: 15px 0 0;
    font-weight: 600;
    color: #603813;
    text-align: center;
  }
  .shopBox .address {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
  }
  .shopBox table {
    width: 90%;
    margin: 10px auto;
    padding: 0;
  }
  .shopBox table tr td {
    width: 35%;
    padding: 7px 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    text-align: center;
  }
  .shopBox table tr:last-of-type td {
    border-bottom: none;
  }
  .shopBox table tr td:last-of-type {
    border-right: none;
  }
  .shopBox table tr td:first-of-type {
    width: 30%;
  }
  .shopBox .mapImage {
    width: 100%;
    margin: 15px auto 0;
    padding-bottom: 60%;
    overflow: hidden;
    position: relative;
  }
  .shopBox .mapImage iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
  }
  .shopBox .mapImage:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #9c7d5f;
    mix-blend-mode: overlay;
    pointer-events: none;
    content: "";
  }
  .shopBox .more {
    border: 1px solid #443e35;
  }
  .shopBox .more a {
    color: #443e35;
  }  
}

/* ベネフィット */
.aboutAndre {
    width: 100%;
    margin: 15px auto;
    padding: 0;
}
.aboutAndre .aboutInner {
    display: flex;
    width: 80%;
    max-width: 960px;
    margin: 0 auto 25px;
    padding: 50px 20px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
}
.aboutAndre .aboutInner:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	font-size: 0.01em;
	height: 0px;
	overflow: hidden;
}
.aboutAndre .aboutInner:before {
    content: "";
    display: inline-block;
    width: 300px;
    min-width: 300px;
    height: 300px;
    min-height: 300px;
    margin: 0 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: url(https://crepe-andre.com/common/img/index/about_img.jpg) left top no-repeat;
    background-size: 100% auto;
    overflow: hidden;
}
.aboutAndre .aboutInner .about_concept {
    width: 100%;
    padding: 0;
    word-break: break-all;
}
.aboutAndre .aboutInner .about_concept .mttl {
    width: 100%;
    margin: 0 0 15px;
    font-size: var(--font-size-xl);
    font-family: var(--ff-mttl);
    color: var(--main-color);
    text-align: left;
    line-height: 1.6;
}
.aboutAndre .aboutInner .about_concept .mttl span {
    display: block;
    margin: 0;
}
.aboutAndre .aboutInner .about_concept .aboutTxt p {
    margin: 0 0 10px;
}
.aboutAndre .aboutInner .about_concept .aboutTxt p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {

    .aboutAndre .aboutInner {
        display: block;
        width: 94%;
        padding: 20px 15px 20px 18px;
    }
    .aboutAndre .aboutInner:before {
        display: block;
        width: 240px;
        min-width: 240px;
        height: 240px;
        min-height: 240px;
        margin: 5px auto 20px;
    }
    .aboutAndre .aboutInner .about_concept {
        word-break: break-all;
    }
    .aboutAndre .aboutInner .about_concept .mttl {
        font-size: var(--font-size-l);
    }

}