@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700;800;900&display=swap");
.contsTtl .redH {
  background: #d00f31;
}

.redBtn {
  background-color: #d00f31;
  -webkit-box-shadow: 0px -5px 0px 0px #a2031f inset;
  box-shadow: 0px -5px 0px 0px #a2031f inset;
}

.cpBtnY {
  background: #fad025;
  color: #111111;
  -webkit-box-shadow: 0px -5px 0px 0px #b39f3f inset;
  box-shadow: 0px -5px 0px 0px #b39f3f inset;
}

.cpBtnG {
  background: #2dad55;
  -webkit-box-shadow: 0px -5px 0px 0px #1f823e inset;
  box-shadow: 0px -5px 0px 0px #1f823e inset;
}

/* page */
/* 共通 */
.disp_sp {
  display: none !important;
}

._mt0 {
  margin-top: 0 !important;
}

.ulp_page {
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.ulp_page .inner {
  padding: 0 6%;
}

@media only screen and (max-width: 767px) {
  .disp_sp {
    display: block !important;
  }
  .disp_pc {
    display: none !important;
  }
  .ulp_page .inner {
    padding: 0 20px;
  }
}
/* ---------------- */
.attention {
  margin-top: 10px;
  padding: 84px 0 64px;
  background: #C7161E;
}
.attention__box {
  position: relative;
  background-color: white;
  padding: 55px 6% 6%;
  border-radius: 6px;
}
.attention__deco {
  position: absolute;
  content: "";
  background-size: contain;
  max-width: 400px;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -36px;
  z-index: 2;
}
.attention__bar {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #EEEEEE;
  content: "";
  cursor: pointer;
}
.attention__bar::after {
  width: 28px;
  height: 17px;
  background: url(../img/icon-arrow.png) no-repeat center/contain;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.attention__bar.js-active::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.attention__title {
  text-align: center;
  padding-bottom: 36px;
  border-bottom: solid 11px rgba(232, 56, 13, 0.5);
  color: #390700;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
}
.attention__title > span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(76%, transparent), color-stop(76%, #FFF100));
  background: linear-gradient(transparent 76%, #FFF100 76%);
}
.attention__body {
  padding-top: 48px;
}
.attention__body > *:first-child {
  margin-top: 0 !important;
}
.attention__heading {
  color: #E8380D;
  font-weight: bold;
  position: relative;
  margin-top: 30px;
  padding-left: 1.4em;
  font-size: 21px;
}
.attention__heading::before {
  content: "■";
  position: absolute;
  background-size: contain;
  left: 0;
  top: 0;
}
.attention__heading + * {
  margin-top: 6px !important;
}
.attention__list, .attention__text, .attention__notes, .attention__numList {
  font-size: 16px;
  margin-top: 1.2em;
  line-height: 1.75;
  font-weight: 500;
}
.attention__text.-right {
  text-align: right;
}
.attention__list > li {
  padding-left: 1em;
  position: relative;
}
.attention__list > li > * {
  margin-top: 6px !important;
}
.attention__list > li + li {
  margin-top: 6px;
}
.attention__list > li::before {
  position: absolute;
  content: "・";
  width: 1em;
  top: 0;
  left: 0;
}
.attention__notes {
  padding-left: 1em;
  text-indent: -1em;
}
.attention__notes.-indent3 {
  padding-left: 3em;
  text-indent: -3em;
  margin: 1.2em 0;
}
.attention__notes > li + li {
  margin-top: 6px;
}
.attention__numList {
  counter-reset: list-counter;
}
.attention__numList > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1.5em;
}
.attention__numList > li::before {
  content: counter(list-counter) "．";
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 960px) {
  .attention__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .attention__deco {
    max-width: 300px;
    top: -20px;
  }
}
@media only screen and (max-width: 600px) {
  .attention {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .attention__box {
    padding: 50px 20px 24px;
  }
  .attention__body {
    padding-top: 24px;
  }
  .attention__title {
    padding-bottom: 20px;
    font-size: 21px;
    border-width: 7px;
  }
  .attention__deco {
    max-width: 220px;
    width: 60%;
    top: -10px;
  }
  .attention__heading {
    font-size: 18px;
    margin-top: 24px;
  }
  .attention__list, .attention__text, .attention__notes, .attention__numList {
    font-size: 15px;
  }
}

.contactBox {
  margin-top: 48px;
  border: solid 20px rgba(232, 56, 13, 0.2);
  padding: 30px 0 40px;
}
.contactBox__title {
  color: #E8380D;
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  margin: 0;
}
.contactBox__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
.contactBox__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
}
.contactBox__item:first-child {
  border-right: solid 1px #8E8E8F;
}
.contactBox__heading {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}
.contactBox__contact {
  display: block;
  text-align: center;
  margin: 0;
}
.contactBox__contact dt {
  margin: 32px 0 0 0;
  font-weight: 500;
  font-size: 14px;
  color: #C7161E;
  display: block;
}
.contactBox__contact dd {
  display: block;
  margin: 0;
}
.contactBox__contact dd a {
  pointer-events: none;
}
.contactBox__num {
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  display: block;
  color: black;
  margin-top: 4px;
}
.contactBox__num small {
  font-size: 22px;
}
.contactBox__notes {
  color: #8E8E8F;
  font-size: 13px;
  padding-left: 1em;
  text-indent: -1em;
  margin: 8px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .contactBox {
    border-width: 12px;
  }
  .contactBox__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 16px;
  }
  .contactBox__item {
    padding-left: 0;
    padding-right: 0;
  }
  .contactBox__item:first-child {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-right: none;
    border-bottom: solid 1px #8E8E8F;
  }
  .contactBox__contact dd a {
    pointer-events: auto;
  }
}
@media only screen and (max-width: 600px) {
  .contactBox {
    padding-top: 24px;
    padding-bottom: 24px;
    border-width: 8px;
  }
  .contactBox__title {
    font-size: 18px;
  }
  .contactBox__heading {
    font-size: 16px;
  }
  .contactBox__contact dt {
    font-size: 13px;
    margin-top: 20px;
  }
  .contactBox__num {
    font-size: 24px;
  }
  .contactBox__num small {
    font-size: 17px;
  }
  .contactBox__notes {
    font-size: 12px;
  }
}

.store {
  padding: 64px 0;
}
.store__heading {
  text-align: center;
  font-weight: 900;
  font-size: 36px;
  margin: 0;
  padding: 17px;
  background: url(../img/title-bg.png) no-repeat center/cover, #E8380D;
  border-radius: 4px;
  color: white;
}
.store__notes {
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 24px;
  margin: 32px 0 0 0;
}
.store__notes > em {
  font-style: normal;
  color: #E8380D;
}
.store__map {
  margin-top: 32px;
}
.store .store-list + .store__map {
  margin-top: 64px !important;
}
@media only screen and (max-width: 600px) {
  .store {
    padding: 40px 0;
  }
  .store__heading {
    font-size: 24px;
    padding: 12px;
    font-weight: bold;
  }
  .store__notes {
    font-size: 17px;
    margin-top: 24px;
  }
  .store__map {
    margin-top: 24px;
  }
  .store .store-list + .store__map {
    margin-top: 40px !important;
  }
}

.store-list {
  padding: 0;
  margin: 24px 0 0 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  position: relative;
}
.store-list::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  border-right: dotted 4px black;
  top: 0;
  left: calc(50% - 6px);
}
@media only screen and (max-width: 600px) {
  .store-list {
    margin: 16px 0 0 0;
    display: block;
  }
  .store-list::before {
    display: none;
  }
}
.store-list__item {
  padding: 6px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 600px) {
  .store-list__item {
    padding: 6px 8px !important;
  }
  .store-list__item:nth-child(odd) {
    background: #FDEBE7 !important;
  }
}
.store-list__item.-bg {
  background: #FDEBE7;
}
@media only screen and (max-width: 600px) {
  .store-list__item.-bg {
    background: none;
  }
}
.store-list__num {
  margin-right: 8px;
  color: white;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  line-height: 1;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 600px) {
  .store-list__num {
    font-size: 16px;
    width: 28px;
    height: 28px;
  }
}
.store-list__name {
  font-weight: 500;
  font-size: 16px;
  margin-right: 4px;
}
.store-list__name small {
  font-size: 14px;
}
@media only screen and (max-width: 600px) {
  .store-list__name {
    font-size: 15px;
  }
}
.store-list__label {
  display: inline-block;
  margin-left: auto;
  border-radius: 4px;
  padding: 4px 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.store-list__label.-pink {
  background: #EC6D7B;
}
.store-list__label.-pink2 {
  background: #EC4CA5;
}
.store-list__label.-green {
  background: #00A9A5;
}
.store-list__label.-lightGreen {
  background: #82C041;
}
.store-list__label.-orange {
  background: #EA5220;
}
.store-list__label.-orange2 {
  background: #F08300;
}
.store-list__label.-yellow {
  background: #F6AB00;
}
.store-list__label.-blue {
  background: #4C9ED4;
}
.store-list__label.-gray {
  background: #8E8E8F;
}
@media only screen and (max-width: 600px) {
  .store-list__label {
    font-size: 13px;
  }
}
.store-list.-map1 {
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
}
.store-list.-map1 .store-list__num {
  background: #AF3E92;
}
.store-list.-map1 .store-list__item:nth-child(-n+4) {
  padding-right: 16px;
}
.store-list.-map1 .store-list__item:nth-child(n+5) {
  padding-left: 16px;
}
.store-list.-map2 {
  -ms-grid-rows: (auto)[13];
  grid-template-rows: repeat(13, auto);
}
.store-list.-map2 .store-list__num {
  background: #E9267C;
}
.store-list.-map2 .store-list__item:nth-child(n+8) .store-list__num {
  background: #F08300;
}
.store-list.-map2 .store-list__item:nth-child(-n+13) {
  padding-right: 16px;
}
.store-list.-map2 .store-list__item:nth-child(n+14) {
  padding-left: 16px;
}
.store-list.-map3 {
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
}
.store-list.-map3 .store-list__num {
  background: #26ACA6;
}
.store-list.-map3 .store-list__item:last-child .store-list__num {
  background: #6FBA2C;
}
.store-list.-map3 .store-list__item:nth-child(-n+2) {
  padding-right: 16px;
}
.store-list.-map3 .store-list__item:nth-child(n+3) {
  padding-left: 16px;
}
.store-list.-map4 {
  -ms-grid-rows: (auto)[23];
  grid-template-rows: repeat(23, auto);
}
.store-list.-map4 .store-list__num {
  background: #22AC38;
}
.store-list.-map4 .store-list__item:nth-child(-n+23) {
  padding-right: 16px;
}
.store-list.-map4 .store-list__item:nth-child(n+24) {
  padding-left: 16px;
}
.store-list.-map5 {
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
}
.store-list.-map5 .store-list__num {
  background: #E9267C;
}
.store-list.-map5 .store-list__item:nth-child(-n+4) {
  padding-right: 16px;
}
.store-list.-map5 .store-list__item:nth-child(n+5) {
  padding-left: 16px;
}