@charset "UTF-8";
:root {
  --default_font: "Noto Sans JP", sans-serif;
  --font_awesome: "Font Awesome 6 Free";
}

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

a {
  color: #cc0000;
  transition: opacity 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}

*:focus {
  outline: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  /* color: #333333; */
  transition: opacity 1.5s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.read {
  opacity: 1;
}

area {
  border: none;
  outline: none;
}

div, input, a,
dl, dt, dd,
textarea {
  box-sizing: border-box;
}

input, select, textarea {
  background: #fff;
  font-family: var(--default_font);
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.fa-square-twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

.fa-inverse {
  color: #cc0000;
}

.js_hidden {
  visibility: hidden;
  opacity: 0;
}

.js_overfrowY_hidden {
  position: fixed;
  overflow-y: scroll;
  width: 100vw;
}

.post_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.post_lists .post_item {
  position: relative;
  margin-top: 0.1%;
  width: 19.9%;
}
@media screen and (max-width: 1000px) {
  .post_lists .post_item {
    width: 33.2%;
    margin-top: 0.2%;
  }
}
.post_lists .post_item a img {
  width: 100%;
}
.post_lists .top_posts_icon,
.post_lists .top_posts_price {
  position: absolute;
}
.post_lists .top_posts_icon {
  top: 8px;
  left: 10px;
}
@media screen and (max-width: 1000px) {
  .post_lists .top_posts_icon {
    left: 4px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .post_lists .top_posts_icon img {
    width: auto;
    height: 15px;
    margin-bottom: 3px;
  }
}
.post_lists .top_posts_price {
  top: 4px;
  right: 0;
  width: auto;
  height: auto;
  padding: 2px 8px 2px 12px;
  border-radius: 50px 0 0 50px;
  background: #fff;
  color: #663300;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 1.4em;
}
@media screen and (max-width: 1000px) {
  .post_lists .top_posts_price {
    padding: 4px;
    padding-left: 8px;
    font-size: 13px;
    line-height: 1;
  }
}
.post_lists .post_item_icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  border: #fff solid 2px;
  border-radius: 40px;
  overflow: hidden;
}

/*
header 
-------------------------*/
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 112px;
  border-bottom: #999999 solid 1px;
  background: #fff;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .header_wrap {
    align-items: flex-start;
    height: 54px;
  }
}
.header_logo {
  padding-left: 38px;
}
@media screen and (max-width: 1500px) {
  .header_logo {
    padding-left: 3%;
  }
}
@media screen and (max-width: 1000px) {
  .header_logo {
    padding-top: 6px;
  }
}
.header_logo img {
  max-width: 208px;
}
@media screen and (max-width: 1500px) {
  .header_logo img {
    max-width: 148px;
  }
}
.header_search {
  display: flex;
  justify-content: center;
  margin-left: 20%;
}
.header_search_wrap {
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .header_search {
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header_search {
    padding-top: 6px;
  }
}
.header_search_txt {
  width: 70%;
  height: 55px;
  padding: 0 20px;
  border: #666 solid 1px;
  border-radius: 10px 0 0 10px;
  border-right: none;
  color: #707070;
  font-size: 18px;
}
@media screen and (max-width: 1500px) {
  .header_search_txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .header_search_txt {
    width: 72%;
    height: 40px;
    padding: 0 10px;
    border-color: #999;
    font-size: 12px;
  }
}
.header_search_txt::-moz-placeholder {
  color: #b4b4b4;
}
.header_search_txt::placeholder {
  color: #b4b4b4;
}
.header_search_btn {
  min-width: 90px;
  height: 55px;
  margin: 0;
  border: #666 solid 1px;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 0 0 1px #ff0000 inset, 0 0 0 2px #ff8d8d inset;
}
@media screen and (max-width: 1000px) {
  .header_search_btn {
    min-width: 44px;
    height: 40px;
    border-color: #999;
  }
}
.header_search_btn:hover {
  cursor: pointer;
  opacity: 0.9;
}
@media screen and (max-width: 1000px) {
  .header_search_btn span {
    display: none;
  }
}
.header_menu {
  display: flex;
}
.header_menu_list {
  display: flex;
  list-style: none;
  margin-right: 15px;
  padding: 0;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .header_menu_list.header_menu_list_pc {
    display: none;
  }
}
.header_menu_list.header_menu_list_sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header_menu_list.header_menu_list_sp {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-top: 6px;
    background: #fff;
    box-shadow: #eee 0px -1px 0px;
    z-index: 99;
  }
}
.header_menu_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .header_menu_list a {
    width: auto;
    font-size: 9px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu_list img {
    width: 25px;
  }
}
.header_menu_list span {
  display: flex;
  align-items: center;
  height: 42px;
  line-height: 1.1;
}
@media screen and (max-width: 1000px) {
  .header_menu_list span {
    height: 30px;
  }
}
.header_menu_navi {
  width: 111px;
  height: 111px;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi {
    width: 54px;
    height: 54px;
  }
}
.header_menu_navi .openbtn {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #ff0000;
  cursor: pointer;
  width: 111px;
  height: 111px;
  z-index: 10;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn {
    width: 54px;
    height: 54px;
  }
}
.header_menu_navi .openbtn span {
  display: inline-block;
  position: absolute;
  left: 33px;
  width: 45px;
  height: 5px;
  background: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn span {
    left: 17px;
    width: 19px;
    height: 2px;
  }
}
.header_menu_navi .openbtn span:nth-of-type(1) {
  top: 42px;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn span:nth-of-type(1) {
    top: 20px;
  }
}
.header_menu_navi .openbtn span:nth-of-type(2) {
  top: 54px;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn span:nth-of-type(2) {
    top: 26px;
  }
}
.header_menu_navi .openbtn span:nth-of-type(3) {
  top: 66px;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn span:nth-of-type(3) {
    top: 32px;
  }
}
.header_menu_navi .openbtn.active {
  background: transparent;
  transition: all 0.4s;
  transition-delay: 0.1s;
}
.header_menu_navi .openbtn.active span:nth-of-type(1) {
  width: 45px;
  top: 43px;
  left: 36px;
  transform: translateY(6px) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn.active span:nth-of-type(1) {
    width: 20px;
    top: 17px;
    left: 17px;
  }
}
.header_menu_navi .openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.header_menu_navi .openbtn.active span:nth-of-type(3) {
  width: 45px;
  top: 55px;
  left: 36px;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .openbtn.active span:nth-of-type(3) {
    width: 20px;
    top: 29px;
    left: 17px;
  }
}
.header_menu_navi .g_nav_wrap {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 5;
  width: 25%;
  height: 100vh;
  overflow: auto;
  background: rgba(255, 0, 0, 0.95);
  transition: all 0.3s;
}
@media screen and (max-width: 1500px) {
  .header_menu_navi .g_nav_wrap {
    width: 30%;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .g_nav_wrap {
    width: 100%;
  }
}
.header_menu_navi .g_nav_wrap.panelactive {
  right: 0;
}
.header_menu_navi .g_nav {
  list-style: none;
  margin: 155px 50px 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .g_nav {
    margin-top: 100px;
  }
}
.header_menu_navi .g_nav li {
  margin-bottom: 20px;
}
.header_menu_navi .g_nav a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .header_menu_navi .g_nav a {
    font-size: 16px;
  }
}

.header_bg {
  height: 112px;
}
@media screen and (max-width: 1000px) {
  .header_bg {
    height: 54px;
  }
}

/*　上に上がる動き　*/
.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
footer 
-------------------------*/
.footer {
  color: #fff;
  text-align: center;
}
.footer_wrap {
  padding: 75px 0 20px;
  background: #cc0000;
}
@media screen and (max-width: 1000px) {
  .footer_wrap {
    padding: 30px 0 70px;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer_navi_wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .footer_navi_wrap {
    flex-wrap: wrap;
  }
}
.footer_navi {
  list-style: none;
  margin: 0 50px;
  padding: 0;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .footer_navi {
    width: 46%;
    margin: 0 0 0 2%;
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_navi:nth-child(3) {
    -moz-column-count: 2;
         column-count: 2;
    width: 94%;
    padding-top: 15px;
    border-top: #d63333 solid 1px;
  }
}
.footer_navi li {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer_navi li {
    margin-bottom: 16px;
    padding-left: 15px;
  }
}
.footer_links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 36px;
}
@media screen and (max-width: 1000px) {
  .footer_links {
    font-size: 30px;
  }
}
.footer_links li {
  margin: 0 7px;
}
.footer .copyright {
  font-size: 12px;
}

.top_slide {
  margin: 0;
  padding: 0;
}

.top_posts_wrap {
  padding: 45px 0 80px;
  background: #fff7ec url(../images/bg_top_posts_wrap.png) no-repeat top center;
  background-size: contain;
}
@media screen and (max-width: 1500px) {
  .top_posts_wrap {
    background-size: auto;
  }
}
@media screen and (max-width: 1000px) {
  .top_posts_wrap {
    padding: 25px 0;
    background-image: none;
  }
}

.top_posts_note {
  display: flex;
  justify-content: space-between;
  width: 1090px;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .top_posts_note {
    width: auto;
    margin: 0 35px;
  }
}

.main_search {
  display: flex;
  position: relative;
}
.main_search_wrap {
  width: 1120px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 20px;
  border: #7f4949 solid 5px;
  background: #fff;
}
@media screen and (max-width: 1160px) {
  .main_search_wrap {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .main_search_wrap {
    margin: 0 15px;
    padding: 25px 10px 15px;
  }
}
@media screen and (max-width: 1000px) {
  .main_search {
    flex-wrap: wrap;
  }
}
.main_search::before, .main_search::after {
  content: "\f0d7";
  position: absolute;
  top: 0;
  left: calc(20% - 20px);
  width: 30px;
  height: 55px;
  line-height: 55px;
  color: #666666;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .main_search::before, .main_search::after {
    width: 16px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    left: calc(50% - 20px);
  }
}
.main_search::after {
  left: calc(40% - 20px);
}
@media screen and (max-width: 1000px) {
  .main_search::after {
    left: unset;
    right: 5px;
  }
}
.main_search select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.main_search select::-ms-expand {
  display: none;
}
.main_search_area_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .main_search_area_wrap {
    width: 100%;
  }
}
.main_search_area, .main_search_area2, .main_search_txt {
  width: 50%;
  height: 55px;
  padding: 0 20px;
  border: #666 solid 1px;
  border-radius: 10px 0 0 10px;
  border-right: none;
  background: transparent;
  color: #707070;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .main_search_area, .main_search_area2, .main_search_txt {
    width: 50%;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
  }
}
.main_search_area2 {
  border-radius: 0;
  border-left-style: dashed;
}
@media screen and (max-width: 1000px) {
  .main_search_area2 {
    border: #666 solid 1px;
    border-radius: 0 8px 8px 0;
  }
}
.main_search_area_btn {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .main_search_area_btn {
    margin: 10px 10px 0;
  }
}
.main_search_area_btn a {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 22px;
  border: #cc0000 solid 1px;
  border-radius: 50px;
  color: #cc0000;
  font-size: 16px;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .main_search_area_btn a {
    margin: 0 0 3px;
    padding: 5px 15px;
    font-size: 10px;
  }
}
.main_search_area_btn a:last-child {
  margin-right: 0;
}
.main_search_area_btn a.act {
  background: #cc0000;
  color: #fff;
}
.main_search_txt {
  width: 47%;
  border-radius: 0;
}
@media screen and (max-width: 1000px) {
  .main_search_txt {
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
    border: #666 solid 1px;
  }
}
.main_search_txt::-moz-placeholder {
  color: #b4b4b4;
}
.main_search_txt::placeholder {
  color: #b4b4b4;
}
.main_search_btn {
  width: 13%;
  height: 55px;
  border: #666 solid 1px;
  border-radius: 0 10px 10px 0;
  border-left: none;
  background: #ff0000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 0 1px #ff0000 inset, 0 0 0 2px #ff8d8d inset;
}
@media screen and (max-width: 1000px) {
  .main_search_btn {
    width: auto;
    height: 40px;
    margin: 20px auto 0;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
  }
}
.main_search_btn:hover {
  cursor: pointer;
  opacity: 0.9;
}

.top_posts_wrap .post_lists_wrap {
  width: 1347px;
  margin: 64px auto 0;
}
@media screen and (max-width: 1380px) {
  .top_posts_wrap .post_lists_wrap {
    width: auto;
    margin: 64px 20px 0;
  }
}
@media screen and (max-width: 1000px) {
  .top_posts_wrap .post_lists_wrap {
    margin: 30px 18px 0;
  }
}
.top_posts_wrap .post_lists {
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .top_posts_wrap .post_lists {
    margin-top: 0;
  }
}

.top_author_wrap {
  width: 1445px;
  margin: 60px auto;
}
@media screen and (max-width: 1500px) {
  .top_author_wrap {
    width: auto;
  }
}
@media screen and (max-width: 1000px) {
  .top_author_wrap {
    margin: 30px auto 0;
  }
}
.top_author_lists {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .top_author_lists {
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 18px 0;
  }
}
.top_author_list {
  width: 180px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .top_author_list {
    width: auto;
    margin: 0 1%;
  }
}
@media screen and (max-width: 1000px) {
  .top_author_list {
    width: 30%;
    margin-bottom: 4%;
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .top_author_list:nth-child(7) {
    display: none;
  }
}
.top_author_list a {
  color: #7f4949;
  text-decoration: none;
}
.top_author_list_img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  border-radius: 300px;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .top_author_list_img {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  .top_author_list_img {
    margin-bottom: 5px;
  }
}

.top_like_ranking {
  width: 1445px;
  margin: 0 auto;
}
.top_like_ranking_wrap {
  padding: 170px 0 126px;
  background: url(../images/bg_top_like_ranking.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .top_like_ranking_wrap {
    padding: 10% 0 6%;
  }
}
@media screen and (max-width: 1000px) {
  .top_like_ranking_wrap {
    padding: 8% 0 12%;
    background-image: url(../images/sp/bg_top_like_ranking.png);
  }
}
@media screen and (max-width: 1500px) {
  .top_like_ranking {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1500px) {
  .top_like_ranking {
    margin: 0 8px;
  }
}

.top_access_ranking {
  width: 1445px;
  margin: 0 auto;
}
.top_access_ranking_wrap {
  padding: 165px 0 175px;
  background: url(../images/bg_top_access_ranking.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .top_access_ranking_wrap {
    padding: 10% 0 6%;
  }
}
@media screen and (max-width: 1000px) {
  .top_access_ranking_wrap {
    margin-top: -3%;
    padding: 8% 0 12%;
    background-image: url(../images/sp/bg_top_access_ranking.png);
  }
}
@media screen and (max-width: 1500px) {
  .top_access_ranking {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1500px) {
  .top_access_ranking {
    margin: 0 8px;
  }
}

.top_tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .top_tabs {
    margin-top: 16px;
  }
}
.top_tabs_item {
  display: inline-block;
  width: 100%;
  padding-bottom: 5px;
  border: #660000 solid 4px;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: #fff;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .top_tabs_item {
    border-width: 2px 2px 0;
  }
}
.top_tabs_item img {
  opacity: 0.7;
  transition: 0.3s;
}
.top_tabs_item:hover img {
  opacity: 0.5;
  transition: 0.3s;
}
.top_tabs_item_cafe {
  border-color: #863936;
}
.top_tabs_item_cafe.is-btn-active {
  border-color: #660000;
}
.top_tabs_item_cafe.is-btn-active img {
  background: linear-gradient(transparent 60%, #ffe8d9 60%);
}
.top_tabs_item_sweets {
  border-color: #db4c4c;
}
.top_tabs_item_sweets.is-btn-active {
  border-color: #cc0000;
}
.top_tabs_item_sweets.is-btn-active img {
  background: linear-gradient(transparent 60%, #ffe0d9 60%);
}
.top_tabs_item_pub {
  border-color: #70944c;
}
.top_tabs_item_pub.is-btn-active {
  border-color: #336600;
}
.top_tabs_item_pub.is-btn-active img {
  background: linear-gradient(transparent 60%, #d8efc1 60%);
}
.top_tabs_item.is-btn-active {
  margin: -7px 0 -7.5px;
  border-width: 7px 7px 0;
}
@media screen and (max-width: 1000px) {
  .top_tabs_item.is-btn-active {
    margin: -4px 0 -4.5px;
    border-width: 4px 4px 0;
  }
}
.top_tabs_item.is-btn-active img {
  opacity: 1;
}
.top_tabs_item.is-btn-active img:hover {
  opacity: 0.7;
}

.top_tab_contents {
  display: none;
  padding: 20px;
  border: #660000 solid 7px;
  border-radius: 0 0 10px 10px;
}
.top_tab_contents_wrap {
  background: #fff;
}
@media screen and (max-width: 1500px) {
  .top_tab_contents {
    padding: 1.5%;
  }
}
@media screen and (max-width: 1000px) {
  .top_tab_contents {
    border-width: 4px;
  }
}
.top_tab_contents.top_tab_contents_sweets {
  border-color: #cc0000;
}
.top_tab_contents.top_tab_contents_pub {
  border-color: #336600;
}
.top_tab_contents.is-contents-active {
  display: block;
}
.top_tab_contents li:nth-child(6) {
  display: none;
}
@media screen and (max-width: 1000px) {
  .top_tab_contents li:nth-child(6) {
    display: block;
  }
}

.top_signup {
  padding: 86px 108px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.top_signup_wrap {
  display: flex;
  justify-content: center;
  margin-top: 95px;
  background: url(../images/bg_top_signup.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .top_signup_wrap {
    margin-top: 6%;
  }
}
@media screen and (max-width: 1000px) {
  .top_signup_wrap {
    padding-bottom: 25%;
    background: url(../images/sp/bg_top_signup.png) no-repeat bottom center;
    background-size: contain;
  }
}
@media screen and (max-width: 1000px) {
  .top_signup {
    padding: 8%;
    border: #ff0000 double 3px;
    background: #fff;
  }
}
.top_signup h2 {
  color: #ff0000;
  font-size: 32px;
}
@media screen and (max-width: 1000px) {
  .top_signup h2 {
    font-size: 20px;
  }
}
.top_signup p {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .top_signup p {
    font-size: 14px;
  }
}
.top_signup_btn {
  display: inline-block;
  margin-top: 40px;
  padding: 25px 55px;
  background: #ff0000;
  border-radius: 10px;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .top_signup_btn {
    display: block;
    padding: 20px;
    font-size: 14px;
  }
}
.top_signup_btn:hover {
  opacity: 1;
  background: #ff3333;
  transition: 0.3s;
}

.contents {
  width: 1120px;
  margin: 0 auto;
  padding: 60px 150px 80px;
  background: #fff;
  border-radius: 20px;
}
.contents_wrap {
  padding: 90px 0;
  background: #fff5e4;
}
@media screen and (max-width: 1000px) {
  .contents_wrap {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1160px) {
  .contents {
    width: auto;
    margin: 0 15px;
    padding: 30px calc(150px - 1%) 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .contents {
    padding: 30px 15px 40px;
  }
}
.contents ul.list {
  list-style: disc;
  padding: 0.5rem 0.5rem 1rem 2rem;
}
.contents ol.list {
  list-style: decimal;
  padding: 0.5rem 0.5rem 1rem 2rem;
}
.contents li {
  margin-bottom: 0.3rem;
}
.contents label {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .contents label {
    font-size: 12px;
  }
}
.contents label span {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .contents label span {
    font-size: 12px;
  }
}
.contents input[type=text],
.contents input[type=email],
.contents input[type=password] {
  width: 100%;
  padding: 10px 15px;
  border: #cccccc solid 1px;
  border-radius: 10px;
  color: #333;
  font-family: var(--default_font);
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .contents input[type=text],
.contents input[type=email],
.contents input[type=password] {
    margin: 8px 0 25px;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 5px;
  }
}
.contents input[type=text]::-moz-placeholder, .contents input[type=email]::-moz-placeholder, .contents input[type=password]::-moz-placeholder {
  color: #b4b4b4;
}
.contents input[type=text]::placeholder,
.contents input[type=email]::placeholder,
.contents input[type=password]::placeholder {
  color: #b4b4b4;
}
.contents textarea {
  width: 100%;
  padding: 10px 15px;
  border: #cccccc solid 1px;
  border-radius: 10px;
  color: #333;
  font-family: var(--default_font);
  font-size: 16px;
  resize: vertical;
}
@media screen and (max-width: 1000px) {
  .contents textarea {
    border-radius: 5px;
    font-size: 14px;
  }
}
.contents textarea::-moz-placeholder {
  color: #b4b4b4;
}
.contents textarea::placeholder {
  color: #b4b4b4;
}
.contents input[type=checkbox] {
  vertical-align: middle;
}
.contents select {
  border: #ccc solid 1px;
  border-radius: 5px;
}
.contents .form_error {
  display: none;
  position: absolute;
  margin: -44px 15px 0;
  padding: 5px 15px;
  border: #ff0000 solid 1px;
  border-radius: 5px;
  background: #fff;
  color: #ff0000;
  font-size: 16px;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .contents .form_error {
    margin: -22px 15px 0;
    padding: 2px 10px;
    font-size: 8px;
  }
}
.contents .form_error.form_error_act {
  display: block;
}
.contents .form_error:before, .contents .form_error:after {
  position: absolute;
  top: -24px;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.contents .form_error:before {
  margin-left: -12px;
  border-bottom-color: #f00;
  border-width: 12px;
}
.contents .form_error:after {
  margin-left: -13px;
  border-bottom-color: white;
  border-width: 13px;
}

.style_h1 {
  color: #660000;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .style_h1 {
    font-size: 22px;
  }
}
.style_h1 span {
  position: relative;
}
.style_h1 span::before, .style_h1 span::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -78px;
  width: 52px;
  height: 72px;
  background: url(../images/bg_h1_folk.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .style_h1 span::before, .style_h1 span::after {
    top: -10px;
    left: -39px;
    width: 26px;
    height: 36px;
  }
}
.style_h1 span::after {
  left: unset;
  right: -68px;
  background: url(../images/bg_h1_spoon.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .style_h1 span::after {
    right: -34px;
  }
}

.style_h2 {
  margin-top: 60px;
  color: #ff0000;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .style_h2 {
    margin-top: 30px;
    font-size: 20px;
  }
}

.btn {
  width: 256px;
  height: 60px;
  line-height: 60px;
  border: #ff0000 solid 1px;
  border-radius: 10px;
  background: #ff0000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.3s;
}
.btn_wrap {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .btn_wrap {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.btn_reverse {
  background: none;
  color: #ff0000;
}
.btn:hover {
  opacity: 0.9;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn_style_round {
  display: inline-block;
  width: 220px;
  height: 40px;
  line-height: 40px;
  margin-top: 1rem;
  padding: 0 20px;
  background: #f00;
  border: #f00 solid 1px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .btn_style_round {
    font-size: 12px;
    width: 180px;
  }
}
.btn_style_round_reverse {
  background: #fff;
  color: #f00;
}
.btn_style_round + .btn_style_round {
  margin-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .btn_style_round + .btn_style_round {
    margin-left: 0;
  }
}
.btn_style_round.d_inline {
  width: auto;
}
.btn_style_round_2line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  line-height: unset;
}
.btn_style_round_small {
  width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-size: 13px;
}
@media screen and (max-width: 1000px) {
  .btn_style_round_small {
    font-size: 10px;
  }
}

.dl_style {
  display: flex;
  margin: 0;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .dl_style {
    display: block;
  }
}
.dl_style dt {
  width: 15%;
  padding: 20px 0;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .dl_style dt {
    width: auto;
    padding: 20px 0 10px;
  }
}
.dl_style dd {
  width: 85%;
  margin: 0;
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .dl_style dd {
    width: auto;
    padding: 0 0 20px;
  }
}

.membership_form_wrap {
  width: 555px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1000px) {
  .membership_form_wrap {
    width: auto;
    margin-top: 30px;
  }
}
.membership_form input[type=text],
.membership_form input[type=email],
.membership_form input[type=password] {
  margin: 15px 0 50px;
  padding: 18px 30px;
  background: #f2f2f2;
}
@media screen and (max-width: 1000px) {
  .membership_form input[type=text],
.membership_form input[type=email],
.membership_form input[type=password] {
    padding: 10px 15px;
  }
}

.mypage_menu {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 20px;
  border-bottom: #600 solid 2px;
  font-size: 18px;
}
.mypage_menu_wrap {
  margin: 50px auto;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .mypage_menu_wrap {
    width: auto;
    margin: 25px auto;
  }
}
@media screen and (max-width: 1000px) {
  .mypage_menu {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 5px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .mypage_menu li {
    width: 48%;
  }
}
.mypage_menu a {
  color: #663300;
  font-weight: bold;
  text-decoration: none;
}

.mypage_news,
.mypage_comment {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .mypage_news,
.mypage_comment {
    margin-bottom: 20px;
  }
}
.mypage_news .dl_style:nth-child(odd),
.mypage_comment .dl_style:nth-child(odd) {
  background: #fffcf7;
}

.mypage_comment_wrap {
  display: flex;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
}
.mypage_comment_thum {
  width: 175px;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_thum {
    width: auto;
    margin-bottom: 1rem;
  }
}
.mypage_comment_thum_img {
  width: 125px;
  height: 125px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.mypage_comment_thum_img img {
  max-width: 100%;
}
.mypage_comment_box {
  width: 100%;
}
.mypage_comment_item {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_item {
    margin-bottom: 25px;
  }
}
.mypage_comment_author {
  margin-bottom: 0.5rem;
  color: #663300;
}
.mypage_comment_author strong {
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_author strong {
    font-size: 16px;
  }
}
.mypage_comment_author a {
  display: inline-block;
  margin-left: 20px;
  padding: 2px 10px;
  border: #663300 solid 1px;
  border-radius: 50px;
  color: #663300;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_author a {
    margin-left: 10px;
    font-size: 13px;
  }
}
.mypage_comment_txt {
  margin-bottom: 0.5rem;
}
.mypage_comment_textarea {
  position: relative;
}
.mypage_comment_textarea textarea {
  width: 100%;
  padding: 10px;
  padding-right: 1.5rem;
  border-radius: 10px;
  font-size: 16px;
  resize: vertical;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_textarea textarea {
    font-size: 14px;
  }
}
.mypage_comment_textarea_btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_textarea_btn {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
.mypage_comment_reply_list {
  position: relative;
  padding-left: 20px;
  border-left: #663300 solid 2px;
}
.mypage_comment_reply_list dt {
  margin-bottom: 0.5rem;
  padding-right: 1.5rem;
  color: #663300;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_reply_list dt {
    font-size: 16px;
  }
}
.mypage_comment_reply_list dd + dt {
  margin-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .mypage_comment_reply_list dd + dt {
    margin-top: 1rem;
  }
}
.mypage_comment_reply_list dd {
  margin: 0;
  padding: 0;
}
.mypage_comment_reply_list_btn {
  position: absolute;
  right: 0;
}

.mypage_setting_tbl {
  width: 100%;
  margin: 40px 0;
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl {
    margin: 20px 0;
  }
}
.mypage_setting_tbl th, .mypage_setting_tbl td {
  padding: 15px 10px;
  vertical-align: text-top;
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl th, .mypage_setting_tbl td {
    display: block;
    padding: 0;
  }
}
.mypage_setting_tbl th {
  width: 10rem;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl th {
    width: auto;
    margin-bottom: 0.5rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl th br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl td {
    margin-bottom: 1rem;
  }
}
.mypage_setting_tbl td a {
  text-decoration: none;
}
.mypage_setting_tbl input[type=text],
.mypage_setting_tbl input[type=email] {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl input[type=text],
.mypage_setting_tbl input[type=email] {
    margin: 0;
    padding: 10px 15px;
    font-size: 14px;
  }
}
.mypage_setting_tbl label {
  margin-right: 2rem;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .mypage_setting_tbl label {
    margin-right: 1rem;
    font-size: 14px;
  }
}
.mypage_setting_tbl .error {
  color: #f00;
  font-size: 13px;
}

.post_edit .post_item {
  padding: 20px 20px 0;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item {
    padding: 10px 20px 0;
  }
}
.post_edit .post_item_bg {
  margin-bottom: 2rem;
  background: #fffcf7;
}
.post_edit .post_item_bg_select_shop {
  padding: 20px;
  border-radius: 10px;
  background: #fff5e4;
}
.post_edit .post_item_tit {
  padding-bottom: 1rem;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_tit {
    padding-bottom: 0.5rem;
    font-size: 14px;
  }
}
.post_edit .post_item_tit span {
  font-size: 0.8rem;
  font-weight: normal;
}
.post_edit .post_item_tit .uma_coin {
  display: inline-block;
  margin-left: 1rem;
  padding: 3px 5px 3px 10px;
  background: #fff;
  border: #ffdfaa solid 1px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}
.post_edit .post_item_tit .uma_coin img {
  width: 20px;
}
.post_edit .post_item .accordion_box {
  padding-bottom: 20px;
}
.post_edit .post_item input[type=text] {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item input[type=text] {
    margin: 0;
    font-size: 14px;
  }
}
.post_edit .post_item .post_item_serch {
  display: flex;
  justify-content: center;
}
.post_edit .post_item .post_item_serch input[type=text] {
  margin: 0;
  border-radius: 10px 0 0 10px;
  border-right: none;
}
.post_edit .post_item .post_item_serch button {
  min-width: 90px;
  margin: 0;
  border: #ccc solid 1px;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 0 0 1px #ff0000 inset, 0 0 0 2px #ff8d8d inset;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item .post_item_serch button {
    height: 46px;
  }
}
.post_edit .post_item .post_item_serch_btn {
  margin-bottom: 1rem;
}
.post_edit .post_item .btn_style_round {
  width: 170px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: normal;
}
.post_edit .post_item_nearby_store {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_nearby_store {
    flex-wrap: wrap;
  }
}
.post_edit .post_item_nearby_store li {
  width: 100px;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_nearby_store li {
    width: 30%;
    margin-bottom: 1rem;
  }
}
.post_edit .post_item_nearby_store_img {
  width: 100px;
  height: 100px;
  border-radius: 200px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_nearby_store_img {
    width: 100%;
    height: auto;
  }
}
.post_edit .post_item_address {
  background: #D9D9D9;
}
.post_edit .post_item select {
  padding: 10px;
  color: #333;
  font-size: 16px;
  height: 43px;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item select {
    font-size: 14px;
  }
}
.post_edit .post_item.photo_type label {
  font-size: 16px;
  font-weight: normal;
}
.post_edit .post_item_photo {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_photo {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_photo li {
    width: 30%;
  }
}
.post_edit .post_item_photo_img {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 0.5rem;
  background: #fff;
  border: #ccc solid 1px;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_photo_img {
    width: 25vw;
    height: 25vw;
    line-height: 25vw;
  }
}
.post_edit .post_item_photo select {
  width: 100px;
  margin-bottom: 0.5rem;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .post_edit .post_item_photo select {
    width: 100%;
    margin-bottom: 0;
  }
}
.post_edit .post_item_photo input[type=text] {
  width: calc(100% - 1.5rem);
  margin: 10px 0;
  padding: 3px;
  border-radius: 5px;
}
.post_edit .post_item textarea {
  width: 100%;
  padding: 10px;
  border-color: #ccc;
  font-size: 16px;
  resize: vertical;
}
.post_edit .post_item .cb_item {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.post_edit .post_item .cb_item label {
  font-size: 14px;
  font-weight: normal;
}
.post_edit .post_item .input_price {
  width: calc(100% - 1.5rem);
}

.store_profile {
  width: 625px;
  margin: -60px auto 0;
}
.store_profile_wrap {
  padding-top: 0;
}
.store_profile_wrap .contents {
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 1000px) {
  .store_profile {
    width: auto;
    margin-top: -30px;
  }
}
.store_profile_mainimg {
  position: relative;
}
.store_profile_mainimg img {
  width: 100%;
}
.store_profile_mainimg_edit_btn {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  background: #fff;
  border-radius: 50px;
}
.store_profile_mainimg_edit_btn a {
  display: block;
}
.store_profile_tit {
  font-size: 30px;
}
.store_profile_tit_wrap {
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .store_profile_tit_wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .store_profile_tit {
    font-size: 22px;
  }
}
.store_profile_tit_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.store_profile_tit_icon_img {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  margin-bottom: 10px;
  overflow: hidden;
}
.store_profile_tit span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.store_profile_tit span img {
  display: inline-block;
  width: 22px;
  margin: 5px 5px 0 0;
}
.store_profile_slider {
  padding: 30px 0;
}
@media screen and (max-width: 1000px) {
  .store_profile_slider {
    padding: 15px 0;
  }
}
.store_profile_slider .slick-slide {
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.store_profile_slider .slick-slide.slick-center {
  opacity: 1; /*透過なし*/
}
.store_profile_slider .slick-next:before, .store_profile_slider .slick-prev:before {
  color: #333;
  font-family: var(--font_awesome);
  font-weight: bold;
}
.store_profile_slider .slick-next, .store_profile_slider .slick-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
}
.store_profile_slider .slick-prev {
  left: 15px;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .store_profile_slider .slick-prev {
    left: 5px;
  }
}
.store_profile_slider .slick-prev:before {
  content: "\f104";
}
.store_profile_slider .slick-next {
  right: 15px;
}
@media screen and (max-width: 1000px) {
  .store_profile_slider .slick-next {
    right: 5px;
  }
}
.store_profile_slider .slick-next:before {
  content: "\f105";
}
.store_profile_slider .slick-dots {
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .store_profile_slider .slick-dots {
    bottom: -5px;
  }
}
.store_profile_slider .slick-dots li button:before {
  font-size: 12px;
}
.store_profile_slider .slick-dots li button:focus:before,
.store_profile_slider .slick-dots li button:hover:before {
  opacity: 0.25;
}
.store_profile_slider .slick-dots li.slick-active button:before {
  opacity: 0.75;
}
@media screen and (max-width: 1000px) {
  .store_profile_slider iframe {
    width: 300px;
    height: 169px;
  }
}
.store_profile_fixedBtn_wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: red;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .store_profile_fixedBtn_wrap {
    bottom: 61px;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1000px) {
  .store_profile_fixedBtn {
    display: flex;
    justify-content: center;
  }
}
.store_profile_tbl {
  margin: 2rem 0;
}
@media screen and (max-width: 1000px) {
  .store_profile_tbl {
    margin: 0 0 1rem;
  }
}
.store_profile_tbl th, .store_profile_tbl td {
  padding: 15px;
  vertical-align: top;
}
@media screen and (max-width: 1000px) {
  .store_profile_tbl th, .store_profile_tbl td {
    display: block;
    padding: 5px;
  }
}
.store_profile_tbl th {
  width: 7rem;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .store_profile_tbl th {
    width: auto;
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .store_profile_tbl th br {
    display: none;
  }
}
.store_profile_edit_btn {
  white-space: nowrap;
}
.store_profile_edit_btn a {
  display: inline-block;
  padding: 5px 15px;
  border: #c00 solid 1px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
}
.store_profile_btn_bg {
  background: #cc0000;
}
.store_profile_btn_bg p {
  padding-bottom: 1rem;
}
.store_profile iframe {
  max-width: 100%;
}
.store_profile_cat_list {
  margin: 2rem 0 0.5rem;
}
@media screen and (max-width: 1000px) {
  .store_profile_cat_list {
    white-space: nowrap;
    overflow-x: scroll;
    padding-bottom: 0.5rem;
  }
}
.store_profile_cat_list a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 3px 15px;
  border: #c00 solid 1px;
  border-radius: 30px;
  text-decoration: none;
}
.store_profile_cat_list a.act {
  background: #c00;
  color: #fff;
}
.store_profile .post_lists {
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .store_profile .post_lists {
    margin-top: 0.5rem;
  }
}
.store_profile .post_lists .post_item {
  width: 33.2%;
  margin-bottom: 0;
}
.store_profile_sns {
  margin-top: 2rem;
  text-align: center;
}
.store_profile_sns ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 38px;
}
.store_profile_sns ul li {
  margin: 0 8px;
}
.store_profile_sns a {
  color: #f00;
}
.store_profile_for_signup {
  margin-top: 5rem;
  padding: 15px 15px 40px;
  border: #f00 solid 1px;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .store_profile_for_signup {
    margin-top: 2.5rem;
  }
}
.store_profile_for_signup h2 {
  color: #f00;
}
.store_profile_for_signup_btn {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1.5rem;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .store_profile_for_signup_btn {
    flex-direction: column;
  }
}
.store_profile_for_signup_btn .btn_style_round {
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .store_profile_for_signup_btn div + div {
    margin-top: 1rem;
  }
}
.store_profile_accordion_title {
  margin-top: 30px;
  padding: 15px;
  border-radius: 10px;
  background: #f00;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .store_profile_input .mypage_setting_tbl {
    margin-bottom: 0;
  }
}
.store_profile_input .mypage_setting_tbl th, .store_profile_input .mypage_setting_tbl td {
  vertical-align: middle;
}
.store_profile_input .mypage_setting_tbl th span {
  font-size: 80%;
  font-weight: normal;
}
.store_profile_input .mypage_setting_tbl label {
  margin: 0;
}
.store_profile_input button {
  padding: 5px 8px;
  background: #fff;
  border: #aaa solid 1px;
  border-radius: 5px;
}
.store_profile_input select {
  margin: 0 10px;
  padding: 5px 8px;
  border: #aaa solid 1px;
  border-radius: 5px;
}
.store_profile_input select.no_mrg {
  margin: 0;
}
.store_profile_input textarea {
  width: 100%;
  padding: 5px 8px;
  border: #aaa solid 1px;
  border-radius: 5px;
  resize: vertical;
}
.store_profile_input_post_headerimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-top: -1rem;
  padding: 15px;
  background: #D8D8D8;
  font-size: 80%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .store_profile_input_post_headerimg {
    margin-top: 0;
  }
}
.store_profile_input_post_profilerimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-top: -1rem;
  background: #D8D8D8;
  border-radius: 120px;
}
@media screen and (max-width: 1000px) {
  .store_profile_input_post_profilerimg {
    margin-top: 0;
  }
}
.store_profile_input_hour {
  display: flex;
}
.store_profile_input_hour + .store_profile_input_hour {
  margin-top: 1rem;
}
.store_profile_input .cb_item {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.store_profile_input_price {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
.store_profile_input_price_wrap {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .store_profile_input_price_wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .store_profile_input_price {
    margin-bottom: 0.5rem;
  }
}
.store_profile_input_price input[type=text] {
  width: 8rem;
  margin: 0 10px !important;
}
.store_profile_input_submit {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .store_profile_input_submit {
    flex-direction: column;
    align-items: center;
  }
}

.contributor_list {
  width: 625px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .contributor_list {
    width: auto;
    margin-top: -30px;
  }
}
.contributor_list .post_lists {
  justify-content: space-between;
}
.contributor_list .post_lists .post_item {
  width: 33.2%;
  margin-bottom: 0;
}
.contributor_list--list {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.contributor_list--list:first-of-type {
  margin-top: 5rem;
}
.contributor_list--list--img_wrap {
  display: flex;
  align-items: center;
}
.contributor_list--list--img {
  width: 68px;
  height: 68px;
  border-radius: 68px;
  margin-right: 1rem;
  flex: none;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .contributor_list--list--img {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .contributor_list--list--btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
}
@media screen and (max-width: 1000px) {
  .contributor_list--list--btn .btn_style_round {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .contributor_list--list--btn span {
    display: none;
  }
}

.form_reserve .post_item {
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .form_reserve .post_item {
    padding: 10px;
  }
}
.form_reserve .post_item_bg {
  margin-bottom: 2rem;
  background: #fffcf7;
}
.form_reserve .post_item_tit {
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: bold;
}
.form_reserve .post_item_tit span {
  font-size: 0.8rem;
  font-weight: normal;
}
.form_reserve .post_item_tit .uma_coin {
  display: inline-block;
  width: 4rem;
  margin-left: 1rem;
  padding: 3px;
  background: #fff;
  border: #ffdfaa solid 1px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}
.form_reserve .post_item_tit .uma_coin img {
  width: 20px;
}
.form_reserve .post_item select {
  width: 100%;
  padding: 10px;
  border-color: #ccc;
  border-radius: 5px;
  color: #333;
  font-size: 16px;
}
.form_reserve--calendar .month {
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  font-weight: bold;
}
.form_reserve--calendar .month a {
  color: #333;
}
.form_reserve--calendar_tbl {
  margin-bottom: 40px;
  border: #ccc solid 1px;
  border-radius: 10px;
}
.form_reserve--calendar_tbl table {
  width: 100%;
  border-collapse: collapse;
}
.form_reserve--calendar_tbl .week {
  background: #F4F4F4;
  font-weight: bold;
}
.form_reserve--calendar_tbl .week .sunday {
  color: #F44336;
  border-radius: 10px 0 0 0;
}
.form_reserve--calendar_tbl .week .saturday {
  color: #00bcd4;
  border-radius: 0 10px 0 0;
}
.form_reserve--calendar_tbl td {
  padding: 10px 5px;
  font-size: 14px;
  text-align: center;
}
.form_reserve--calendar_tbl td:hover,
.form_reserve--calendar_tbl td .is_sellect {
  background: #FFFBF0;
}
.form_reserve--calendar_tbl td span, .form_reserve--calendar_tbl td a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.form_reserve--calendar_tbl td + td {
  border-left: #ccc solid 1px;
}
.form_reserve--calendar_tbl tr + tr {
  border-top: #ccc solid 1px;
}
.form_reserve--calendar_tbl tr:last-child > td:first-child {
  border-radius: 0 0 0 10px;
}
.form_reserve--calendar_tbl tr:last-child > td:last-child {
  border-radius: 0 0 10px 0;
}
.form_reserve--calendar_tbl .is_past,
.form_reserve--calendar_tbl .is_next {
  background: #FAFAFA;
  color: #999999;
}
.form_reserve label {
  font-size: 100%;
  font-weight: normal;
}
.form_reserve input[type=text] {
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.form_reserve--flex_item {
  width: 49%;
}
.form_reserve--flex_item_wrap {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .form_reserve--flex_item_wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .form_reserve--flex_item {
    width: auto;
  }
}
.form_reserve--uma_cash_txt {
  margin: 2rem 0;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .form_reserve--uma_cash_txt {
    margin: 0;
    text-align: left;
  }
}
.form_reserve--uma_cash {
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .form_reserve--uma_cash {
    align-items: stretch;
  }
}
.form_reserve--uma_cash span {
  display: inline-block;
  padding: 8px;
  background: #fff5e4;
  font-size: 80%;
  margin-left: 10px;
}
@media screen and (max-width: 1000px) {
  .form_reserve--uma_cash span {
    margin-left: 0;
  }
}
.form_reserve--txt {
  margin: 5rem 0 0;
}
.form_reserve--txt p {
  margin-bottom: 1rem;
}
.form_reserve--txt strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 110%;
}

.guide_serch {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.guide_serch_wrap {
  width: 650px;
  margin: 5rem auto 0;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .guide_serch_wrap {
    width: auto;
    margin-top: 2rem;
  }
}
.guide_serch input[type=text] {
  margin: 0;
  border-radius: 10px 0 0 10px;
  border-right: none;
}
.guide_serch button {
  min-width: 90px;
  margin: 0;
  border: #ccc solid 1px;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 0 0 1px #ff0000 inset, 0 0 0 2px #ff8d8d inset;
}
@media screen and (max-width: 1000px) {
  .guide_serch button {
    height: 46px;
  }
}
.guide_serch_btn {
  margin-bottom: 2rem;
}
.guide .txt {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .guide .txt {
    margin-top: 1rem;
    text-align: left;
  }
}
.guide_index {
  width: 30%;
}
.guide_index_wrap {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0;
}
@media screen and (max-width: 1000px) {
  .guide_index_wrap {
    flex-direction: column;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .guide_index {
    width: auto;
  }
}
.guide_index ul.list {
  padding-left: 1rem;
}
.guide_index li {
  margin-bottom: 0.5rem;
}
.guide_index a {
  color: #333;
  text-decoration: none;
  transition: color 0.1s;
}
.guide_index a:hover {
  color: #f00;
  transition: color 0.1s;
}
.guide h2 {
  padding: 5px;
  border-bottom: #f00 solid 3px;
  color: #f00;
}
.guide h3 {
  color: #f00;
}
@media screen and (max-width: 1000px) {
  .guide h3 {
    margin-bottom: 0.5rem;
  }
}
.guide p {
  margin-bottom: 1rem;
}
.guide p + ol, .guide p + ul {
  margin-top: -1rem;
}
.guide_txt {
  margin: 0 40px 3rem;
}
@media screen and (max-width: 1000px) {
  .guide_txt {
    margin: 0 15px 1.5rem;
  }
}

.showModal_btn {
  display: inline-block;
}

.showModal_box {
  display: none;
}

.contents_modal {
  width: auto;
  padding: 0 150px 40px;
}
@media screen and (max-width: 1000px) {
  .contents_modal {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .contents_modal .post_item {
    padding: 20px 0 0;
  }
}

.modaal-container {
  border-radius: 10px;
}
.modaal-content-container {
  padding-bottom: 45px;
}
.modaal-content-container h2 {
  color: #f00;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .modaal-content-container p {
    font-size: 14px;
  }
}
.modaal-content-container .change_user_name_box_txt {
  margin: 0 15%;
}
@media screen and (max-width: 1000px) {
  .modaal-content-container .change_user_name_box_txt {
    margin: 0;
  }
}

.show_more_item.is-hidden, .show_more_btn.is-hidden {
  display: none;
}

.accordion_title {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion_title::after {
  position: absolute;
  content: "\f0d7";
  font-family: var(--font_awesome);
  width: 15px;
  height: 2px;
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.accordion_title.accordion_open::after {
  content: "\f0d8";
}
.accordion_box {
  display: none;
}

.toggle_button {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 25px;
  border-radius: 25px;
  border: #4bd865 solid 2px;
  background-color: #4bd865;
  cursor: pointer;
  transition: background-color 0.4s;
}
.toggle_button_box {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.toggle_button:has(:checked) {
  background-color: #dddddd;
  border: #ddd solid 2px;
}
.toggle_button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  content: "";
  transition: left 0.2s;
}
.toggle_button:has(:checked)::after {
  left: 25px;
}
.toggle_button input {
  display: none;
}
/*# sourceMappingURL=style.css.map */