@charset "UTF-8";
body {
  font-family: "YuGothic", "YuGothic", sans-serif;
  padding: 10px;
  color: #575757;
}
@media screen and (min-width: 768px) {
  body {
    padding: 20px;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.bg {
  background: #f1f2f1;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.banner__content {
  width: 100%;
  background: #fff;
  outline: 1px solid #575757;
  outline: 0.0625rem solid #575757;
  outline-offset: -8px;
  outline-offset: -0.5rem;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.875rem;
    padding: 3.125rem;
  }
}

.banner__title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Shippori Mincho B1";
}
@media screen and (min-width: 768px) {
  .banner__title {
    font-size: 1.875rem;
    text-align: left;
  }
}

.banner__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .banner__text {
    font-size: 1.125rem;
    margin-top: 0;
    text-align: left;
  }
}

.banner__button {
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  background: #575757;
  outline: 1px solid #fff;
  outline: 0.0625rem solid #fff;
  outline-offset: -5px;
  outline-offset: -0.3125rem;
  color: #fff;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .banner__button {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
}

.banner__button a {
  padding: 20px;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .banner__button a {
    padding: 2.5rem;
  }
}

.banner__button a::after {
  content: "";
  display: inline-block;
  top: 50%;
  right: 10px;
  right: 0.625rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #fff;
  border-top: solid 0.125rem #fff;
  border-right: solid 2px #fff;
  border-right: solid 0.125rem #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.banner2__content {
  width: 100%;
  background: #fff;
  outline: 1px solid #575757;
  outline: 0.0625rem solid #575757;
  outline-offset: -8px;
  outline-offset: -0.5rem;
  padding: 30px;
  padding: 1.875rem;
}

.banner2__title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Shippori Mincho B1";
}
@media screen and (min-width: 768px) {
  .banner2__title {
    font-size: 1.875rem;
  }
}

.banner2__button-area {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .banner2__button-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.banner2__button {
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  background: #575757;
  outline: 1px solid #fff;
  outline: 0.0625rem solid #fff;
  outline-offset: -5px;
  outline-offset: -0.3125rem;
  color: #fff;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .banner2__button {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
}

.banner2__button--gray {
  background: #858686;
}

.banner2__button a {
  padding: 20px;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .banner2__button a {
    padding: 1.875rem 2.5rem;
  }
}

.banner2__yajirushi::after {
  content: "";
  display: inline-block;
  top: 50%;
  right: 10px;
  right: 0.625rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #fff;
  border-top: solid 0.125rem #fff;
  border-right: solid 2px #fff;
  border-right: solid 0.125rem #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.banner2__mail,
.banner2__tel {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .banner2__mail,
  .banner2__tel {
    font-size: 1.125rem;
  }
}

.banner2__tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-image: url(../images/common/tel.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.banner2__mail::before {
  content: "";
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-image: url(../images/common/mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.banner2__time {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}

.banner2__time::before,
.banner2__time::after {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
}

.case__img {
  width: 100%;
}

.case__items {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .case__items {
    margin-top: 5rem;
    display: grid;
    gap: 1.875rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.case__item + .case__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .case__item + .case__item {
    margin-top: 0;
  }
}

.case__top {
  text-align: center;
  padding: 10px;
  padding: 0.625rem;
  color: #fff;
  background: #737373;
}

.case__top--black {
  background: #323232;
}

.case__middle {
  margin-top: 5px;
  margin-top: 0.3125rem;
  background: #fff;
}

.case__bottom {
  margin-top: 5px;
  margin-top: 0.3125rem;
  background: #e8e8e8;
  border-bottom: 1px solid #575757;
  border-bottom: 0.0625rem solid #575757;
}

.case__middle-wrapper,
.case__bottom-wrapper {
  padding: 10px;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.case__item--mark {
  position: relative;
}

.case__item--mark::before,
.case__item--mark::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 12.5px 0 12.5px;
  border-color: #575757 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .case__item--mark::before,
  .case__item--mark::after {
    top: 0.5rem;
    border-width: 0.5625rem 0 0.5625rem 0.75rem;
    border-color: transparent transparent transparent #575757;
  }
}

.case__item--mark::before {
  top: -35px;
  top: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .case__item--mark::before {
    top: 0.5rem;
    left: -0.875rem;
  }
}

.case__item--mark::after {
  bottom: -35px;
  bottom: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .case__item--mark::after {
    right: -1.625rem;
    left: auto;
  }
}

.case__info {
  color: #919191;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
  display: block;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.concept {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background: #e6e6e6;
  z-index: -1;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-top: 2.5rem;
    padding-bottom: 17.5rem;
  }
}

.concept::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 63vw;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  background-image: url(../images/common/concept.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: -1;
}

.concept__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.conditions__inner {
  background: #fff;
  padding: 80px 55px 60px;
  padding: 5rem 3.4375rem 3.75rem;
}

.conditions__content {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.conditions__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.conditions__heading span {
  white-space: nowrap;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.conditions__heading::before,
.conditions__heading::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background: #575757;
}

.conditions__items {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px 20px;
  gap: 0.875rem 1.25rem;
}
@media screen and (min-width: 600px) {
  .conditions__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .conditions__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.conditions__item {
  background: #ebe9e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  padding: 1.875rem;
}

.conditions__left {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.conditions__right {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
}

.conditions__right span {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}

.contact {
  padding-top: 50px;
  padding-top: 3.125rem;
  background: #f2f3f2;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 5rem;
    padding-bottom: 11.25rem;
  }
}

.contact__logo {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .contact__logo {
    width: 18.75rem;
  }
}

.contact__title {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact__title {
    margin-top: 5.625rem;
  }
}

.contact__text-area {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__text-area {
    margin-top: 5.625rem;
  }
}

.contact__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
}

.contact__text--red {
  color: #e65d5d;
  font-weight: normal;
}

.contact__form-wrapper {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .contact__form-wrapper {
    margin-top: 4.375rem;
  }
}

.form label {
  font-weight: 700;
  display: block;
}
.form span {
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  color: #e65d5d;
}
.form input[type=text],
.form input[type=email],
.form textarea {
  border: 1px solid #d3d3d3;
  border: 0.0625rem solid #d3d3d3;
  display: block;
  width: 100%;
  padding: 5px;
  padding: 0.3125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.form textarea {
  height: 12em;
}

.form__items {
  background: #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .form__items {
    padding: 5rem;
  }
}

.form__item + .form__item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .form__item + .form__item {
    margin-top: 3.125rem;
  }
}

.form__radio {
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.form__radio-items {
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .form__radio-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form__radio-item {
  border: 1px solid #d3d3d3;
  border: 0.0625rem solid #d3d3d3;
  padding: rme(20);
}
.form__radio-item label {
  font-weight: normal;
  position: relative;
  padding: 20px 20px 20px 50px;
  padding: 1.25rem 1.25rem 1.25rem 3.125rem;
}
.form__radio-item label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 20px;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  border: 1px solid #d3d3d3;
  border: 0.0625rem solid #d3d3d3;
  border-radius: 50%;
}
.form__radio-item label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 28px;
  left: 1.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: #323232;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.form__radio-item input[type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
}

.form__btn {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.form__btn button {
  width: 465px;
  width: 29.0625rem;
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #323232;
  color: #fff;
  padding: 20px 0;
  padding: 1.25rem 0;
  letter-spacing: 0.1em;
  outline: 1px solid #fff;
  outline: 0.0625rem solid #fff;
  outline-offset: -5px;
  outline-offset: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .form__btn button {
    padding: 2.5rem 0;
  }
}

.contact__btn {
  margin-top: 70px;
  margin-top: 4.375rem;
  width: 465px;
  width: 29.0625rem;
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #323232;
  color: #fff;
  padding: 20px 0;
  padding: 1.25rem 0;
  letter-spacing: 0.1em;
  outline: 1px solid #fff;
  outline: 0.0625rem solid #fff;
  outline-offset: -5px;
  outline-offset: -0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    padding: 2.5rem 0;
  }
}

.fc-store {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.fc-store__map {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fc-store__map {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

.fc-store__name {
  position: absolute;
  line-height: 1;
  display: block;
  font-size: 10px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
@media screen and (min-width: 600px) {
  .fc-store__name {
    font-size: 0.625rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media screen and (min-width: 768px) {
  .fc-store__name {
    font-size: 0.75rem;
  }
}

.fc-store__name span {
  font-size: 14px;
  font-size: 0.875rem;
}

.fc-store__name--hokkaido,
.fc-store__name--tohoku,
.fc-store__name--tokyo,
.fc-store__name--shizuoka,
.fc-store__name--aichi {
  -webkit-transform-origin: right;
          transform-origin: right;
}

.fc-store__name--osaka,
.fc-store__name--kagoshima,
.fc-store__name--okinawa {
  -webkit-transform-origin: left;
          transform-origin: left;
}

.fc-store__name--hokkaido {
  top: 18%;
  right: 0;
}

.fc-store__name--tohoku {
  top: 43%;
  right: 14%;
}

.fc-store__name--tokyo {
  top: 59%;
  right: 20%;
}

.fc-store__name--shizuoka {
  top: 73%;
  right: 23%;
}

.fc-store__name--aichi {
  top: 83%;
  right: 5%;
}

.fc-store__name--osaka {
  top: 57%;
  left: 1%;
}

.fc-store__name--kagoshima {
  top: 96%;
  left: 27%;
}

.fc-store__name--okinawa {
  top: 12%;
  left: 7%;
}

.fc-store__store {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .fc-store__store {
    margin-top: 5rem;
  }
}

.fc-store__box {
  background: #fff;
  border-radius: 0.625rem;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fc-store__box {
    padding: 1.875rem 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .fc-store__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fc-store__item + .fc-store__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.fc-store__store-name {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fc-store__store-name {
    width: 20%;
  }
}

.fc-store__store-info {
  width: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fc-store__store-info {
    margin-top: 0;
    width: 80%;
    border-left: 0.0625rem solid #e8e8e8;
  }
}

.footer {
  background: #858686;
  color: #fff;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 7.8125rem;
  }
}

.footer2 {
  background: #858686;
  color: #fff;
  position: relative;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .footer2 {
    padding-bottom: 7.8125rem;
  }
}

.footer__banner {
  position: absolute;
  top: -225px;
  top: -14.0625rem;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #575757;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer__banner {
    top: -7.5rem;
  }
}

.footer__banner2 {
  position: absolute;
  top: -180px;
  top: -11.25rem;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #575757;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer__banner2 {
    top: -9.375rem;
  }
}

.footer__flow {
  font-size: 80px;
  font-size: 5rem;
  font-size: 700;
  font-family: "Sen", sans-serif;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  text-transform: uppercase;
  overflow: hidden;
}

@-webkit-keyframes flow {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes flow {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.footer__flow-text {
  -webkit-animation: flow 30s linear infinite;
          animation: flow 30s linear infinite;
}

.footer__items {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 6.25rem;
  }
}

.footer__items--contact {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.footer__logo {
  width: 80px;
  width: 5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 6.25rem;
    margin-right: 0;
    margin-left: 0;
  }
}

.footer__menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6.25rem;
    margin-top: 0;
  }
}

.footer__menu-right {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__menu-right {
    margin-top: 0;
  }
}

.footer__link {
  font-size: 16px;
  font-size: 1rem;
}

.footer__link + .footer__link {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__link + .footer__link {
    margin-top: 2.1875rem;
  }
}

.footer__info {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-top: 0;
  }
}

.footer__sns {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__instagram {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__instagram + .footer__instagram {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer__instagram a {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__instagram a {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }
}

.footer__store {
  text-align: center;
}

.footer__copy {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: min(300px, 100%);
  width: min(18.75rem, 100%);
}

.header__hamburger {
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background: #858686;
  border-radius: 50%;
  position: relative;
  position: fixed;
  z-index: 999;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    width: 5.625rem;
    height: 5.625rem;
    top: 25px;
    right: 50px;
  }
}

.header__bar1,
.header__bar2,
.header__bar3 {
  width: 25px;
  width: 1.5625rem;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__bar1 {
  top: calc(50% - 0.5rem);
}

.header__bar3 {
  top: calc(50% + 0.5rem);
}

.header__bar1.is-active {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.header__bar2.is-active {
  opacity: 0;
  visibility: hidden;
}

.header__bar3.is-active {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.header__menu {
  max-width: 100%;
  background: #858686;
  border-radius: 20px;
  padding: 60px 25px;
  padding: 3.75rem 1.5625rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: fixed;
  z-index: 998;
  top: 25px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .header__menu {
    width: 23.75rem;
    top: 25px;
    right: 50px;
    padding: 3.75rem 3.125rem;
  }
}

.header__menu ul {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.header__menu.is-active {
  opacity: 1;
  visibility: visible;
}

.header__menu-logo {
  width: min(225px, 100%);
  width: min(14.0625rem, 100%);
}

.header__menu-link {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.header__menu-sns {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header__menu-sns {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .header__menu-instagram {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__menu-instagram + .header__menu-instagram {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.header__menu-instagram a {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .header__menu-instagram a {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }
}

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

.ice {
  width: 100%;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.menu {
  background: #f1f2f1;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .menu {
    padding-bottom: 10.625rem;
  }
}

.menu__head {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .menu__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 3.4375rem;
  }
}

.menu__button {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 24px 0;
  padding: 1.5rem 0;
  line-height: 1;
  border: solid 1px #575757;
  border-radius: 50px;
  width: 380px;
  width: 23.75rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .menu__button {
    padding: 2.25rem 0;
  }
}

.menu__button + .menu__button {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .menu__button + .menu__button {
    margin-top: 0;
  }
}

.menu__button:not(.is-active) {
  cursor: pointer;
}

.menu__button.is-active {
  background: #575757;
  color: #fff;
}

.menu__items {
  margin-top: 50px;
  margin-top: 3.125rem;
  display: none;
}

.menu__items.is-active {
  display: grid;
  gap: 30px;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .menu__items.is-active {
    margin-top: 6.25rem;
    gap: 5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu__item:nth-child(2n+2) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .menu__item:nth-child(2n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .menu__item:nth-child(3n+2) {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .menu__item:nth-child(3n+3) {
    margin-top: 6.25rem;
  }
}

.menu__item--no1,
.menu__item--no2 {
  position: relative;
}

.menu__item--no1::before,
.menu__item--no2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  right: 0;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .menu__item--no1::before,
  .menu__item--no2::before {
    width: 6.25rem;
    height: 6.25rem;
    top: -2.1875rem;
    right: 1.25rem;
  }
}

.menu__item--no1::before {
  background-image: url(../images/common/menu-no1.png);
}

.menu__item--no2::before {
  background-image: url(../images/common/menu-no2.png);
}

.menu__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.menu__img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  -o-object-position: left 50% bottom 30%;
     object-position: left 50% bottom 30%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__info {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .menu__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.menu__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .menu__name {
    font-size: 1.125rem;
  }
}

.menu__price {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .menu__price {
    font-size: 1.125rem;
  }
}

.mv {
  position: relative;
}

.mv::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  top: 0.3125rem;
  left: 5px;
  left: 0.3125rem;
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  height: auto;
  background-image: url(../images/common/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  aspect-ratio: 300/125;
}
@media screen and (min-width: 768px) {
  .mv::before {
    top: 1.5625rem;
    left: 1.5625rem;
    width: 15.625rem;
  }
}

.mv::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20%;
  left: 50%;
  margin-left: -60px;
  margin-left: -3.75rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  height: auto;
  background-image: url(../images/common/top-mv2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  aspect-ratio: 500/235;
}
@media screen and (min-width: 768px) {
  .mv::after {
    width: 31.25rem;
    width: 43.75rem;
    top: 17%;
    margin-left: -6.25rem;
    margin-left: -8.75rem;
  }
}

.mv__container {
  width: 100%;
  margin: 0 auto;
}

/* スライドの動き等速 */
.mv__slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.mv2__wrapper-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv2__wrapper-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .mv2__wrapper-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mv2__image {
    width: 30%;
  }
}

.mv2__main {
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv2__main {
    width: 40%;
  }
}

.mv2__logo {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .mv2__logo {
    width: 18.75rem;
  }
}

.mv2__recruit {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 115%;
  -webkit-transform: translateX(-7%);
          transform: translateX(-7%);
}

.mv2__text {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.mv2__images-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.point {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .point {
    padding-bottom: 8.75rem;
  }
}

.point__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .point__text {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.point__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .point__items {
    margin-top: 6.25rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .point__items::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -3.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: solid 0.0625rem #575757;
  }
}

@media screen and (min-width: 768px) {
  .point__items::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    bottom: -5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0.0625rem;
    height: auto;
    background: #575757;
  }
}

@media screen and (min-width: 768px) {
  .point__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.point__item + .point__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .point__item + .point__item {
    margin-top: 0;
  }
}

.point__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .point__img,
  .point__box {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .point__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}

.point__box--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.point__number {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Sen", sans-serif;
  opacity: 0.6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .point__number {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .point__box--reverse .point__number {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    text-align: right;
  }
}

.point__number::before {
  content: "";
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 1px;
  height: 0.0625rem;
  background: #575757;
  opacity: 0.6;
}

.point__box-title {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .point__box-title {
    font-size: 2.1875rem;
    margin-top: 0;
  }
}

.point__box-text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .point__box-text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.point__susume {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .point__susume {
    margin-top: 9.375rem;
  }
}

.point__susume-box {
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  border-radius: 20px;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .point__susume-box {
    padding: 5rem 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}

.point__susume-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -30px;
  top: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 170px;
  width: 10.625rem;
  height: auto;
  aspect-ratio: 736/114;
  background-image: url(../images/common/susume-head.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .point__susume-box::before {
    width: 18.75rem;
  }
}

.point__susume-box::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -70px;
  top: -4.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  height: 70px;
  height: 4.375rem;
  aspect-ratio: 1456/728;
  background-image: url(../images/common/circle.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .point__susume-box::after {
    width: 70%;
    top: -5.3125rem;
    height: 6.25rem;
  }
}

.point__susume-img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .point__susume-img {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .point__susume-img {
    width: 100%;
  }
}

.point__susume-img + .point__susume-img {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .point__susume-img + .point__susume-img {
    margin-top: 0;
  }
}

.process__items {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .process__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.25rem 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.process__item {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .process__item {
    width: 30%;
  }
}

.process__item + .process__item {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .process__item + .process__item {
    margin-top: 0;
  }
}

.process__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -90px;
  top: -5.625rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 12.5px 0 12.5px;
  border-color: #575757 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .process__item:not(:first-child)::before {
    top: 50%;
    left: -0.9375rem;
    border-width: 12.5px 0 12.5px 16px;
    border-color: transparent transparent transparent #575757;
  }
}

.process__item--black .process__number {
  background: #575757;
  color: #fff;
}
.process__item--black .process__number::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  left: 7px;
  left: 0.4375rem;
  bottom: 8px;
  bottom: 0.5rem;
  right: 8px;
  right: 0.5rem;
  width: 90%;
  height: 90%;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
}
.process__item--black .process__box {
  background: #575757;
  color: #fff;
}
.process__item--black .process__heading span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .process__item--black .process__heading span {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.process__item--black .process__heading span::before,
.process__item--black .process__heading span::after {
  content: "";
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.process__item--black .process__heading span::before {
  background-image: url(../images/common/flow5-1.png);
}
.process__item--black .process__heading span::after {
  background-image: url(../images/common/flow5-2.png);
}
.process__item--black .process__heading::after {
  background: #fff;
}

.process__number {
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  width: 130px;
  width: 8.125rem;
  height: 130px;
  height: 8.125rem;
  top: -60px;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .process__number {
    font-size: 1.875rem;
  }
}

.process__number::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  left: 7px;
  left: 0.4375rem;
  bottom: 8px;
  bottom: 0.5rem;
  right: 8px;
  right: 0.5rem;
  width: 90%;
  height: 90%;
  border: 1px solid #575757;
  border: 0.0625rem solid #575757;
  border-radius: 50%;
}

.process__number span {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: block;
}

.process__box {
  background: #fff;
  padding: 40px 30px;
  padding: 2.5rem 1.875rem;
  border-radius: 2.0625rem;
  height: 100%;
}

.process__heading {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.process__heading::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  width: 1.875rem;
  height: 2px;
  height: 0.125rem;
  background: #575757;
}

.process__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.process__link {
  font-weight: 700;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.process__link a {
  color: #607eaf;
  text-decoration: underline;
}

.seasonal {
  background: #858686;
  color: #fff;
  outline: 1px solid #fff;
  outline: 0.0625rem solid #fff;
  outline-offset: -10px;
  outline-offset: -0.625rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .seasonal {
    outline-offset: -1.25rem;
    padding-bottom: 12.5rem;
  }
}

.seasonal__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seasonal__text {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.seasonal__slide {
  margin-top: 90px;
  margin-top: 5.625rem;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .seasonal__slide {
    margin-top: 5rem;
  }
}
.seasonal__slide .swiper-slide {
  width: 400px;
  width: 25rem;
  max-width: 100%;
}
.seasonal__slide .seasonal__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}
.seasonal__slide .seasonal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.seasonal__slide .seasonal__info {
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .seasonal__slide .seasonal__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.seasonal__slide .seasonal__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.seasonal__slide .seasonal__price {
  font-size: 16px;
  font-size: 1rem;
}

.seasonal__swiper-container {
  position: relative;
}
.seasonal__swiper-container .swiper-button-prev,
.seasonal__swiper-container .swiper-button-next {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  border: solid 1px #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .seasonal__swiper-container .swiper-button-prev,
  .seasonal__swiper-container .swiper-button-next {
    top: -3.125rem;
  }
}
.seasonal__swiper-container .swiper-button-prev {
  margin-left: -30px;
  margin-left: -1.875rem;
}
@media screen and (min-width: 768px) {
  .seasonal__swiper-container .swiper-button-prev {
    margin-left: -33.3vw;
  }
}
.seasonal__swiper-container .swiper-button-next {
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .seasonal__swiper-container .swiper-button-next {
    margin-left: -28.3vw;
  }
}
.seasonal__swiper-container .swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  left: 54%;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.seasonal__swiper-container .swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  left: 46%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.section {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 8.4375rem;
  }
}

.store {
  margin-top: 20px;
  margin-top: 1.25rem;
  background: #f1f2f1;
  padding-bottom: 250px;
  padding-bottom: 15.625rem;
}

.store__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .store__items {
    margin-top: 3.4375rem;
  }
}

.store__item {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .store__item {
    padding: 3.75rem 4.375rem;
  }
}

.store__item + .store__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .store__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.store__outline {
  width: 400px;
  width: 25rem;
  max-width: 100%;
}

.store__logo {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
}

.store__map {
  width: 610px;
  width: 38.125rem;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .store__map {
    margin-top: 0;
    aspect-ratio: 600/360;
  }
}

.store__map iframe {
  width: 100%;
  height: 100%;
}

.store__table {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.store__info {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

.store__info dt {
  width: 90px;
  width: 5.625rem;
}

.store__info dd {
  width: calc(100% - 5.625rem);
}

.store__instagram {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.store__instagram-logo {
  width: 100%;
  height: 100%;
}

.store__instagram-logo img {
  width: 100%;
  height: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.3 0.7" /><feFuncG type="table" tableValues="0.3 0.7" /><feFuncB type="table" tableValues="0.3 0.7" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(30%);
          filter: brightness(0) invert(30%);
}

.store2__head {
  width: min(820px, 100%);
  width: min(51.25rem, 100%);
  height: 70px;
  height: 4.375rem;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border-radius: 33px;
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.1em;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .store2__head {
    font-size: 1.125rem;
    margin-top: 2.8125rem;
  }
}

.store2__main {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .store2__main {
    margin-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .store2__map {
    margin-right: -6.25rem;
  }
}

.store2__button-area {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .store2__button-area {
    margin-top: 0;
  }
}

.store__button {
  max-width: 100%;
  height: 40px;
  height: 2.5rem;
  background: #fff;
  border-radius: 2.0625rem;
  color: #575757;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .store__button {
    width: 18.125rem;
    font-size: 1rem;
    height: 4.125rem;
  }
}

.store__button:not(.is-active) {
  cursor: pointer;
}

.store__button.is-active {
  background: #575757;
  color: #fff;
}

.store2__map {
  position: relative;
  width: 100%;
  aspect-ratio: 113/123;
}

.store2__map-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.store2__map-img.is-active {
  opacity: 1;
  visibility: visible;
}

.store2__container {
  width: 100%;
  margin-top: 50px;
  margin-top: 3.125rem;
  background: #858686;
  padding: 50px;
  padding: 3.125rem;
}

.store2__content {
  display: none;
}

.store2__content.is-active {
  display: block;
}

.store2__content-name {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
}

.store2__box {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .store2__box {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.75rem;
    width: 53.75rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .store2__box-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.store2__box-tag {
  border-radius: 2.0625rem;
  padding: 2px 14px;
  padding: 0.125rem 0.875rem;
  white-space: nowrap;
  text-align: center;
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .store2__box-tag {
    margin-left: 0.625rem;
  }
}

.store2__box-tag--white {
  border: solid 1px #fff;
  border: solid 0.0625rem #fff;
}

.store2__box-tag--dark-gray {
  border: solid 1px #575757;
  border: solid 0.0625rem #575757;
  background: #575757;
}

.store2__box-tag--black {
  border: solid 1px #3e3e3e;
  border: solid 0.0625rem #3e3e3e;
  background: #3e3e3e;
}

.support {
  padding-bottom: 250px;
  padding-bottom: 15.625rem;
}
@media screen and (min-width: 768px) {
  .support {
    padding-bottom: 18.75rem;
  }
}

.support__head-text {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.support__wrapper {
  background: #fff;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .support__wrapper {
    width: 80%;
    padding: 2.5rem;
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .support__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.125rem;
  }
}

.support__item {
  position: relative;
  z-index: 2;
}

.support__logo {
  width: 130px;
  width: 8.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

.support__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support__text {
    font-size: 1.125rem;
  }
}

.support__text::before {
  content: "";
  display: inline-block;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  background-image: url(../images/common/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .support__text::before {
    width: 2.25rem;
    height: 2.25rem;
    padding-right: 5rem;
  }
}

.title {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Sen", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 3.125rem;
  }
}

.title--white {
  color: #fff;
}

.title span {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .title span {
    font-size: 1.125rem;
  }
}

.title span::before,
.title span::after {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 1px;
  height: 0.0625rem;
  background: #575757;
}

.title--white span::before,
.title--white span::after {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
}

.title2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Sen", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .title2 {
    font-size: 3.125rem;
  }
}

.title2 span {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .title2 span {
    font-size: 1.125rem;
  }
}
/*# sourceMappingURL=styles.css.map */
