@charset "UTF-8";
body {
  color: #000;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

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

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

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

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

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

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

/* ホバー */
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::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;
}

/*
// ==========
// about
// ==========
*/
.about__body {
  width: 100%;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.about__text--md {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .about__text--md {
    font-size: 1.5625rem;
  }
}

.about__text--ll {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: cubano, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .about__text--ll {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .about__text--ll {
    font-size: 4.75rem;
  }
}
.about__text--ll .small {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__text--ll .small {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .about__text--ll .small {
    font-size: 3.75rem;
  }
}

.about__text--s {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .about__text--s {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .about__text--s {
    font-size: 1.25rem;
  }
}

/* table */
.about__table {
  margin-top: 100px;
  margin-top: 6.25rem;
}
.about__table .table__inner {
  margin-left: auto;
  margin-right: auto;
}
.about__table .table__row {
  display: block;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .about__table .table__row {
    display: table-row;
  }
}
.about__table .table__head {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__table .table__head {
    display: table-cell;
    padding-right: 2rem;
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 1440px) {
  .about__table .table__head {
    font-size: 1.5625rem;
    line-height: 1.5;
  }
}
.about__table .table__text {
  position: relative;
  text-align: left;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__table .table__text {
    display: table-cell;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 1440px) {
  .about__table .table__text {
    font-size: 1.5625rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .about__table .table__text::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "";
    display: block;
    width: 1px;
    height: 4rem;
    background-color: #000;
  }
}
.about__table .small {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__table .small {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* imgArea */
.about__imgArea {
  position: relative;
  margin-top: 96px;
  margin-top: 6rem;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  background-color: #fff;
  border: 2px solid #606060;
  border-radius: 1.75rem;
}
@media screen and (min-width: 768px) {
  .about__imgArea {
    margin-top: 5.625rem;
    padding-top: 4rem;
    padding-bottom: 3.75rem;
  }
}

.imgArea__title {
  position: absolute;
  top: -48px;
  top: -3rem;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .imgArea__title {
    top: 0;
  }
}

.imgArea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .imgArea__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 4.625rem;
    padding-right: 4.625rem;
  }
}

.imgArea__img {
  max-width: 400px;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.imgArea__img img {
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .imgArea__img {
    max-width: 26.5rem;
    margin-left: 0;
    margin-right: 4rem;
    margin-bottom: 0;
    width: 100%;
  }
}

.imgArea__body .text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .imgArea__body .text {
    font-size: 1.25rem;
  }
}

.imgArea__list {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.imgArea__item {
  text-align: left;
}
.imgArea__item .title {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
  border-bottom: 2px solid #000;
}
.imgArea__item .text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
.imgArea__item + .imgArea__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.bottom-slider {
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .bottom-slider {
    margin-top: 12.5rem;
    margin-bottom: 7.5rem;
  }
}

.bottomBtn {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .bottomBtn {
    display: none;
  }
}

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

.bottomBtn__item {
  width: 50%;
}

.bottomBtn__link {
  display: grid;
  place-items: center;
  padding: 8px 0;
  padding: 0.5rem 0;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.18em;
}
@media screen and (min-width: 768px) {
  .bottomBtn__link {
    padding: 1rem 0;
  }
}

.bottomBtn__item--yellow {
  background-color: #a9822c;
}

.bottomBtn__item--green {
  background-color: #9bcbaf;
}

.btn-block {
  padding: 50px 0 20px;
  padding: 3.125rem 0 1.25rem;
}
@media screen and (min-width: 1024px) {
  .btn-block {
    padding: 9.375rem 0 11.875rem;
  }
}

.btn-block__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn-block__inner {
    max-width: 47.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .btn-block__inner {
    max-width: 78.125rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.btn-block .btn-block__btn {
  color: #b9dbc8;
  border-color: #b9dbc8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-block .btn-block__btn:focus, .btn-block .btn-block__btn:hover {
  color: #fff;
  background-color: #b9dbc8;
}

/*
// ==========
// btn
// ==========
*/
.btn {
  display: inline-block;
  padding: 11px 42.5px;
  padding: 0.6875rem 2.65625rem;
  color: #fff;
  background: #474cff;
  border: 2px solid #474cff;
  border-radius: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 0.3125rem 1rem;
    border-radius: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:focus, .btn:hover {
  color: #474cff;
  background: #fff;
}

.section__btnArea {
  padding-top: 100px;
  padding-top: 6.25rem;
  text-align: center;
}

.btn02 {
  display: inline-block;
  max-width: 400px;
  max-width: 25rem;
  width: 100%;
  padding: 16px;
  padding: 1rem;
  color: #242424;
  border: 2px solid #242424;
  border-radius: 5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn02 {
    max-width: 43.75rem;
    padding: 2.5rem;
    font-size: 2.5rem;
    border-width: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .btn02 {
    width: auto;
    padding: 2.5rem 6.25rem;
    font-size: 2.1875rem;
  }
}

.btn02:focus,
.btn02:hover {
  color: #fff;
  background-color: #242424;
}

.btn03 {
  display: inline-block;
  padding: 22px 76px;
  padding: 1.375rem 4.75rem;
  border: 2px solid #a9822c;
  border-radius: 4rem;
  color: #a9822c;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .btn03 {
    font-size: 1.375rem;
  }
}
.btn03:hover {
  background-color: #a9822c;
  color: #fff;
}

.c-checkbox01 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.c-checkbox01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-top: -2px;
  border: 1px solid #231815;
  border-radius: 2px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .c-checkbox01::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .c-checkbox01::before {
    top: 50%;
    width: 17px;
    height: 17px;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-checkbox01::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 4px;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 9px;
  width: 5px;
  margin-top: -7px;
  border-right: 3px solid #026795;
  border-bottom: 3px solid #026795;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .c-checkbox01::after {
    top: 20px;
    left: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-checkbox01::after {
    top: 15px;
    left: 6px;
  }
}

.c-checkbox01.checked::after {
  opacity: 1;
}

/* 
// ==========
// card 
// ==========
*/
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex__item {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.card__imgArea {
  max-width: 540px;
  max-width: 33.75rem;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .card__imgArea {
    max-width: 21.875rem;
  }
}

.card__title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .card__title {
    font-size: 1.25rem;
  }
}

.card__price {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1.8;
}

.card__priceUnit {
  font-size: 12px;
  font-size: 0.75rem;
}

.card__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  left: 0.12em;
}

.card__text--small {
  font-size: 10px;
  font-size: 0.625rem;
  display: inline-block;
  color: #000;
  font-weight: normal;
}

/* cards--col2 */
.cards--col2 {
  margin-bottom: -32px;
  margin-bottom: -2rem;
}
@media screen and (min-width: 768px) {
  .cards--col2 {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -6.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .cards--col2 {
    margin-bottom: -8.125rem;
  }
}

.cards--col2 > .cards__item {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  width: calc(50% - 1rem);
  margin-right: 32px;
  margin-right: 2rem;
}
@media screen and (min-width: 768px) {
  .cards--col2 > .cards__item {
    width: calc(50% - 3.125rem);
    margin-right: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .cards--col2 > .cards__item {
    margin-bottom: 8.125rem;
  }
}
.cards--col2 > .cards__item:nth-child(2n) {
  margin-right: 0;
}

.card2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .card2 {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .card2 {
    display: block;
  }
}

.card2__head {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  -ms-flex: 0 0 6.25rem;
      flex: 0 0 6.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card2__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5rem;
            flex: 0 0 12.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .card2__head {
    margin-bottom: 2.8125rem;
  }
}
.card2__head img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.card2__head::after {
  padding-top: 100%;
  content: "";
  display: block;
}

.card2__heading {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #231815;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .card2__heading {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .card2__heading {
    font-size: 1.25rem;
  }
}

.card2__text {
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 1.688;
}
@media screen and (min-width: 768px) {
  .card2__text {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .card2__text {
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
  }
}

.circle {
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  border-radius: 3rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .circle {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .circle {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cta {
    display: none;
  }
}

.cta__inner {
  width: min(90%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

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

.cta__btn {
  display: inline-block;
  width: 50%;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    font-size: 2.5rem;
  }
}
.cta__btn .en {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cta__btn .en {
    font-size: 1.625rem;
  }
}
.cta__btn--instagram {
  background-color: #c1588e;
}
.cta__btn--line {
  background-color: #01b801;
}
.cta__btn--discord {
  background-color: #5869ea;
}
.cta__btn--twitter {
  background-color: #1d9aef;
}

.cta .text {
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cta .text {
    font-size: 2.5rem;
  }
}

.cta__link {
  display: block;
  font-family: cubano, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta__link {
    font-size: 3.6875rem;
  }
}

/* cta--02 */
.cta--02 {
  background: #eee;
}
@media screen and (min-width: 768px) {
  .cta--02 {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .cta--02 .cta__top {
    margin-top: 2.5rem;
  }
}
.cta--02 .cta__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: center;
}
.cta--02 .cta__btn {
  text-align: center;
  width: 33.3333333333%;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cta--02 .cta__btn {
    padding: 0;
  }
  .cta--02 .cta__btn:not(:first-child) {
    margin-left: 0.5rem;
  }
}
.cta--02 .cta__btn img {
  display: inline-block;
  height: 60px;
  height: 3.75rem;
  width: 80%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .cta--02 .cta__btn img {
    width: 100%;
    height: 6.875rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .cta--02 .cta__btn {
    background: transparent;
  }
}
.cta--02 .cta__btn--line img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .cta--02 .cta__btn--line img {
    width: auto;
    padding-top: 0;
  }
}
.cta--02.u-mobile .cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta--02 .cta__link {
  color: #474cff;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  left: 0.06em;
  line-height: 1.75;
  text-align: center;
}
.cta--02.u-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/*
// ==========
// フレックスボックス
// ==========
*/
@media screen and (min-width: 1024px) {
  .flex__container--col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .flex__container--col2 .flex__left {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .flex__container--col2 .flex__right {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .flex__container--col3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .flex__item--col3 {
    width: 33.3333333333%;
  }
}

/*
// ==========
// footer
// ==========
*/
.footer {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(19%, #000));
  background: linear-gradient(to bottom, #fff 0% 19%, #000 19% 100%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 30rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(14%, #000));
    background: linear-gradient(to bottom, #fff 0% 14%, #000 14% 100%);
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding-bottom: 3.125rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(25%, #000));
    background: linear-gradient(to bottom, #fff 0% 25%, #000 25% 100%);
  }
}

.footer__logo {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  max-width: 245px;
  max-width: 15.3125rem;
  margin-left: auto;
  margin-right: auto;
}

.footer__text {
  margin-bottom: 68px;
  margin-bottom: 4.25rem;
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 1rem;
  }
}

.footer__copy {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.875rem;
  }
}

.footer02 {
  background: #000;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.footer02__inner {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.footer02__link {
  display: block;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .footer02__link {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.875rem;
  }
  .footer02__link:not(:first-child) {
    border-left: 1px solid #fff;
  }
}
.footer02__link:focus, .footer02__link:hover {
  text-decoration: underline;
}

.footer02__copy {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .footer02__copy {
    margin-top: 5.5rem;
  }
}

.footer02__top {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer02__top {
    text-align: left;
  }
}

.footer03 {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  background-color: #eae5e2;
}
@media screen and (min-width: 768px) {
  .footer03 {
    padding-top: 8.125rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03 {
    padding-top: 6.25rem;
    padding-bottom: 4.6875rem;
  }
}

.footer03__inner {
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  max-width: 800px;
  max-width: 50rem;
}
@media screen and (min-width: 1024px) {
  .footer03__inner {
    padding: 0 25px;
    max-width: 106.25rem;
  }
}

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

.footer03__img-area {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer03__img-area {
    padding-right: 3.75rem;
    padding-left: 3.125rem;
    max-width: 15.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03__img-area {
    padding: 0 2.5rem;
    max-width: 22.5rem;
  }
}

.footer03__text-area {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer03__text-area {
    padding-left: 3.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03__text-area {
    padding-left: 2.5rem;
  }
}

.footer03__title {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer03__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03__title {
    font-size: 1.125rem;
  }
}

.footer03__text {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  .footer03__text {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03__text {
    font-size: 0.875rem;
  }
}
.footer03__text + .footer03__text {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.footer03__copyright {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  .footer03__copyright {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer03__copyright {
    margin-top: 0;
    padding-right: 9.375rem;
    text-align: right;
    font-size: 0.875rem;
  }
}
.footer03__copyright + .footer03__copyright {
  margin-top: 18px;
  margin-top: 1.125rem;
}

@media screen and (min-width: 1024px) {
  .form {
    border-top: 1px solid transparent;
  }
}

.form__inner {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 1024px) {
  .form__inner {
    table-layout: fixed;
  }
}

.form__row:last-of-type .form__header,
.form__row:last-of-type .form__description {
  border-bottom: none;
}

.form__row {
  display: block;
}
@media screen and (min-width: 1024px) {
  .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}
.form__row:nth-last-of-type(-n+1) {
  border-top: none;
}

.form__row {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 1024px) {
  .form__row {
    margin-bottom: 3.75rem;
  }
}

.form__header {
  position: relative;
  display: block;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .form__header {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 15.625rem;
    text-align: right;
    font-size: 1.25rem;
  }
}

.form__row--upper-header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__description {
  display: block;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.17em;
}
@media screen and (min-width: 768px) {
  .form__description {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__description {
    width: 100%;
    border-bottom: 1px solid transparent;
    font-size: 1rem;
  }
}

.form__description input,
.form__description select,
.form__description textarea {
  background-color: #f3f3f3;
  font-size: 16px;
  font-size: 1rem;
}
.form__description input,
.form__description textarea {
  width: 100%;
}
.form__description input,
.form__description select {
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .form__description input,
.form__description select {
    padding: 1.75rem 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__description input,
.form__description select {
    padding: 1rem 0.5rem;
  }
}
.form__description textarea {
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .form__description textarea {
    padding: 2.5rem 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__description textarea {
    padding: 1.625rem;
    min-height: 20rem;
  }
}
.form__description input::-webkit-input-placeholder {
  color: #bebebe;
}
.form__description input::-moz-placeholder {
  color: #bebebe;
}
.form__description input::-ms-input-placeholder {
  color: #bebebe;
}
.form__description input::placeholder {
  color: #bebebe;
}

.form__description--short input {
  margin-right: 40px;
  margin-right: 2.5rem;
  max-width: 180px;
  max-width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .form__description--short input {
    max-width: 23.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__description--short input {
    margin-right: 1.875rem;
    max-width: 17.5rem;
  }
}
.form__description--short span {
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .form__description--short span {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__description--short span {
    font-size: 0.875rem;
  }
}

.form__select {
  position: relative;
}

.form__select select {
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
  color: #bebebe;
}
@media screen and (min-width: 768px) {
  .form__select select {
    max-width: 35rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__select select {
    max-width: 24.375rem;
  }
}

.form__select::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  content: "";
}

.form__notice {
  display: none;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .form__notice {
    display: block;
  }
}

#form_submit_button {
  padding: 40px 0;
  padding: 2.5rem 0;
  background-color: #a9822c;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.22em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  #form_submit_button {
    padding: 3.125rem 0;
    max-width: 43.75rem;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  #form_submit_button {
    padding: 2.5rem 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: 1.125rem;
  }
}
#form_submit_button:focus, #form_submit_button:hover {
  opacity: 0.7;
}

.form__link-text {
  display: inline-block;
  border-bottom: 1px solid #595757;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .form__link-text {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .form__link-text {
    font-size: 1rem;
  }
}
.form__link-text:focus, .form__link-text:hover {
  border-bottom-color: transparent;
}

#agree_check {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  #agree_check {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  #agree_check {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  #agree_check input[type=checkbox] {
    width: 1rem;
    height: 1rem;
  }
}

/* 
// ==========
// header
// ==========
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 80px;
  height: 5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 10.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    height: 8.75rem;
  }
}

.header__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  max-width: 1920px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__inner {
    padding-right: 5.625rem;
    padding-left: 3.125rem;
  }
}

.header__flexWrapper {
  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;
}

.header__logo {
  z-index: 3;
  width: auto;
  height: 50px;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 3.75rem;
  }
}
.header__logo img {
  width: auto;
  height: 100%;
}
.header__logo a {
  display: block;
  width: 100%;
  height: inherit;
}
.header__logo a:hover {
  opacity: 1;
}

.header__drawer {
  position: relative;
  z-index: 3;
  width: 40px;
  width: 2.5rem;
  height: 12px;
  height: 0.75rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    width: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer span {
  position: absolute;
  right: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #a9822c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__drawer span:first-child {
  top: 0;
}
.header__drawer span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.header__drawer span:last-child {
  bottom: 0;
}

.header__drawer.open span:first-child {
  top: 50%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.header__drawer.open span:nth-child(2) {
  display: none;
}
.header__drawer.open span:last-child {
  top: 50%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.header__navWrapper {
  position: absolute;
  top: 15%;
  -webkit-transform: scale(0);
          transform: scale(0);
  height: inherit;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .header__navWrapper {
    position: static;
    position: initial;
    -webkit-transform: scale(1);
            transform: scale(1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav.open {
  opacity: 1;
  pointer-events: auto;
}

.header__nav .nav__item {
  position: relative;
  padding-right: 16px;
  padding-right: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #a9822c;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__item {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav .nav__item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    border-bottom: none;
    color: #606060;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav .nav__item {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.header__nav .nav__item:last-child {
  border-bottom: none;
}

.header__nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  padding: 0.625rem 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .header__nav a {
    padding-right: 0;
    padding-left: 0;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #b9dbc8;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.header__nav a:hover::after, .header__nav a:focus::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.nav__list {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-right: 20px;
  padding-left: 20px;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .nav__list {
    margin: 0 auto;
    max-width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .nav__list {
    padding-top: 6.25rem;
    max-width: 41.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    max-width: none;
  }
}

.header__linkArea {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__linkArea {
    position: relative;
    display: block;
    margin-left: 4rem;
  }
  .header__linkArea::before {
    position: absolute;
    top: 50%;
    left: -27px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: 3.75rem;
    background: #000;
    content: "";
  }
}

/* ヘッダーリンク　ボタンあり　左線なし */
.header__linkArea--hasBtn {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .header__linkArea--hasBtn {
    margin: 0 auto;
    max-width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .header__linkArea--hasBtn {
    position: relative;
    padding-top: 6.25rem;
    max-width: 41.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__linkArea--hasBtn {
    display: block;
    margin-left: 2rem;
    padding: 0;
    max-width: none;
  }
}

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

.headerLink__item {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
.headerLink__item + .headerLink__item {
  margin-left: 40px;
  margin-left: 2.5rem;
}

.headerLink__tel {
  font-family: cubano, sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 1;
}
.headerLink__tel .small {
  padding-right: 5px;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.07em;
}

.headerLink__imgArea {
  display: inline-block;
  width: 36px;
  width: 2.25rem;
}
.headerLink__imgArea a {
  display: block;
  width: 100%;
  height: 100%;
}

.headerLink__logo {
  margin: 0 auto;
  width: min(90%, 110px);
}
@media screen and (min-width: 1024px) {
  .headerLink__logo {
    display: none;
  }
}

/* ヘッダーのボタン */
a.header__btn {
  display: inline-block;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
  width: 100%;
  border: 2px solid #a9822c;
  border-radius: 3rem;
  background: #fff;
  color: #a9822c;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  a.header__btn {
    padding: 0.25rem 2rem;
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 1024px) {
  a.header__btn {
    font-size: 1.125rem;
  }
}
a.header__btn:focus, a.header__btn:hover {
  background-color: #a9822c;
  color: #fff;
}

.headerLink a:focus::after, .headerLink a:hover::after {
  content: none;
}

.header__box {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: center;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .header__box {
    position: static;
    position: initial;
    overflow: visible;
    width: auto;
    pointer-events: initial;
  }
}

.header__box.open {
  pointer-events: initial;
}

.header__box2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: none;
  width: 400vw;
  height: 400vw;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .8);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .header__box2 {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}

.header__box.open .header__box2 {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.header__box.open .header__navWrapper {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header__nav {
  width: 100vw;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    position: static;
    position: initial;
    width: auto;
    opacity: 1;
  }
}

.header__box.open .header__nav {
  opacity: 1;
}

/*
// ==========
// 見出し
// ==========
*/
.level4-heading {
  display: inline-block;
  padding: 8px 30px;
  padding: 0.5rem 1.875rem;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .level4-heading {
    font-size: 1.5rem;
    padding: 0.8125rem 3.75rem;
    letter-spacing: 0.12em;
  }
}
@media screen and (min-width: 1024px) {
  .level4-heading {
    padding: 0.5rem 2.5rem;
  }
}

.icon {
  position: fixed;
  right: 16px;
  right: 1rem;
  bottom: 48px;
  bottom: 3rem;
  z-index: 100;
  max-width: 100px;
  max-width: 6.25rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-animation: 3s fuwafuwa infinite;
          animation: 3s fuwafuwa infinite;
}
@media screen and (min-width: 1024px) {
  .icon {
    max-width: 9.375rem;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.icon:hover {
  opacity: 0.8;
}

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

/* ヘッダー分の余白 */
.main {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .main {
    margin-top: 10.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .main {
    margin-top: 8.75rem;
  }
}

.map {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .map {
    margin-top: 10rem;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.map__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
  aspect-ratio: 1000/530;
}
@media screen and (min-width: 1024px) {
  .map__wrapper {
    aspect-ratio: 1920/770;
  }
}

.mv__inner {
  display: block;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    max-width: 46.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv__inner {
    max-width: 78.125rem;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.mv__catch {
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .mv__catch {
    max-width: 40.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv__catch {
    max-width: 46.875rem;
  }
}

.mv__img-area > * {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mv03 {
  padding-top: 140px;
  padding-top: 8.75rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(/img/contact/img_mv_contact.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .mv03 {
    padding-top: 10.625rem;
    height: 400px;
  }
}

.mv03__catch {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.55em;
}
@media screen and (min-width: 768px) {
  .mv03__catch {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv03__catch {
    font-size: 2.25rem;
  }
}

.mv3 {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
  background-color: #b9dbc8;
}
@media screen and (min-width: 1024px) {
  .mv3 {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(50%, #b9dbc8));
    background: linear-gradient(to bottom, #fff 0 50%, #b9dbc8 50% 100%);
  }
}

.mv3__inner {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .mv3__inner {
    margin: 0 auto;
    width: min(90%, 1700px);
  }
}

.mv3__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 280px;
  width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .mv3__catch {
    width: 28.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv3__catch {
    bottom: 12%;
    left: 10%;
    -webkit-transform: none;
            transform: none;
    width: 33.125rem;
  }
}

.mv3 .swiper-slide img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.mv3 .swiper-slide.swiper-slide-active img {
  -webkit-animation-name: slideAnime;
          animation-name: slideAnime;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes slideAnime {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  20% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  85% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes slideAnime {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  20% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  85% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.sec07__title {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

.sec07__text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 2.248;
}
@media screen and (min-width: 768px) {
  .sec07__text {
    margin-bottom: 5.625rem;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec07__text {
    margin-bottom: 10.625rem;
    font-size: 1.4375rem;
    line-height: 2.443;
  }
}

.sec07__img-area {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sec07__img-area {
    max-width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .sec08__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
  }
}

.sec08__title {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.sec08__text-area {
  max-width: 360px;
  max-width: 22.5rem;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sec08__text-area {
    max-width: 36.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec08__text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 36.25rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sec08__text {
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 2.248;
}
@media screen and (min-width: 768px) {
  .sec08__text {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec08__text {
    font-size: 1.4375rem;
  }
}

@media screen and (min-width: 1024px) {
  .sec08__img-area {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .sec09__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.sec09__title {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.sec09__text-area {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .sec09__text-area {
    max-width: 45rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec09__text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 40rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sec09__list {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.sec09__item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 1.768;
}
@media screen and (min-width: 768px) {
  .sec09__item {
    padding-left: 2.5rem;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec09__item {
    font-size: 1.4375rem;
  }
}

.sec09__item::before {
  content: "";
  position: absolute;
  top: 7px;
  top: 0.4375rem;
  left: 5px;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background-color: #231815;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .sec09__item::before {
    top: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

.sec09__text {
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 2.248;
}
@media screen and (min-width: 768px) {
  .sec09__text {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec09__text {
    font-size: 1.4375rem;
  }
}

@media screen and (min-width: 1024px) {
  .sec09__img-area {
    width: 50%;
  }
}

.sec10 {
  color: #fff;
}

.sec10__block {
  position: relative;
  padding: 80px 0;
  padding: 5rem 0;
  border-radius: 2.8125rem;
  background-color: #242424;
}
@media screen and (min-width: 768px) {
  .sec10__block {
    padding: 6.25rem 0;
  }
}

.sec10__block-inner {
  padding-right: 20px;
  padding-left: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .sec10__block-inner {
    max-width: 41.25rem;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .sec10__block-inner {
    max-width: 56.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sec10__text-area {
  position: relative;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .sec10__text-area {
    margin-bottom: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec10__text-area {
    margin-bottom: 0;
  }
}

.sec10__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1.393;
}
@media screen and (min-width: 600px) {
  .sec10__title {
    font-size: 3rem;
  }
}

.sec10__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 2.248;
}
@media screen and (min-width: 600px) {
  .sec10__text {
    font-size: 1.375rem;
  }
}

.sec10__link-area {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .sec10__link-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec10__btn {
  display: inline-block;
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
  background-color: #242424;
  border: 1px solid #fff;
  border-radius: 3rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 600px) {
  .sec10__btn {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec10__btn {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 1.25rem 2.375rem;
  }
}

.sec10__btn:focus,
.sec10__btn:hover {
  color: #231815;
  background-color: #fff;
  opacity: 1;
}

.sec10__img-area {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sec10__img-area {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    right: 50%;
    bottom: 3.125rem;
    max-width: 15.625rem;
    width: 100%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.sec11__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sec11__title {
    margin-bottom: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec11__title {
    margin-bottom: 4.375rem;
  }
}

.sec11__text-area {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sec11__text-area {
    margin-bottom: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec11__text-area {
    margin-bottom: 5rem;
  }
}

.sec11__text {
  color: #231815;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 2.088;
}
@media screen and (min-width: 768px) {
  .sec11__text {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec11__text {
    font-size: 1.4375rem;
  }
}

.sec11__text--marked {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  padding: 0 1rem;
  background-color: #ffe300;
  font-weight: bold;
}

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

.sec12.section {
  padding: 50px 0 80px;
  padding: 3.125rem 0 5rem;
  background-color: #d7edef;
}

.sec12__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #b9dbc8;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec12__title {
    font-size: 2.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec12__title {
    text-align: left;
  }
}

.sec12__list {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .sec12__list {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
  }
}

.sec12__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}
.sec12__item:not(:last-child)::after {
  position: absolute;
  content: "";
  bottom: -50px;
  bottom: -3.125rem;
  left: 55%;
  width: 40px;
  width: 2.5rem;
  height: 20px;
  height: 1.25rem;
  background-image: url(/img/setup/icon_chevron_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .sec12__item:not(:last-child)::after {
    top: 22%;
    right: -2.375rem;
    left: auto;
    width: 0.75rem;
    height: 2rem;
    background-image: url(/img/setup/icon_chevron_right.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.sec12__item:not(:last-child) {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 1024px) {
  .sec12__item:not(:last-child) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .sec13 {
    margin-bottom: 3.125rem;
  }
}

.sec13__head {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (min-width: 1024px) {
  .sec13__head {
    margin-bottom: 3.75rem;
  }
}

.sec13__title-area {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec13__title-area {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec13__title-area {
    text-align: left;
  }
}

.sec13__text {
  color: #231815;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  line-height: 2.01;
}
@media screen and (min-width: 768px) {
  .sec13__text {
    font-size: 1.5625rem;
    line-height: 2.248;
  }
}
@media screen and (min-width: 1024px) {
  .sec13__text {
    font-size: 1.25rem;
  }
}

.sec14__body {
  padding-top: 32px;
  padding-top: 2rem;
}

.sec14__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 3.34;
}
@media screen and (min-width: 768px) {
  .sec14__text {
    margin-top: 3.875rem;
    font-size: 1.125rem;
    letter-spacing: 0.18em;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__text {
    margin-top: 4.5rem;
    font-size: 1rem;
    line-height: 2.89;
  }
}

.extensions .sec14__text,
.eyelashPerm .sec14__text {
  line-height: 2.39;
}

.sec14__flexItem {
  display: grid;
  place-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sec14__flexItem {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__flexItem {
    margin-top: 0rem;
  }
}

.sec14__imgBox {
  max-width: 140px;
  max-width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .sec14__imgBox {
    max-width: 12.5rem;
  }
}

.sec14__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1000/640;
}
@media screen and (min-width: 1024px) {
  .sec14__item {
    aspect-ratio: 1/1;
  }
}

.sec14__item a {
  display: block;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.sec14__item img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec14__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sec14__linkText {
  position: absolute;
  bottom: 20%;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .sec14__linkText {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__linkText {
    font-size: 1.875rem;
  }
}

.sec14__arrow {
  position: absolute;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sec14__arrow {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__arrow {
    font-size: 1.0625rem;
  }
}

.sec14__arrow::before {
  top: calc(50% - 5px);
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  display: inline-block;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec14__item:hover .sec14__arrow::before {
  right: 10px;
  width: 30px;
}

.sec14__text--big {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.34em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec14__text--big {
    font-size: 2.1875rem;
  }
}

.sec14__text--small {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #a9822c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec14__text--small {
    margin-top: 1.75rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__text--small {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.sec14__imgBox2 {
  position: relative;
  max-width: 640px;
  max-width: 40rem;
  width: 100%;
  aspect-ratio: 640/450;
}
@media screen and (min-width: 1024px) {
  .sec14__imgBox2 {
    max-width: 32.5rem;
    width: 100%;
    aspect-ratio: 520/360;
  }
}

.sec14__flexItem2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sec14__flexItem2 {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__flexItem2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

.profile__top {
  position: relative;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.training__top {
  position: relative;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .training__top {
    padding-bottom: 0;
  }
}

.sec14__inner {
  position: relative;
  z-index: 10;
}

.sec14__bgBox {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25%;
  -webkit-animation: bgchange 20s ease infinite;
          animation: bgchange 20s ease infinite;
}
@media screen and (min-width: 768px) {
  .sec14__bgBox {
    height: 35%;
  }
}
@media screen and (min-width: 1024px) {
  .sec14__bgBox {
    top: 0;
    right: 0;
    left: auto;
    width: 35%;
    height: 100%;
  }
}

@-webkit-keyframes bgchange {
  0% {
    background: #ebe6d6;
  }
  25% {
    background: #ebe0df;
  }
  50% {
    background: #ced7e1;
  }
  75% {
    background: #6ea695;
  }
  100% {
    background: #ebe6d6;
  }
}

@keyframes bgchange {
  0% {
    background: #ebe6d6;
  }
  25% {
    background: #ebe0df;
  }
  50% {
    background: #ced7e1;
  }
  75% {
    background: #6ea695;
  }
  100% {
    background: #ebe6d6;
  }
}
.profile__bottom {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .profile__bottom {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .profile__bottom {
    margin-top: 10rem;
  }
}

.sec14__img2 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider2 img {
  border-radius: 1rem;
}

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

.concept__bottom {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .concept__bottom {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .concept__bottom {
    margin-top: 10rem;
  }
}

.training .space {
  display: inline-block;
  width: 16px;
  width: 1rem;
}

.sec15 {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .sec15 {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec15 {
    margin-top: 10rem;
  }
}

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

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

.sec15-item {
  padding: 32px 20px;
  padding: 2rem 1.25rem;
  border: 4px solid #b9dbc8;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .sec15-item {
    padding: 3.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .sec15-item__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 5.625rem;
       -moz-column-gap: 5.625rem;
            column-gap: 5.625rem;
  }
}

@media screen and (min-width: 1024px) {
  .sec15-item__box1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.sec15-item__box2 {
  display: none;
  aspect-ratio: 400/270;
}
@media screen and (min-width: 1024px) {
  .sec15-item__box2 {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.sec15-item__box2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.sec15-item__title {
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .sec15-item__title {
    font-size: 2rem;
  }
}

.sec15-item__text--flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 8px;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1.91;
}
@media screen and (min-width: 600px) {
  .sec15-item__text--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .sec15-item__text--flex {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec15-item__text--flex {
    font-size: 1.25rem;
  }
}

.sec15-item__text {
  padding: 20px 8px;
  padding: 1.25rem 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sec15-item__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec15-item__text {
    font-size: 1rem;
  }
}

.sec15-item__flexItem {
  display: block;
}
@media screen and (min-width: 600px) {
  .sec15-item__flexItem {
    display: inline-block;
  }
}

.sec15__btnBox {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec15__btnBox {
    margin-top: 7.5rem;
  }
}

.sec16 {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sec16 {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sec16 {
    margin-top: 7.5rem;
  }
}

.sec16__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 2.12;
}
@media screen and (min-width: 768px) {
  .sec16__text {
    font-size: 1.125rem;
  }
}

.sec16__text--small {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  line-height: 2.39;
}
@media screen and (min-width: 768px) {
  .sec16__text--small {
    font-size: 1rem;
  }
}

.section-subTitle {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #a9822c;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .section-subTitle {
    margin-top: 2.5rem;
    font-size: 2.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-subTitle {
    margin-top: 1.5rem;
  }
}

.section-title02 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #231815;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.249;
}
@media screen and (min-width: 768px) {
  .section-title02 {
    font-size: 2.8125rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-title02 {
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0.13em;
  }
}

.section-title02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 3px;
  background-color: #b9dbc8;
}

@media screen and (min-width: 768px) {
  .section-title02--small {
    font-size: 2.1875rem;
  }
}

.section-title03 {
  color: #80c39a;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-title03 {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-title03 {
    font-size: 1.875rem;
  }
}

/* 
// ==========
// section
// ==========
*/
.section {
  position: relative;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.section__inner {
  width: min(90%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  width: auto;
  height: 48px;
  height: 3rem;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.section__title img {
  display: inline-block;
  width: auto;
  height: 100%;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .section__title {
    height: 5rem;
    margin-bottom: 4.375rem;
  }
}

.sec01__title {
  max-width: 450px;
  max-width: 28.125rem;
  margin-left: auto;
  margin-right: auto;
}

.section__text {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .section__text {
    font-size: 1.125rem;
  }
}

.section__text--l {
  color: inherit;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .section__text--l {
    font-size: 2.5rem;
  }
}

/* sec01 */
.sec01 {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sec01 {
    padding-top: 4.375rem;
    padding-bottom: 5rem;
  }
}

.sec01__inner {
  max-width: 750px;
  max-width: 46.875rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .sec01__inner {
    max-width: 58.75rem;
    width: 90%;
  }
}

/* sec02 */
@media screen and (min-width: 768px) {
  .sec02 {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}

/* sec03 */
.sec03 {
  background: -webkit-gradient(linear, left top, left bottom, from(#edeae2), color-stop(80%, #fff));
  background: linear-gradient(to bottom, #edeae2 0% 80%, #fff 80% 100%);
}
@media screen and (min-width: 768px) {
  .sec03 {
    padding-top: 6.25rem;
    padding-bottom: 7.875rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#edeae2), color-stop(80%, #fff));
    background: linear-gradient(to bottom, #edeae2 0% 80%, #fff 80% 100%);
  }
}

/* sec04 */
@media screen and (min-width: 768px) {
  .sec04 {
    padding-top: 2.5rem;
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec04 .mv__inner {
    margin-bottom: 0.75rem;
  }
}

.sec04__inner {
  max-width: 500px;
  max-width: 31.25rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .sec04__inner {
    max-width: 58.75rem;
    width: 90%;
  }
}

/* sec05 */
.sec05 {
  background: #eeeeee;
  word-wrap: anywhere;
  word-wrap: break-word;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec05 {
    padding-top: 10rem;
    text-align: left;
  }
}
.sec05 .flex__left {
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sec05 .flex__left {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.sec05 .flex__right {
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .sec05 .flex__right {
    max-width: 100%;
    padding-top: 0.5rem;
    padding-left: 6rem;
  }
}
.sec05 .section__text--l {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .sec05 .section__text--l {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec05 .section__text--l {
    font-size: 2.5rem;
  }
}
.sec05 .section__text {
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sec05 .section__text {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .sec05 .section__text {
    font-size: 1.125rem;
  }
}
.sec05 .section__text + .section__text {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sec05 .section__text + .section__text {
    margin-top: 3.5rem;
  }
}
.sec05 .btn {
  margin-top: 32px;
  margin-top: 2rem;
  max-width: 360px;
  max-width: 22.5rem;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .sec05 .btn {
    width: auto;
    padding: 0.25rem 2rem;
  }
}
.sec05 .flex__left {
  position: relative;
}
.sec05 .section__title {
  position: absolute;
  top: 19%;
  right: 4%;
}
@media screen and (min-width: 768px) {
  .sec05 .section__title {
    top: 5%;
    right: 18%;
  }
}

/* sec06 */
@media screen and (min-width: 768px) {
  .sec06 {
    padding-top: 10rem;
    padding-bottom: 8.25rem;
  }
}
.sec06 .section__title {
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sec06 .section__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .sec06 .section__title {
    font-size: 2rem;
  }
}
.sec06 .section__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 90px;
  width: 5.625rem;
  height: 3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#D16BAA), to(#59688B));
  background: linear-gradient(to right, #D16BAA, #59688B);
}
@media screen and (min-width: 768px) {
  .sec06 .section__title::after {
    width: 7.8125rem;
  }
}
.sec06 .btn {
  margin-top: 48px;
  margin-top: 3rem;
  max-width: 360px;
  max-width: 22.5rem;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .sec06 .btn {
    width: auto;
    margin-top: 5rem;
    padding: 0.25rem 2rem;
  }
}
.sec06 .card__title {
  font-family: sans-serif;
  letter-spacing: normal;
}
@media screen and (min-width: 1024px) {
  .sec06 .card__title {
    font-size: 1.75rem;
  }
}
.sec06 .card__text {
  font-family: sans-serif;
}
@media screen and (min-width: 1024px) {
  .sec06 .card__text {
    font-size: 0.875rem;
  }
}

/* フル幅の画像エリア */
.section__imgArea--full {
  width: 100%;
  height: auto;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .section__imgArea--full {
    padding-bottom: 4.375rem;
  }
}
.section__imgArea--full img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* 背景画像エリア */
.section__bgArea {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 65%;
  background: -webkit-gradient(linear, left top, right top, from(#d16baa), to(#59688b));
  background: linear-gradient(to right, #d16baa, #59688b);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section__bgArea {
    height: 60%;
  }
}

.separate-line {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #231815;
}

@media screen and (min-width: 1024px) {
  .setup-main {
    padding-bottom: 6.25rem;
  }
}

/* スマホ改行 0216 */
@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .sp {
    display: none;
  }
}
.u-bottom-line {
  border-bottom: 1px solid #a9822c;
}

/* 余白調整 */
.pt100 {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.mt60 {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .pc-mt0 {
    margin-top: 0;
  }
}

.ml0 {
  margin-left: 0;
}

.mb70-130 {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}
@media screen and (min-width: 1024px) {
  .mb70-130 {
    margin-bottom: 8.125rem;
  }
}

.mbss {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 1024px) {
  .mbss {
    margin-bottom: 2.5rem;
  }
}

.mbs {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .mbs {
    margin-bottom: 2.5rem;
  }
}

.ml-5 {
  margin-left: 5%;
}

/* 文字サイズ */
.fontSize--ll {
  font-size: 70px;
  font-size: 4.375rem;
}

.fontSize--l {
  font-size: 27px;
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .fontSize--l {
    font-size: 1.875rem;
  }
}

.fontSize--md {
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .fontSize--md {
    font-size: 1.5625rem;
  }
}

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

.fontSize--ss {
  font-size: 12px;
  font-size: 0.75rem;
}

/* テキスト中央 */
.text-center {
  text-align: center;
}

/* テキスト左よせ */
.text-left {
  text-align: left;
}

/* 太字 */
.text-bold {
  font-weight: bold;
}

/* インラインブロック */
.text-inline-block {
  display: inline-block;
}

/* 文字色 */
.color--white {
  color: #fff;
}

/* フォントファミリーをsans-serifに */
.text--en {
  font-family: sans-serif;
}

.text-lower {
  text-transform: lowercase;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*# sourceMappingURL=styles.css.map */
