@charset "UTF-8";
html {
  box-sizing: border-box; /* html内全てののwidthとhightの値を要素とpadding,borderを含んだサイズにします。*/
  overflow-y: scroll;
  list-style: none;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html a {
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: inherit; /* box-sizingの値:親要素の設定を引き継ぐ */
  list-style: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

/* ページトップに戻るボタンのスタイル */
.page-top {
  /* buttonタグのリセットCSS */
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* ボタンの装飾 */
  position: fixed;
  right: 10px;
  bottom: 11.5rem;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f08e2d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 30%;
  z-index: 9999;
  /* 矢印のスタイル */
  /* ホバー時のスタイル */
}
.page-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}
.page-top:hover {
  transform: scale(1.2);
  opacity: 90%;
}

.header {
  width: 100%;
}

h1 {
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin: 1rem auto;
}

.hd_title_ctn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}
.hd_title_ctn .shop_logo img {
  max-width: 200px;
  margin: 1rem;
}
.hd_title_ctn .r_logo img {
  width: 4rem;
  margin: 2rem;
}

/*モバイルの場合にタブレット＆PC用メニューを表示させない*/
.for-pc {
  display: none;
}

/*スマホはメニューを画面下部に固定*/
#sp-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 1.5rem;
  line-height: 1.2;
  opacity: 0.98;
  z-index: 9999;
  /*メニューを横並びにする*/
}
#sp-menu ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#sp-menu li {
  vertical-align: middle;
  width: 25vw;
  font-size: 1.2rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#sp-menu .menu_bg-color {
  background: #f08e2d;
}
#sp-menu li a {
  /*ボタンを調整*/
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.8rem;
}

h2 {
  box-sizing: border-box;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 6rem auto 3rem;
  color: #555;
}

#q2, #q3, #q4, #q5, #q6, #q7, #q8 {
  margin-top: 10vw;
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}

.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

@media screen and (min-width: 768px) {
  .hd_title_ctn {
    margin: auto;
  }
  .for-sp {
    display: none;
  }
  .for-pc {
    display: inline-block;
    position: sticky;
    width: 100%;
    max-width: 1080px;
    top: 0px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.2;
    opacity: 0.95;
    z-index: 9999;
    /*メニューを横並びにする*/
  }
  .for-pc ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    vertical-align: middle;
    list-style: none;
    padding: 0;
    margin: 0 auto;
  }
  .for-pc ul li {
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.3rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .for-pc ul li p span {
    transform: scale(0.5, 1);
  }
  .for-pc .menu_bg-color {
    background: #f08e2d;
  }
  .for-pc li a {
    /*ボタンを調整*/
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    padding: 1.2rem;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  text-align: center;
}
footer .shop_logo img {
  display: inline-block;
  width: 25vw;
  max-width: 240px;
  margin: 2rem auto 2rem;
}
footer .footer_nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  border-top: solid 1px #ff6676;
}
footer .footer_nav li a {
  margin: 1.5rem 1rem;
  line-height: 5;
  font-size: 1.4rem;
  font-weight: 500;
  color: #888;
}
footer p {
  margin-bottom: 13rem;
  color: #888;
}/*# sourceMappingURL=style.css.map */


.link-none {
  pointer-events: none;
  text-decoration: none;
}



/* =======================================
  receipt
======================================= */
.receipt-bt {
  display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	height:50px;
	margin: 5px 0;
	text-align: center;
	border:dotted 2px;
	border-color: #f08d2c;
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
}

.receipt-bt > a{
  font-size: 140%;
	font-weight: bold;
	color:#f08d2c;
	width: 400px;
}

.receipt-bt > a:hover {
	color:#fff;
	font-weight: bold;
	background-color: #f08d2c;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 25px;
	width: 399px;
	height:50px;
	text-align: center;
}