@charset "UTF-8";
html,
body,
header,
footer,
div,
ul,
li,
section,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body img {
  vertical-align: bottom;
  margin: 0 auto;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.4rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
}

#wrapper a {
  transition: opacity 0.2s;
}

#wrapper a:hover {
  opacity: 0.6;
  cursor: pointer;
}

.shopList {
  background: #f4f0ea;
}
.shopList_heading {
  padding: 7.552083% 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shopList_heading {
    margin-right: 5%;
    margin-left: 5%;
  }
}
.shopList_buttons {
  border: solid #003e92;
  border-width: 3px 3px 0 3px;
  display: flex;
  margin-top: 5.5833%;
}
@media screen and (max-width: 767px) {
  .shopList_buttons {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.other .shopList_buttons {
  border-color: #6190d0;
}
.shopList_button {
  flex: 1;
  list-style: none;
}
.shopList_button + .shopList_button {
  border-left: 3px solid #003e92;
}
.other .shopList_button + .shopList_button {
  border-color: #6190d0;
}
.shopList_button button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  width: 100%;
  height: 95px;
  border-radius: 0;
  border: none;
  font-size: 28px;
  color: #003e92;
  font-weight: bold;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .shopList_button button {
    height: 50px;
    font-size: 14px;
  }
}
.shopList_button button:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.other .shopList_button button {
  color: #6190d0;
  pointer-events: none;
}
.shopList_button button.is-active {
  background: #003e92;
  color: #fff;
  pointer-events: none;
}
.other .shopList_button button.is-active {
  background: #6190d0;
}
.shopList_wrap {
  background: #003e92;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .shopList_wrap {
    padding: 30px 0;
  }
}
.other .shopList_wrap {
  background: #6190d0;
}
.shopList_list {
  max-width: 1080px;
  margin: 0 auto;
  display: none;
}
.shopList_list.is-active {
  display: block;
}

.cmn-shop-list > li {
  background: #fff;
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  height: 100px;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cmn-shop-list > li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list > li {
    height: auto;
    display: block;
    margin-top: 15px;
  }
}
.cmn-shop-list .prefecture {
  width: 4.5em;
  font-size: 28px;
  color: #fff;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .prefecture {
    position: absolute;
    top: 0;
    width: 2em;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
.cmn-shop-list .prefecture span {
  position: relative;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .prefecture span {
    font-size: 13px;
  }
}
.cmn-shop-list .prefecture::before {
  content: "";
  width: 6em;
  height: 6em;
  border-radius: 100%;
  background: #6ca5d9;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.other .cmn-shop-list .prefecture::before {
  background-color: #003e92;
}
.cmn-shop-list .shopName {
  font-size: 24px;
  font-weight: bold;
  margin-left: 0.75em;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .shopName {
    width: auto;
    font-size: 18px;
    padding: 0.5em 0 0.5em 70px;
    margin: 0;
  }
}
.cmn-shop-list .data {
  background: #f4f0ea;
  flex: 1;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .data {
    padding: 0.5em 0 0.5em 70px;
  }
}
.cmn-shop-list .tel {
  margin: 0;
  height: 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .tel {
    font-size: 18px;
    display: flex;
    align-items: center;
  }
}
.cmn-shop-list .tel::before {
  content: "TEL:";
  font-size: 25px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .tel::before {
    font-size: 14px;
    display: none;
  }
}
.cmn-shop-list .links {
  display: flex;
  margin-left: auto;
  align-items: center;
  height: 100%;
}
.cmn-shop-list .links li {
  list-style: none;
  font-size: 1px;
  line-height: 1;
  padding: 0 24px;
  height: 70%;
  display: flex;
  align-items: center;
}
.cmn-shop-list .links li.flyer {
  background: url(../images/shoplist/shoplist_line.png) repeat-y right top/3px auto;
}
.cmn-shop-list .links li.flyer img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .links li.flyer img {
    width: 80px;
  }
}
.cmn-shop-list .links li.site img {
  width: 85px;
}
@media screen and (max-width: 767px) {
  .cmn-shop-list .links li.site img {
    width: 60px;
  }
}

.shopList-other {
  background: #00A5E3;
  padding: 7.6563% 2%;
  padding: clamp(60px, 7.6563%, 147px) 2%;
  margin-top: 3.5%;
}
.shopList-other h2 {
  text-align: center;
}
.shopList-other h3 {
  color: #fff;
  font-size: 2.4rem;
  padding: 8px 0 8px 20px;
  font-weight: bold;
  margin: 7.5% 0 2%;
  border: #fff 2px solid;
}
.shopList-other .cmn-shop-list .prefecture::before {
  background-color: #004EA2;
}

.safety {
  background: #ffffff;
  padding: 5.2083% 0;
}

.information {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #E95383;
  display: flex;
  padding: 0;
}
.information li {
  width: 100%;
  list-style: none;
}
.information a {
  display: block;
  text-align: center;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .information a {
    padding: 15px 15px;
  }
}
.information a img {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .information a img {
    height: auto;
    max-width: 80%;
  }
}
.information li + li {
  border-left: 1px solid #000;
}
.information img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 85px;
  display: inline;
}

.siteTop {
  padding: 5% 5% 20%;
  text-align: center;
}

/*-----------------------
  表示分岐class
-----------------------*/
.hide-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}

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

.contents_title_txt img {
  max-width: 934px;
}
.contents_sec01_parts01 {
  background: url(../images/bg_01.png) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contents_sec01_parts01 {
    padding: 0 20px;
  }
}
.contents_sec01_parts01 img {
  max-width: 1023px;
}
.contents_sec01_parts02 {
  padding: 80px 0 40px;
}
@media screen and (max-width: 767px) {
  .contents_sec01_parts02 {
    padding: 30px 20px;
  }
}
.contents_sec01_parts02 img {
  max-width: 957px;
}
.contents_sec01_parts03 {
  background-color: #e5004f;
}
@media screen and (max-width: 767px) {
  .contents_sec01_parts03 {
    padding: 0 20px;
  }
}
.contents_sec01_parts03 img {
  max-width: 1026px;
}
.contents_sec01_parts04 {
  padding: 55px 0 100px;
}
@media screen and (max-width: 767px) {
  .contents_sec01_parts04 {
    padding: 30px 20px;
  }
}
.contents_sec01_parts04 img {
  max-width: 998px;
}
.contents_sec01_parts05 {
  background: url(../images/bg_02.png) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contents_sec01_parts05 {
    padding: 0 20px;
  }
}
.contents_sec01_parts05 img {
  max-width: 963px;
}
.contents_sec02_parts01 {
  padding-top: 87px;
}
@media screen and (max-width: 767px) {
  .contents_sec02_parts01 {
    padding: 35px 20px;
  }
}
.contents_sec02_parts01_title {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .contents_sec02_parts01_title {
    margin-bottom: 35px;
  }
}
.contents_sec02_parts01_img {
  margin-bottom: 20px;
}
.contents_sec02_parts01_name {
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .contents_sec02_parts01_name {
    margin-bottom: 60px;
  }
}
.contents_sec02_parts01 img {
  width: auto !important;
}
.contents_sec02_parts02 {
  background: url(../images/bg_03.png) no-repeat center top;
  background-size: cover;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .contents_sec02_parts02 {
    padding: 60px 20px;
  }
}
.contents_sec02_parts02_title {
  margin-bottom: 55px;
}
.contents_sec02_parts02_img {
  margin-bottom: 20px;
}
.contents_sec02_parts02_name {
  margin-bottom: 95px;
}
.contents_sec02_parts02 img {
  width: auto !important;
}
.contents_sec03 {
  margin-bottom: 60px;
}
.contents_sec03_headding {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .contents_sec03_headding {
    margin-bottom: 40px;
  }
}
.contents_sec03_inner {
  margin: auto;
  max-width: 827px;
  padding: 60px 0;
  border-top: 2px dotted #00a0e9;
}
@media screen and (max-width: 767px) {
  .contents_sec03_inner {
    padding: 40px 20px;
  }
}
.contents_sec03 > div:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.contents img {
  width: 100%;
}

.information {
  background: #ED6D34;
}

.shopList .inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: block;
}

.mb0 {
  margin-bottom: 0;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.AutoMargin {
  margin: auto;
}/*# sourceMappingURL=style.css.map */