/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP&family=Roboto:wght@500&display=swap");
.sp_only {
  display: none;
}
@media screen and (max-width: 780px) {
  .sp_only {
    display: inline-block;
  }
}

@media screen and (max-width: 780px) {
  .pc_only {
    display: none;
  }
}

.container {
  max-width: 780px;
  width: 90%;
  margin: 0 auto;
}

.clr_red {
  color: #ff0000;
}

input[type=text], select, textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(39, 39, 39, 0.7);
  background-color: #f2f2f2;
  font-family: YuGothic, "YuGothic", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  padding: 8px;
  box-sizing: border-box;
  display: inline-block;
  letter-spacing: 0.08em;
}
input[type=text].input__item--half, select.input__item--half, textarea.input__item--half {
  width: 200px;
}
input[type=text].input__item--ylw, select.input__item--ylw, textarea.input__item--ylw {
  background: rgba(255, 255, 2, 0.1);
}

input[type=checkbox] {
  margin-right: 6px;
  vertical-align: top;
  margin-top: 0.42em;
}

input[type=submit], input[type=button] {
  cursor: pointer;
  font-family: YuGothic, "YuGothic", "Yu Gothic", sans-serif;
  border: none;
  color: #fff;
  box-sizing: border-box;
  padding: 30px 0;
  display: inline-block;
  width: 440px;
  transition: all 0.3s;
  border-radius: 1000px;
  background: #272727;
  font-size: 25px;
  font-weight: bold;
  box-shadow: 3px 4px 11px rgba(39, 39, 39, 0.7);
  letter-spacing: 0.1em;
}
input[type=submit].input__item--cv, input[type=button].input__item--cv {
  background-color: #0096d6;
}
input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.4;
}
@media screen and (max-width: 780px) {
  input[type=submit], input[type=button] {
    width: 80%;
    font-size: 20px;
    padding: 17px 0;
  }
}

/* CSS Document */
html {
  overflow-y: scroll;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

main, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 14px;
  font-family: YuGothic, "YuGothic", "Yu Gothic", sans-serif;
  color: #111;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 780px) {
  body {
    line-height: 1.9;
  }
}

a {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.4;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

input, select {
  vertical-align: middle;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* CSS Document */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  padding: 10px 2px;
  background-color: #ffe102;
}
header .container--header {
  max-width: 100%;
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .nav_pop{
  position: absolute;
  top: 52px;
  right: 126px;
  height: auto;
}
@media screen and (max-width: 1380px) {
  header .nav_pop{
    right: 60px;
    top: 18px;
  }
}
@media screen and (max-width: 780px) {
  header .nav_pop{
    right: calc(5% + 36px );
    top: calc( 50% + 3px );
    width: 180px;
    transform: translateY(-50%);
  }
}
header .nav_trg_wrap {
  display: none;
}
@media screen and (max-width: 1380px) {
  header .nav_trg_wrap {
    display: inline-block;
    width: 36px;
    height: 26px;
    position: relative;
    top: 3px;
    left: 0;
    z-index: 8;
  }
  header .nav_trg {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  header .nav_trg--active .nav_trg__item--1 {
    transform: rotate(-36deg);
  }
  header .nav_trg--active .nav_trg__item--2 {
    opacity: 0;
  }
  header .nav_trg--active .nav_trg__item--3 {
    transform: rotate(36deg);
  }
  header .nav_trg__item {
    display: inline-block;
    border-radius: 100px;
    background: #272727;
    height: 4px;
    width: 100%;
    transition: all 0.3s ease-out;
    transform-origin: right;
    position: absolute;
    left: 0;
  }
  header .nav_trg__item--1 {
    top: 0;
  }
  header .nav_trg__item--2 {
    top: 42%;
  }
  header .nav_trg__item--3 {
    bottom: 0;
  }
}
@media screen and (max-width: 780px) {
  header {
    padding: 0 0 3px;
    border-bottom: 4px solid #ffe102;
  }
  header .container--header {
    padding: 10px 5%;
  }
  header h1 {
    width: 33%;
    max-width: 200px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 6;
  }
  header h1 img {
    width: 100%;
  }
}

nav {
  display: flex;
}
nav .nav__list {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
nav .nav__list--cv {
  margin-right: 0;
}
nav .nav__list--cv .list__item {
  margin-right: 0;
}
nav .list__item {
  margin-right: 38px;
  font-weight: bold;
  position: relative;
  top: 0;
  left: 0;
}
nav .list__item:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  height: 3px;
  width: 0;
  background: #000;
  transition: .1s ease-out;
}
nav .list__item:hover:after,
nav .list__item.list__item--active:after {
  width: 100%;
  left: 0;
}
nav .list__item span {
  display: inline-block;
  line-height: 1em;
  cursor: pointer;
}
nav .list__item a, nav .list__item span {
  font-size: 15px;
}
nav .list__item--contact-icon {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin-right: 5px;
  position: relative;
  top: 3px;
  left: 0;
}
nav .list__item--contact-icon img {
  width: 100%;
  vertical-align: baseline;
}
nav .list__item--contact,
nav .list__item--contact a {
  font-size: 12px;
}
nav .list__item--btn a {
  padding: 8px 15px;
  border-radius: 1000px;
  color: #fff;
}
nav .list__item--line {
  margin-left: 28px;
}
nav .list__item--line a {
  background-color: #00b900;
  box-shadow: 0px 3px 0px #009b00;
  padding: 5px 20px;
  font-size: 16px;
  display: inline-block;
}
nav .list__item--shop {
  margin-left: 11px;
}
nav .list__item--shop:after,
nav .list__item--line:after {
  display: none;
}
nav .list__item--shop a {
  font-size: 12px;
  background-color: #009cd0;
  box-shadow: 0px 3px 0px #007eb2;
  display: inline-block;
}
nav .list__item .fa-angle-right {
  margin-left: 8px;
}
nav .list__item--store a{
  font-size: 15px;
}
nav .list__item--store-icon {
  display: inline-block;
  background: url(../images/store_icon.svg) no-repeat center / 100% auto;
  width: 16px;
  height: 20px;
  margin-right: 6px;
  position: relative;
  top: 4px;
  left: 0;
}
nav .nav__list--cv .list__item.list__item--store {
  margin-right: 18px;
  margin-top: -1px;
}
nav .list__item--contact {
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-top: -1px;
}
nav .list__item--contact:hover {
  opacity: 0.4;
}
nav .list__item--cv a {
  background-color: #0096d6;
  border-radius: 1000px;
  padding: 10px 20px;
  color: #fff;
  font-size: 19px;
  box-shadow: 2px 2px 6px rgba(39, 39, 39, 0.4);
}
@media screen and (max-width: 1380px) {
  nav {
    opacity: 0;
    display: none;
    position: fixed;
    z-index: 5;
    top: 40px;
    right: 0;
    min-width: 430px;
    width: 46%;
    height: 100vh;
    padding: 10% 6% 13%;
    background-color: #ffe102;
    border-bottom: none;
    overflow: auto;
  }
  nav.nav--active {
    display: block;
  }
  nav .nav__list {
    flex-direction: column;
    margin-right: 0;
    text-align: center;
  }
  nav .list__item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  nav .list__item::after{
    bottom: -2px;
  }
  nav .list__item img {
    width: 100%;
  }
  nav .list__item a, nav .list__item span {
    font-size: 26px;
  }
  nav .list__item--contact {
    font-size: 26px;
    margin-bottom: 70px;
  }
  nav .list__item--btn a {
    padding: 10px 15px;
    border-radius: 1000px;
    color: #fff;
  }
  nav .list__item--line {
    margin-left: 0;
  }
  nav .list__item--line a {
    padding: 12px 50px;
  }
  nav .list__item--shop a {
    font-size: 22px;
    padding: 10px 30px;
  }
  nav .list__item--store-icon{
    top: 0;
  }
  nav .nav__list--cv .list__item.list__item--store{
    margin-right: 0;
    margin-top: 0;
  }
  nav .nav__list--cv .list__item.list__item--contact{
    margin-top: 0;
  }
  nav .list__item--contact-icon {
    width: 20px;
    top: 0;
  }
}
@media screen and (max-width: 780px) {
  nav {
    width: 100%;
    min-width: 0;
    padding: 25% 6% 30%;
  }
  nav .list__item {
    margin-bottom: 20px;
  }
  nav .list__item a, nav .list__item span {
    font-size: 18px;
  }
  nav .list__item--contact {
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 40px;
  }
  nav .list__item--line a {
    padding: 4px 50px;
  }
  nav .list__item--shop a {
    font-size: 16px;
    padding: 2px 30px;
  }
  nav .list__item--store-icon{
    top: 4px;
  }
  nav .list__item--contact-icon {
    margin-right: 3px;
  }
}
@media screen and (max-width: 400px) {
  nav {
    padding: 30% 6% 30%;
  }
}

.bottom__nav {
  display: none;
}
@media screen and (max-width: 780px) {
  .bottom__nav {
    position: fixed;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #0096d6;
    display: flex;
    justify-content: space-between;
    padding: 6px 5%;
  }
  .bottom__nav .nav__item--contact {
    width: 40%;
  }
  .bottom__nav .nav__item--contact a {
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
    background-color: #272727;
    border-radius: 1000px;
    padding: 10px 0px;
    color: #fff;
    font-size: 14px;
    width: 100%;
  }
  .bottom__nav .nav__item--cv {
    width: 57%;
  }
  .bottom__nav .nav__item--cv a {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
    width: 100%;
    background-color: #0096d6;
    border-radius: 1000px;
    padding: 10px 0px;
    color: #fff;
    font-size: 14px;
  }
}

footer {
  text-align: center;
  padding-top: 104px;
}
@media screen and (max-width: 780px) {
  footer {
    padding-top: 40px;
  }
}
footer .foot__contact .contact__title {
  font-size: 22px;
  font-weight: bold;
}
footer .foot__contact .contact__btn {
  margin-top: 20px;
}
footer .foot__contact .contact__btn a {
  display: inline-block;
  line-height: 1em;
  color: #fff;
  font-weight: bold;
  background: #272727;
  box-sizing: border-box;
  padding: 22px 40px;
  font-size: 25px;
  border-radius: 1000px;
  box-shadow: 3px 4px 11px rgba(39, 39, 39, 0.7);
}
footer .foot__contact .contact__btn .fa-envelope {
  margin-right: 10px;
}
footer .foot__contact .contact__tell {
  display: flex;
  flex-direction: column;
  text-align: center;
}
footer .foot__contact .contact__tell .tell__head {
  font-size: 15px;
  padding-top: 52px;
  font-weight: bold;
}
footer .foot__contact .contact__tell .tell__content {
  margin-top: 13px;
}
footer .foot__contact .contact__tell .content__text--sub {
  margin-top: 8px;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  footer .foot__contact .contact__tell .tell__head {
    font-size: 13px;
    padding-top: 12px;
  }
  footer .foot__contact .contact__tell .tell__content {
    margin-top: 4px;
  }
  footer .foot__contact .contact__tell .content__text--main {
    margin: 0 auto;
    width: 210px;
  }
  footer .foot__contact .contact__tell .content__text--sub {
    margin-top: 8px;
    line-height: 1em;
  }
}
footer .foot__contact .contact__mail {
  width: 420px;
  margin: 20px auto 0;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  top: 0;
  left: 0;
}
footer .foot__contact .contact__mail:after, footer .foot__contact .contact__mail:before {
  content: "";
  height: 100%;
  width: 16px;
  border-top: 1px solid #272727;
  border-bottom: 1px solid #272727;
  position: absolute;
  top: 0;
}
footer .foot__contact .contact__mail:after {
  right: 0;
  border-right: 1px solid #272727;
}
footer .foot__contact .contact__mail:before {
  left: 0;
  border-left: 1px solid #272727;
}
footer .foot__contact .contact__mail .mail__text--link {
  margin-top: 8px;
}
footer .foot__contact .contact__mail .mail__text--link .fa-envelope {
  margin-right: 10px;
  color: #969696;
}
@media screen and (max-width: 780px) {
  footer .foot__contact .contact__mail .mail__text--link {
    margin-top: 4px;
  }
  footer .foot__contact .contact__mail .mail__text--link .fa-envelope {
    margin-right: 4px;
  }
}
footer .foot__contact .contact__cv__shop {
  margin-top: 104px;
  padding: 64px 5%;
  background-color: #e6e6e6;
}
footer .foot__contact .contact__cv__shop p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 13px;
}
footer .foot__contact .contact__cv__shop .btn__block a {
  max-width: 100%;
  font-size: 34px;
  letter-spacing: 0.1em;
  padding: 20px 56px;
}
@media screen and (max-width: 780px) {
  footer .foot__contact .contact__cv__shop {
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .foot__contact .contact__cv__shop p {
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  footer .foot__contact .contact__cv__shop .btn__block a {
    font-size: 18px;
    letter-spacing: 0.1em;
    padding: 8px 0;
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  footer .foot__contact .contact__title {
    font-size: 16px;
    line-height: 1em;
  }
  footer .foot__contact .contact__btn {
    margin-top: 20px;
  }
  footer .foot__contact .contact__btn a {
    padding: 16px 30px;
    font-size: 16px;
  }
  footer .foot__contact .contact__btn .fa-envelope {
    margin-right: 10px;
  }
  footer .foot__contact .contact__tell {
    margin-top: 10px;
  }
  footer .foot__contact .contact__tell .tell__head {
    font-size: 11px;
  }
  footer .foot__contact .contact__tell .content__text--main img {
    width: 100%;
    max-width: 480px;
  }
  footer .foot__contact .contact__tell .content__text--sub {
    font-size: 11px;
  }
  footer .foot__contact .contact__mail {
    width: 90%;
    max-width: 480px;
    font-size: 11px;
  }
}
footer .foot__thought{
  margin-top: 64px;
}
footer .foot__thought__link{
  display: block;
  max-width: 370px;
  text-align: center;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 0 #000;
  width: 80%;
}
footer .foot__thought__link img{
  margin-right: .5em;
}
@media screen and (max-width: 780px) {
  footer .foot__thought{
    margin-top: 40px;
  }
  footer .foot__thought__link{
    font-size: 16px;
  }
}
footer .foot__logo_list {
  margin-top: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .foot__logo_list .logo_list__item {
  display: flex;
  align-items: center;
}
footer .foot__logo_list .logo_list__item dt {
  text-align: center;
  margin-right: 18px;
}
footer .foot__logo_list .logo_list__item dt span {
  background-color: #ffe103;
  border-radius: 1000px;
  line-height: 1em;
  box-sizing: border-box;
  padding: 7px 28px;
  display: inline-block;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
footer .foot__logo_list .logo_list__item dd {
	margin-right: 16px;
  }
footer .foot__logo_list .logo_list__item--franomista {
  margin-right: 30px;
}
@media screen and (max-width: 780px) {
  footer .foot__logo_list {
    margin-top: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }
  footer .foot__logo_list .logo_list__item {
    flex-direction: column;
  }
  footer .foot__logo_list .logo_list__item dt {
    text-align: center;
    margin-right: 0;
  }
  footer .foot__logo_list .logo_list__item dt span {
    padding: 4px 0;
    font-size: 12px;
    width: 90px;
  }
  footer .foot__logo_list .logo_list__item dd {
    margin-bottom: 16px;
  }
}
footer .foot__nav {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 25px;
}
footer .foot__nav .nav__item {
  margin-right: 20px;
}
footer .foot__nav .nav__item .fa-external-link-alt,
footer .foot__nav .nav__item .fa-file-pdf {
  margin-left: 6px;
}
footer .foot__nav .nav__item:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 780px) {
  footer .foot__nav {
    font-size: 12px;
    margin-top: 40px;
    margin-bottom: 80px;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
  }
  footer .foot__nav .nav__item {
    margin-left: 0;
    margin-right: 0;
    margin-top: 8px;
    width: 49%;
  }
  footer .foot__nav .nav__item:not(:first-child) {
    margin-top: 8px;
    margin-left: 0;
  }
  footer .foot__nav .nav__item a {
    font-size: 10px;
  }
}
footer small {
  display: block;
  box-sizing: border-box;
  line-height: 1em;
  padding: 8px 0;
  font-size: 12px;
  background-color: #ffe102;
}
@media screen and (max-width: 780px) {
  footer small {
    font-size: 10px;
  }
}

.flowbtn-sp {
  display: none;
}
@media screen and (max-width: 780px) {
  .flowbtn-sp {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 28%;
    max-width: 110px;
    display: block;
  }
  .flowbtn-sp a {
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.3));
    border-radius: 100%;
    display: inline-block;
    width: 100%;
  }
}

/* CSS Document */
main {
  background: url(../images/content_bg.png) no-repeat center top;
  background-position: center 480px;
  background-color: #ffe103;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 780px) {
  main {
    background: #ffe103;
  }
}

section {
  position: relative;
  top: 0;
  left: 0;
  z-index: 5;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg__item {
  position: absolute;
  top: 0;
  left: -50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.bg__item--1 {
  background: url(../images/content_bg1.png) no-repeat center 480px;
  top: -35px;
  left: 189px;
}
.bg__item--2 {
  background: url(../images/content_bg2.png) no-repeat center 480px;
  top: -100px;
  left: -260px;
}
.bg__item--3 {
  background: url(../images/content_bg3.png) no-repeat center 480px;
  top: -110px;
  left: 170px;
}
.bg__item--4 {
  background: url(../images/content_bg4.png) no-repeat center 480px;
  top: -110px;
  left: -310px;
}
.bg__item--5 {
  background: url(../images/content_bg5.png) no-repeat center 480px;
  top: -180px;
  left: 230px;
}
.bg__item--6 {
  background: url(../images/content_bg6.png) no-repeat center 480px;
  top: -90px;
  left: 400px;
}
.bg__item--7 {
  background: url(../images/content_bg7.png) no-repeat center 480px;
  top: -50px;
  left: 230px;
}
.bg__item--8 {
  background: url(../images/content_bg8.png) no-repeat center 480px;
  top: -120px;
  left: 240px;
}
.bg__item--active {
  opacity: 1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 780px) {
  .bg__item {
    display: none;
  }
}
.bg__itemSp {
  display: none;
}
@media screen and (max-width: 780px) {
  .bg__itemSp {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  .bg__itemSp__anim {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
  }
  .bg__itemSp--1 .bg__itemSp__anim {
    top: -16px;
    left: 27px;
    background: url(../images/content_bg1_icon_sp.png) no-repeat center top/100% auto;
  }
  .bg__itemSp--2 {
    margin-top: 40px;
  }
  .bg__itemSp--2 .bg__itemSp__anim {
    top: -10px;
    left: -80px;
    background: url(../images/content_bg2_icon_sp.png) no-repeat center top/100% auto;
  }
  .bg__itemSp--3 .bg__itemSp__anim {
    top: -20px;
    left: 90px;
    background: url(../images/content_bg3_icon_sp.png) no-repeat center top/100% auto;
  }
  .bg__itemSp--4 .bg__itemSp__anim {
    top: -20px;
    left: -100px;
    background: url(../images/content_bg4_icon_sp.png) no-repeat center top/100% auto;
  }
}

.sec__title {
  margin-top: 16px;
  display: inline-block;
  background-color: #000;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1em;
  padding: 10px 0;
  color: #fff;
  border-radius: 1000px;
  font-size: 20px;
  letter-spacing: 0.1em;
  width: 180px;
}
.sec__title__block {
  text-align: center;
}
.sec__title__icon {
  display: block;
}
.sec__title__text {
  font-size: 28px;
  font-weight: bold;
  margin-top: 26px;
}
.sec__title__text--small {
  font-size: 11px;
}
@media screen and (max-width: 780px) {
  .sec__title {
    margin-top: 8px;
    padding: 6px 0;
    font-size: 13px;
    letter-spacing: 0.1em;
    width: 112px;
  }
  .sec__title__icon img {
    width: 38px;
  }
  .sec__title__text {
    font-size: 18px;
    margin-top: 12px;
    line-height: 1.6em;
  }
}

.btn__block {
  text-align: center;
}
.btn__block a {
  border-radius: 1000px;
  display: inline-block;
  background-color: #009cd0;
  box-shadow: 0px 3px 0px #007eb2;
  box-sizing: border-box;
  padding: 16px 75px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  max-width: 374px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 780px) {
  .btn__block a {
    font-size: 16px;
    padding: 10px 16px;
    width: 82%;
    letter-spacing: 0.2em;
  }
}
.btn__block--line a {
  background-color: #00b900;
  box-shadow: 0px 3px 0px #009b00;
  width: 100%;
  max-width: 100%;
  padding: 20px 75px;
  font-size: 33px;
  letter-spacing: 0em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 780px) {
  .btn__block--line a {
    padding: 6px 35px;
    font-size: 24px;
  }
}
.btn__block--asmitas a {
  background-color: #1ebec8;
  box-shadow: none;
  padding: 9px 100px;
}
@media screen and (max-width: 780px) {
  .btn__block--asmitas a {
    padding: 8px 0;
    width: 100%;
  }
}
.btn__block__attention {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.17em;
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .btn__block__attention {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.btn__block__campaign{
  height: auto;
}
@media screen and (max-width: 780px) {
  .btn__block__campaign{
    width: 260px;
  }
}
.btn__block__qr {
  text-align: center;
  margin-top: 54px;
}
@media screen and (max-width: 780px) {
  .btn__block__qr {
    display: none;
  }
}

.container {
  max-width: 1026px;
}

.mv {
  text-align: center;
  box-sizing: border-box;
  padding: 37px 0 0;
}
.mv .container--mv {
  max-width: 1160px;
  min-width: 1026px;
  width: 68%;
}
@media screen and (max-width: 1380px) {
  .mv .container--mv {
    max-width: 1026px;
    min-width: 0;
    width: 86%;
  }
}
@media screen and (max-width: 780px) {
  .mv .container--mv {
    width: 100%;
  }
}
.mv__main {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 780px) {
  .mv__main {
    display: block;
  }
}
.mv__main__item--text {
  margin-right: 7%;
  transition: all 0.3s;
}
@media screen and (max-width: 1380px) {
  .mv__main__item--text {
    margin-right: 0;
  }
}
.mv .mv__text {
  margin-bottom: 30px;
}
.mv .mv__text--intro {
  font-size: 34px;
  font-weight: bold;
}
.mv .mv__text--attention {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 30px;
}
.mv .btn__intro {
  margin-bottom: 12px;
}
@media screen and (max-width: 780px) {
  .mv {
    padding: 0;
    padding-bottom: 16px;
  }
  .mv .container {
    width: 100%;
  }
  .mv__main__item {
    display: none;
  }
  .mv .mv__text {
    margin-bottom: 24px;
  }
  .mv .mv__text--intro {
    font-size: 22px;
    font-weight: normal;
    margin-top: 14px;
  }
  .mv .mv__text--attention {
    font-size: 11px;
    margin-bottom: 0;
    margin-top: 24px;
    text-align: justify;
  }
}

.attention-wrap{
  margin: 80px auto 64px;
  display: inline-block;
  background-color: #4d4d4d;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  max-width: 90%;
}
.attention-content{
  display: flex;
}
.attention-title,
.attention-link{
  display: flex;
  align-items: center;
}
.attention-title{
  font-size: 15px;
  font-weight: bold;
  margin-right: 24px;
}
.attention-title-icon{
  display: inline-block;
  width: 18px;
  line-height: 1em;
  margin-right: 8px;
}
.attention-link{
  font-size: 16px;
  text-decoration: underline;
}
.attention-link-icon{
  display: inline-block;
  width: 14px;
  line-height: 1em;
  margin-left: 8px;
}
.sp--640{
  display: none;
}
@media screen and (max-width: 780px) {
  .attention-wrap{
    margin: 20px auto 20px;
    padding: 8px 8px;
    letter-spacing: 0em;
    border-radius: 8px;
  }
  .attention-title{
    font-size: 9px;
    margin-right: 5px;
  }
  .attention-title-icon{
    width: 12px;
    margin-right: 2px;
  }
  .attention-link{
    font-size: 10px;
  }
  .attention-link-icon{
    width: 9px;
    margin-left: 2px;
  }
  @media screen and (max-width: 320px) {
    .sp--640{
      display: inline-block;
    }
    .attention-content{
      justify-content: space-between;
    }
    .attention-title{
      width: 160px;
      margin-right: 0;
    }
    .attention-title-icon{
      margin-right: 4px;
      width: 8px;
    }
    .attention-link{
      width: 350px;
    }
  }
}

.intro {
  padding: 120px 0 30px;
}
.intro__block {
  display: -ms-flex;
  display: flex;
  padding: 0 17px;
  justify-content: space-between;
}
.intro__img {
  margin-top: 230px;
}
.intro .merit__list {
  max-width: 926px;
  width: 100%;
  margin: -62px auto 0;
  position: relative;
  padding-top: calc(124px + 62px);
  top: 0;
  left: 0;
}
.intro .merit__list:after {
  content: "";
  display: block;
  clear: both;
}
.intro .merit__item {
  position: relative;
  top: 0;
  left: 0;
}
.intro .merit__item:nth-child(even) {
  margin-left: 114px;
  float: right;
}
.intro .merit__item:nth-child(odd) {
  float: left;
}
.intro .merit__item:nth-child(2) {
  margin-top: 227px;
}
.intro .merit__item:nth-child(3) {
  margin-top: 100px;
}
.intro .merit__item:nth-child(4) {
  margin-top: 96px;
}
.intro .merit__item:nth-child(5) {
  margin-top: -168px;
}
.intro .merit__title {
  position: absolute;
  top: -62px;
  left: -37px;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}
.intro .merit__title span {
  display: inline-block;
  margin-bottom: 2px;
  background-color: #000;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 2px 6px 2px 9px;
}
.intro .merit__text {
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.7em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .intro .merit__list {
    max-width: 476px;
    width: 100%;
    margin: -54px auto 0;
    padding-top: calc(100px + 54px);
  }
  .intro .merit__list:after {
    content: "";
    display: block;
    clear: both;
  }
  .intro .merit__item:nth-child(even) {
    margin-left: 0;
    float: none;
  }
  .intro .merit__item:nth-child(odd) {
    float: none;
  }
  .intro .merit__item:nth-child(2) {
    margin-top: 72px;
  }
  .intro .merit__item:nth-child(3) {
    margin-top: 72px;
  }
  .intro .merit__item:nth-child(4) {
    margin-top: 72px;
  }
  .intro .merit__item:nth-child(5) {
    margin-top: 72px;
  }
  .intro .merit__item:first-child {
    margin-top: 0px;
  }
  .intro .merit__item dt {
    padding: 0 7%;
  }
}
@media screen and (max-width: 780px) {
  .intro {
    padding: calc(11px + 72px) 0 30px;
    margin-top: -72px;
  }
  .intro__block {
    display: block;
    padding: 0;
  }
  .intro__img {
    margin-top: 20px;
    padding: 0 7%;
  }
  .intro .merit__title {
    top: -54px;
    left: 10px;
    font-size: 17px;
  }
  .intro .merit__title span {
    padding: 1px 6px 2px 9px;
  }
  .intro .merit__text {
    margin-top: 8px;
    font-size: 12px;
  }
}

.shop {
  padding-top: 110px;
  text-align: center;
}
.shop__text {
  font-size: 40px;
  font-weight: bold;
  margin-top: 18px;
}
.shop__text--num {
  font-size: 77px;
  display: inline-block;
  padding: 0 8px;
  line-height: 1em;
}
.shop__text--attention {
  font-size: 12px;
  line-height: 1em;
}
.shop-cnt{
  border: 4px solid #000;
  max-width: 730px;
  box-sizing: border-box;
  margin: 40px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
}
.shop-cnt__inner{
  padding: 24px 40px 40px;
}
.shop-cnt__col{
  display: flex;
}
.shop-cnt__col-left{
  width: calc( 100% - 280px );
  text-align: left;
  font-weight: bold;
  padding-right: 48px;
  line-height: 1.8;
}
.shop-cnt__col-right{
  width: 280px;
}
.shop-cnt__btn{
  margin-top: 40px;
  background-color: #ffe100;
  display: block;
  max-width: 370px;
  text-align: center;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 0 #000;
}
.shop-cnt__btn img{
  margin-right: .5em;
}

@media screen and (max-width: 780px) {
  .shop {
    padding-top: 70px;
  }
  .shop__text {
    font-size: 22px;
    margin-top: 10px;
  }
  .shop__text--num {
    font-size: 44px;
  }
  .shop__text--attention {
    font-weight: bold;
    font-size: 10px;
  }
  .shop-cnt{
    border-width: 3px;
    margin-top: 24px;
  }
  .shop-cnt__inner{
    padding: 24px;
  }
  .shop-cnt__col{
    flex-direction: column;
  }
  .shop-cnt__col-left{
    width: 100%;
    padding-right: 0;
    font-size: 12px;
  }
  .shop-cnt__col-right{
    width: 80%;
    margin: 16px auto 0;
    text-align: center;
    
  }
  .shop-cnt__btn{
    font-size: 16px;
    margin-top: 24px;
  }
}

.use {
  padding-top: 153px;
}
.use__flow {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 870px;
  margin: 48px auto 0;
}
.use__flow__title {
  font-weight: bold;
  font-size: 18px;
  padding-left: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.use__flow__title i {
  width: 36px;
  display: inline-block;
}
.use__flow__title i img {
  width: 100%;
}
.use__flow__title span {
  display: inline-block;
  margin-left: 10px;
}
.use__flow__img {
  margin-top: 10px;
}
.use__flow__text {
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.7em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .use__flow {
    margin: 48px auto 0;
    display: block;
    max-width: 476px;
  }
  .use__flow__title {
    font-size: 16px;
    padding-left: 0;
    justify-content: center;
  }
  .use__flow__title i {
    width: 28px;
    line-height: 1em;
  }
  .use__flow__title span {
    margin-left: 10px;
  }
  .use__flow__img {
    padding: 0 9%;
  }
  .use__flow__arw {
    display: block;
    text-align: center;
    margin: 14px 0px;
  }
  .use__flow__text {
    margin-top: 8px;
    font-size: 12px;
  }
}
.use__flow__arw--sp {
  display: none;
}
@media screen and (max-width: 1050px) {
  .use__flow__arw--sp {
    display: inline-block;
  }
}
@media screen and (max-width: 1050px) {
  .use__flow__arw--pc {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .use {
    padding-top: 120px;
  }
  .use__flow {
    margin: 24px auto 0;
    display: block;
  }
  .use__flow__title {
    font-size: 16px;
    padding-left: 0;
    justify-content: center;
  }
  .use__flow__title i {
    width: 28px;
    line-height: 1em;
  }
  .use__flow__title span {
    margin-left: 10px;
  }
  .use__flow__img {
    padding: 0 9%;
  }
  .use__flow__arw {
    display: block;
    text-align: center;
    margin: 14px 0px;
  }
  .use__flow__text {
    margin-top: 8px;
    font-size: 12px;
  }
}

.price {
  padding-top: 133px;
  padding-bottom: 127px;
  text-align: center;
}
.price__plan__img {
  margin-top: 45px;
}
.price__plan__attention {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
.price__regi__block {
  margin-top: 50px;
  font-weight: bold;
}
.price__regi__text {
  font-size: 20px;
  letter-spacing: 0.24em;
}
.price__regi__text--big {
  font-size: 70px;
  letter-spacing: 0.1em;
  line-height: 1em;
}
.price__regi__text--box {
  display: inline-block;
  border: 3px solid #000;
  border-radius: 11px;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 16px;
  background: #fff;
  margin-top: 10px;
}
.price__btn__block {
  margin-top: 16px;
}
.price__regi__campaign-arrow{
  display: block;
  margin: 56px auto 0;
}
.price__regi__campaign{
  display: block;
  margin: 48px auto 0;
}
@media screen and (max-width: 780px) {
  .price {
    padding-bottom: 0;
    padding-top: 130px;
    margin-top: 80px;
    position: relative;
    top: 0;
    left: 0;
  }
  .price .bg__itemSp--4 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .price__plan__img {
    margin-top: 16px;
  }
  .price__plan__attention {
    margin-top: 4px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0em;
  }
  .price__regi__block {
    margin-top: 32px;
  }
  .price__regi__text {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-top: 8px;
  }
  .price__regi__text--big {
    font-size: 40px;
    line-height: 1em;
  }
  .price__regi__text--box {
    padding: 6px 11px;
    font-size: 13px;
    width: 260px;
    margin: 10px auto 0;
    line-height: 1.6em;
  }
  .price__btn__block {
    margin-top: 8px;
  }
}

.flow {
  padding: 0 0 80px;
}
@media screen and (max-width: 780px) {
  .flow {
    padding: 90px 0 0;
  }
}
.flow__list {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 780px) {
  .flow__list {
    width: 100%;
  }
  .flow__list--pc {
    display: none;
  }
  .flow__list__text {
    text-align: left;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .flow__list__text span:first-child {
    margin-right: 10px;
  }
  .flow__list__text span:first-child img {
    width: 30px;
  }
  .flow__list__text span:last-child {
    line-height: 1.6em;
  }
  .flow__list__img {
    padding: 0 22%;
  }
}
.flow__btn__block {
  margin-top: 70px;
}
.flow__asmitas__block {
  border-radius: 30px;
  border: 6px solid #1ebec8;
  background-color: #fff;
  max-width: 756px;
  margin: 102px auto 0;
  color: #1ebec8;
  font-weight: bold;
  box-sizing: border-box;
  padding: 26px 30px;
}
.flow__asmitas__block h3 {
  font-size: 21px;
  font-weight: bold;
}
.flow__asmitas__block dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.flow__asmitas__block dd {
  line-height: 2.2em;
  width: 57%;
}
.flow__asmitas__block .flow__btn__block {
  margin-top: 20px;
}
@media screen and (max-width: 780px) {
  .flow__asmitas__block {
    border-radius: 18px;
    border: 3px solid #1ebec8;
    margin: 80px auto 0;
    padding: 18px 30px 32px;
  }
  .flow__asmitas__block h3 {
    font-size: 20px;
    text-align: center;
    line-height: 1.7em;
  }
  .flow__asmitas__block dl {
    flex-direction: column;
    margin-top: 16px;
  }
  .flow__asmitas__block dt {
    width: 100%;
    text-align: center;
    padding: 0 11%;
  }
  .flow__asmitas__block dd {
    line-height: 1.8em;
    width: 100%;
    font-size: 12px;
    margin-top: 32px;
  }
  .flow__asmitas__block .flow__btn__block {
    margin-top: 20px;
  }
}
.flow__campaign{
  height: auto;
}
@media screen and (max-width: 780px) {
  .flow__campaign{
    width: 260px;
  }
}

.qa {
  padding-top: 98px;
}
@media screen and (max-width: 780px) {
  .qa {
    margin-top: 52px;
  }
}
.qa .container {
  max-width: 890px;
}
.qa .qa__list {
  margin-top: 44px;
  background-color: #fff;
}
.qa .qa__list__more {
  background: #fff;
  box-sizing: border-box;
  padding: 32px 0;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .qa .qa__list__more {
    padding: 24px 0;
  }
}
.qa .qa__list__more__text {
  line-height: 1em;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}
.qa .qa__list__more__text--arw {
  cursor: pointer;
}
.qa .qa__list__more__text--reverse img {
  transform: rotate(180deg);
}
@media screen and (max-width: 780px) {
  .qa .qa__list__more__text {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.qa .qa__list__more__block {
  display: none;
}
.qa .qa__list__more__block .list__item:first-child .item__title {
  border-top: none;
}
.qa .list__item {
  font-weight: bold;
}
.qa .list__item:first-child .item__title {
  border-top: 4px solid #000;
}
.qa .list__item--active .item__title .title__trg:before {
  opacity: 0;
}
@media screen and (max-width: 780px) {
  .qa .list__item {
    line-height: 1.4em;
  }
  .qa .list__item:first-child .item__title {
    border-top: 2px solid #000;
  }
}
.qa .item__title {
  background: #f2f2f2;
  padding: 22px 0;
  box-sizing: border-box;
  border-bottom: 4px solid #000;
}
@media screen and (max-width: 780px) {
  .qa .item__title {
    border-bottom: 2px solid #000;
    padding: 12px 0;
  }
}
.qa .item__title h3 {
  cursor: pointer;
  padding-left: 46px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: 0;
  left: 0;
}
.qa .item__title h3:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 38px;
  height: 38px;
  background: url(../images/qa_icon_q.png) no-repeat center/38px 38px;
}
@media screen and (max-width: 780px) {
  .qa .item__title h3 {
    padding-left: 26px;
    padding-right: 20px;
    font-size: 13px;
  }
  .qa .item__title h3:before {
    top: 1%;
    width: 20px;
    height: 20px;
    background: url(../images/qa_icon_q.png) no-repeat center/20px 20px;
  }
}
.qa .item__title .title__trg {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
.qa .item__title .title__trg:after, .qa .item__title .title__trg:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.qa .item__title .title__trg:after {
  width: 100%;
  height: 15px;
  border-bottom: 2px solid rgba(39, 39, 39, 0.3);
}
.qa .item__title .title__trg:before {
  width: 14px;
  height: 100%;
  border-right: 2px solid rgba(39, 39, 39, 0.3);
}
@media screen and (max-width: 780px) {
  .qa .item__title .title__trg {
    width: 16px;
    height: 16px;
    top: 20%;
  }
  .qa .item__title .title__trg:after {
    height: 7px;
  }
  .qa .item__title .title__trg:before {
    width: 7px;
  }
}
.qa .item__content {
  padding: 30px 0;
  display: none;
  box-sizing: border-box;
  border-bottom: 4px solid #000;
}
.qa .item__content p {
  font-size: 15px;
  padding-left: 46px;
  position: relative;
  top: 0;
  left: 0;
}
.qa .item__content p:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 38px;
  height: 38px;
  background: url(../images/qa_icon_a.png) no-repeat center/38px 38px;
}
@media screen and (max-width: 780px) {
  .qa .item__content {
    border-bottom: 2px solid #000;
    padding: 12px 0;
  }
  .qa .item__content p {
    font-size: 14px;
    padding-left: 26px;
    font-weight: normal;
  }
  .qa .item__content p:before {
    width: 20px;
    height: 20px;
    top: 0;
    background: url(../images/qa_icon_a.png) no-repeat center/20px 20px;
  }
}
.qa .cv__btn--qa {
  background: #ffe102;
  padding: 70px 0;
  margin-top: 40px;
}
@media screen and (max-width: 780px) {
  .qa .cv__btn--qa {
    padding: 40px 0;
  }
}

.cv {
  padding: 95px 0 66px;
}
@media screen and (max-width: 780px) {
  .cv {
    padding: 44px 0 56px;
  }
}

.slick-prev {
  width: 50px;
  height: 50px;
  left: 0;
  z-index: 3;
  background: url(../images/flow_arw_prev.png) no-repeat center/30px auto;
}
.slick-next {
  width: 50px;
  height: 50px;
  right: 0;
  z-index: 3;
  background: url(../images/flow_arw_next.png) no-repeat center/30px auto;
}
.slick-disabled {
  opacity: 0;
}

#shop_num {
  font-family: "Roboto", sans-serif;
}


.content--store{
  background: #ffe102;
}

.mv--common {
  text-align: center;
  padding: 60px 0 40px;
}

.shop__text--before {
  font-size: 18px;
  font-weight: bold;
  display: block;
  line-height: 1.2em;
  margin-bottom: 8px;
}

.shop__text--store {
  margin-top: 40px;
  line-height: 1em;
}

.common-title-erea {
  text-align: center;
}

.common-title-icon {
  width: 50px;
  display: block;
  margin: 0 auto 20px;
}

.common-title-icon img {
  width: 100%;
}

.common-title {
  display: inline-block;
  font-weight: bold;
  padding: 4px 0;
  font-size: 22px;
  width: 210px;
  color: #fff;
  box-sizing: border-box;
  border-radius: 100px;
  text-align: center;
  background-color: #000;
}

.store-attention {
  font-size: 12px;
}

.store-area-prefect{
  background-color: #fff9d4;
  box-sizing: border-box;
  padding: 43px 0 93px;
}

.store-area-prefect-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.store-area--pref {
  display: flex;
  justify-content: center;
}

.pref-item {
  position: relative;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
  background-color: #fff9d4;
  cursor: pointer;
  transition: 0.2s ease-out;
  line-height: 1em;
  box-sizing: border-box;
  padding: 15px 0;
}

@media screen and (min-width:781px) {
  .pref-item:not(:last-child) {
    margin-right: 50px;
  }
}

.store-area--title {
  font-size: 20px;
  display: inline-block;
  font-weight: bold;
  width: 90px;
  text-align: center;
  background-color: #fff;
  padding: 5px 0;
  border: 2px solid #000;
  border-radius: 5px;
  margin-top: -3px;
  transition: 0.2s ease-out;
  cursor: pointer;
}

.pref-item:hover,
.pref-item.pref-item--active {
  background-color: #ffe100;
}

.pref-item:hover .store-area--title,
.pref-item.pref-item--active .store-area--title {
  background-color: #ffe100;
}

.store-area-city {
  box-sizing: border-box;
  background-color: #d2d2d2;
  position: relative;
  top: 0;
  left: 0;
  transition: .2s ease-out;
}

.store-area-city:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 20px;
  background: url(../images/arrow.png) no-repeat center / auto 100%;
  transition: .2s ease-out;
}

.store-area-city.store-area-city--active {
  padding: 36px 0 24px;
}

.store-area-city--active.store-area-city:after {
  top: -1px;
  opacity: 1;
}

.store-area--city {
  display: flex;
  flex-wrap: wrap;
}

.store-area--city .city-item {
  margin-right: 24px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1em;
  box-sizing: border-box;
  padding: 2px 6px;
  cursor: pointer;
}

.city-item:hover ,
.city-item.city-item--active {
  background-color: #ffe100;
}

.store-area-result {
  background-color: #fff;
  box-sizing: border-box;
  transition: .2s ease-put;
}

.store-area-result.store-area-result--active {
  padding: 40px 0 60px;
}

.title--city {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.store-result-block:not(:last-child){
  margin-bottom: 50px;
}

.store-result-list-title {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 24px;
  border-bottom: 1px solid #000;
  position: relative;
  top: 0;
  left: 0;
}

.store-result-list-title:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 3px solid #000;
  background-color: #ffe100;
}

.store-result-list {
  display: flex;
  flex-wrap: wrap;
}

.store-result-item {
  font-size: 14px;
  border-bottom: 1px solid #e6e6e6;
  width: 30%;
}

.store-area--ward {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 24px;
}

.ward-item {
  opacity: 0.6;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  margin-bottom: 8px;
  font-size: 14px;
}

.ward-item:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  height: 3px;
  width: 0;
  background: #000;
  transition: .1s ease-out;
}

.ward-item:hover ,
.ward-item.ward-item--active {
  opacity: 1;
}

.ward-item:hover:after,
.ward-item.ward-item--active:after {
  width: 100%;
  left: 0;
}

.store-area--count{
  display: block;
  margin-top: 8px;
  font-weight: bold;
}

.shop-attention{
  font-size: 12px;
  margin: 60px 0 0;
  position: relative;
  top: 0;
  left: 0;
  padding-left: 1.2em;
}
.shop-attention:before{
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
}

.shop-top{
  display: block;
  margin: 70px auto 0;
  width: 66px;
  cursor: pointer;
}

.shop-top img{
  max-width: 100%;
}

@media screen and (min-width:781px) {
  .store-result-item:not(:nth-child(3n)){
    margin-right: 5%;
  }
  .store-area--ward .ward-item:not(:last-child) {
    margin-right: 32px;
  }
}

@media screen and (max-width:780px) {
  .mv--common {
    text-align: center;
    padding: 40px 0;
  }
  .shop__text--before {
    font-size: 16px;
  }
  .shop__text--store {
    margin-top: 32px;
  }
  .common-title-icon {
    width: 40px;
    margin: 0 auto 10px;
  }
  .common-title {
    padding: 8px 40px;
    font-size: 16px;
    width: auto;
    line-height: 1em;
  }
  .shop__text--before {
    font-size: 15px;
    letter-spacing: 0em;
  }
  .store-num {
    font-size: 60px;
  }
  .shop__text--store{
    font-size: 36px;
  }
  .store-area-prefect {
    padding: 30px 0 70px;
  }
  .store-area-prefect-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .pref-item {
    width: 90px;
    height: 90px;
    padding: 8px 5px;
  }
  .pref-item:not(:last-child) {
    margin-right: 20px;
  }
  .store-area--title {
    font-size: 14px;
    width: 50px;
    margin-top: 0;
    transform: translateY(-10px);
  }
  .store-area--city .city-item {
    margin-right: 0;
    font-size: 14px;
    padding: 2px 6px;
    width: 33%;
    text-align: center;
  }
  .store-area--city .city-item:not(:first-child):not(:nth-child(2)):not(:nth-child(3)){
    margin-top: 0;
  }
  .title--city {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .store-result-list-title {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .store-result-list-title:before {
    margin-right: 4px;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
  }
  .store-area-result.store-area-result--active {
    padding: 50px 0 40px;
  }
  .store-result-item {
    font-size: 12px;
    width: 47%;
  }
  .store-result-item:not(:nth-child(odd)) {
    margin-left: 6%;
  }
  .store-area-city:after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 20px;
    background: url(../images/arrow.png) no-repeat center / auto 100%;
    transition: .2s ease-out;
  }
  .store-result-block:not(:last-child){
    margin-bottom: 30px;
  }
  .store-area-city.store-area-city--active {
    padding: 36px 0 24px;
  }
  .store-area--ward {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .ward-item {
    margin-bottom: 6px;
    width: 33%;
    text-align: center;
  }
  .store-area--count{
    display: block;
    margin-top: -5px;
  }
  .shop-attention{
    font-size: 10px;
    margin: 32px 0 0;
  }
  .shop-top{
    margin: 40px auto 0;
    width: 60px;
  }
}


.region-area{
  max-width: 660px;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.region-area__item{
  width: calc(50% - 8px );
  cursor: pointer;
}
.region-area__item:nth-child(2){
  margin-left: 16px;
}
.region-area__btn{
  background-color: #fff;
  box-sizing: border-box;
  border: 3px solid #000;
  padding: 32px 0;
  font-size: 24px;
  font-weight: bold;
  border-radius: 16px;
}
.region-area__item--active .region-area__btn{
  background-color: #fff080;
}
.region-area__num{
  margin-top: 8px;
}
@media screen and (max-width:780px) {
  .region-area{
    margin-top: 24px;
  }
  .region-area__btn{
    font-size: 14px;
    padding: 16px 0;
    border-radius: 8px;
    border: 2px solid #000;
  }
  .region-area__num{
    font-size: 12px;
    margin-top: 4px;
  }
}
.region-area-body__item{
  display: none;
}
.region-area-body__item--active{
  display: block;
}

.store-area02{
  padding: 80px 24px;
  background-color: #fff9d4;
  text-align: center;
  position: relative;
}
.store-area02::before{
  content: "";
  position: absolute;
  top: calc( 100% - 1px );
  left: 0;
  width: 100%;
  height: 20px;
  background: url(../images/arrow.png) no-repeat center / auto 100%;
}
.store-area02__txt{
  margin-top: 56px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width:780px) {
  .store-area02{
    padding: 40px 24px;
  }
  .store-area02__img{
    max-width: 174px;
  }
  .store-area02__txt{
    font-size: 14px;
    margin-top: 24px;
  }
}

.drink-subsc{
  display: flex;
  max-width: 760px;
  padding: 40px;
  box-shadow : 0px 8px 16px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-radius: 24px;
  margin: 72px auto 0;
}
@media screen and (max-width: 780px){
  .drink-subsc{
    margin: 56px 10% 0;
    display: block;
    padding: 40px 24px;
  }
}
.drink-subsc_right{
  width: calc(100% - 170px - 40px);
  margin-left: 40px;
}
@media screen and (max-width: 780px){
  .drink-subsc_right{
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
}
.drink-subsc_txt{
  font-size: 16px;
  text-align: left;
  line-height: 2;
  margin-bottom: 24px;
  font-weight: bold;
}
@media screen and (max-width: 780px){
  .drink-subsc_txt{
    font-size: 12px;
  }
}
.btn_download{
  background-color: #fabe00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px;
}
@media screen and (max-width: 780px){
  .btn_download{
    font-size: 14px;
  }
}
.btn_download img{
  margin-left: 8px;
}
@media screen and (max-width: 780px){
  .btn_download img{
    width: 16px;
  }
}

.top_campaign_ban{
  margin-top: 24px;
}
@media screen and (max-width: 780px){
  .top_campaign_ban{
    display: none;
  }
}
@media screen and (min-width: 1381px){
  .list__item-campaign{
    display: none;
  }
}
@media screen and (max-width: 1380px){
  .list__item-campaign{
    width: 90%!important;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
}

.one__drink {
  max-width: 760px;
  margin:80px auto;
  color: #1d313b;
  box-sizing: border-box;
  padding: 40px 38px 0 38px;
  border-radius: 30px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 3px 4px 11px rgba(39, 39, 39, 0.3);
}
.one__drink dt.one__drink__logo {
  display: inline-block;
  width: 175px;
  text-align: center;
	padding-bottom:40px;
}
.one__drink dt.one__drink__logo img {
  width: 100%;
}
.one__drink dd.one__drink__content {
  display: inline-block;
  max-width: 470px;
  text-align: left;
  margin-left:30px;
  letter-spacing: 0.1em;
  line-height:2em;
  vertical-align: top;
	padding-bottom:40px;
}
.one__drink dd.one__drink__content a {
  max-width: 470px;
  display: block;
  text-align: center;
  color: #1d313b;
  box-sizing: border-box;
  padding: 10px 0;
  border-radius: 10px;
  background: #fabe00;
  font-size: 18px;
  letter-spacing: 0.3em;
  margin-top:30px;
}


@media screen and (max-width: 780px) {
  .one__drink {
  margin:15% auto;
  color: #1d313b;
  box-sizing: border-box;
  padding: 10% 10% 0 10%;
    box-shadow: 2px 2px 6px rgba(39, 39, 39, 0.3);
  }
.one__drink dt.one__drink__logo {
	padding-bottom:10%;
}
.one__drink dd.one__drink__content {
  margin-left:0px;
	padding-bottom:10%;
}
.one__drink dd.one__drink__content a {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top:5%;
}

}

.setsudenBan{
  padding: 0 16px;
}

.setsudenBan img{
  height: auto;
}