@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #000;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9039548023vw;
  }
}
@media (min-width: 1770px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

html.fixed,
html.fixed body {
  height: 100%;
  overflow: hidden;
}

body {
  margin-top: 5.0625rem;
}

.header {
  background-color: #fff;
  height: 4.125rem;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

.header__logo {
  height: inherit;
  width: 5.8175rem;
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__hamburger {
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    position: static;
  }
}

.top-footer {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/common/marble.webp);
  background-size: cover;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 3.125rem;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-footer {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/common/marble.webp);
    background-size: cover;
    background-repeat: no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 4.1875rem;
  }
}

.footer__wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer__logo-area {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__logo-area {
    padding-left: 18.75rem;
    padding-top: 8.6875rem;
  }
}

.footer__logo {
  display: block;
  margin: 0 auto;
  padding-bottom: 1.25rem;
  width: 9.375rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    display: block;
    width: 20.75rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__logo img {
    aspect-ratio: 332/126;
  }
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    text-align: center;
    padding-top: 3.5625rem;
    margin-bottom: 3.875rem;
  }
}

.footer__copyright-sp {
  text-align: center;
}

.footer-nav__items {
  display: block;
  text-align: center;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__items {
    display: flex;
    margin-bottom: 3.875rem;
    margin-right: 4.375rem;
  }
}

.footer-nav__item {
  font-size: 1rem;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__item {
    font-size: 1.25rem;
    padding: 0.125rem 0.4375rem;
    border-right: solid 1px;
  }
}

.footer-nav__item-trans span {
  text-transform: capitalize;
}

@media screen and (min-width: 768px) {
  .footer-nav__item:nth-child(6) {
    border-right: none;
  }
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1770px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.hamburger {
  padding: 0.625rem;
}

.hamburger span {
  display: block;
  width: 1.625rem;
  height: 0.125rem;
  background-color: black;
  transition: 0.3s;
}

.hamburger span:nth-child(2) {
  margin: 0.375rem 0;
}

.hamburger.open span:nth-child(1) {
  transform: translate(3px, -1px) rotate(45deg);
  transform-origin: left;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translate(3px, 1px) rotate(-45deg);
  transform-origin: left;
}

.header-nav {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .header-nav {
    width: initial;
    height: inherit;
    overflow-y: initial;
  }
}

.js-drawer {
  display: none;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .js-drawer {
    display: block;
  }
}

.js-drawer.open {
  display: block;
}

.header-nav__items {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 25rem;
}
@media screen and (min-width: 768px) {
  .header-nav__items {
    min-height: initial;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item {
    height: inherit;
  }
}

.header-nav__item a {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  text-align: center;
  display: block;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .header-nav__item a {
    height: inherit;
    display: flex;
    align-items: center;
    padding: 0 5.3125rem;
  }
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.125rem;
  }
}

.contact-btn__body {
  opacity: 0;
  transition: all 0.7s ease 0s;
  background-color: #FF6767;
  margin: 0 auto;
  border-radius: 6.25rem;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .contact-btn__body {
    max-width: 59.375rem;
    margin: 0 auto;
    border-radius: 6.25rem;
  }
}

.contact-btn__body.active {
  opacity: 1;
}

.contact-btn__wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-btn__wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.6875rem;
    padding-bottom: 3.6875rem;
    opacity: 0.7;
  }
  .contact-btn__wrapper:hover {
    opacity: 1;
  }
}

.contact-btn__left {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .contact-btn__left {
    width: 50%;
  }
}

.contact-btn__left-text {
  font-size: 0.875rem;
  width: 9.375rem;
  margin: 0 0 0 auto;
  color: white;
}
@media screen and (min-width: 768px) {
  .contact-btn__left-text {
    font-size: 2.6875rem;
    font-weight: 700;
    width: 26.875rem;
    margin: 0 auto;
    color: white;
  }
}

.contact-btn__right {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .contact-btn__right {
    width: 50%;
  }
}

.contact-btn__right-text {
  font-size: 0.75rem;
  width: 9.375rem;
  margin: 0 auto;
  background-color: white;
  color: #FF6767;
  border-radius: 6.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-btn__right-text {
    font-size: 1.875rem;
    font-weight: 500;
    width: 26.875rem;
    margin: 0 auto;
    background-color: white;
    color: #FF6767;
    border-radius: 6.25rem;
    text-align: center;
  }
}

.modal-close {
  text-align: right;
  padding: 0.9375rem 1.25rem;
}

.modal-cards__item {
  text-align: center;
  width: 100%;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3.125rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .modal-cards__item {
    max-width: 37.5rem;
    text-align: center;
    margin-bottom: 5.8125rem;
  }
}

.modal-cars__title {
  font-size: 1.125rem;
  font-weight: 700;
  height: 3.125rem;
  margin: 0 auto 1.875rem auto;
  display: table;
}
@media screen and (min-width: 768px) {
  .modal-cars__title {
    font-size: 2rem;
    height: 4.875rem;
    margin: 0 auto 3.3125rem auto;
    display: table;
  }
}

.modal-cars__title1 {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .modal-cars__title1 {
    display: table-cell;
    vertical-align: middle;
  }
}

.modal-card__img {
  display: block;
  width: 18.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-card__img {
    width: 31.6875rem;
  }
}

.modal-card__img img {
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 20%;
     object-position: 0 20%;
}
@media screen and (min-width: 768px) {
  .modal-card__img img {
    aspect-ratio: 507/294;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.modal-card__text {
  font-size: 0.875rem;
  width: 18.125rem;
  margin: 0 auto;
  text-align: left;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .modal-card__text {
    font-size: 1.5rem;
    width: 27.75rem;
  }
}

.modal-card__plan {
  background-color: #F3F3F3;
  margin: 0 1.875rem;
  padding: 0 0.625rem 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .modal-card__plan {
    background-color: #F3F3F3;
    margin: 0 4.6875rem;
    padding: 0 1.875rem 1.875rem 1.875rem;
  }
}

.modal-card__plan-title {
  font-weight: 700;
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .modal-card__plan-title {
    font-weight: 700;
    padding: 0.625rem 0;
  }
}

.modal-card__plan1 {
  text-align: left;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .modal-card__plan1 {
    text-align: left;
  }
}

.modal-card__plan2,
.modal-card__plan3,
.modal-card__plan4 {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .modal-card__plan2,
  .modal-card__plan3,
  .modal-card__plan4 {
    display: flex;
    justify-content: space-between;
  }
}

.modal-card__plan2 span,
.modal-card__plan3 span,
.modal-card__plan4 span {
  display: block;
}

.modal-card__option {
  background-color: #F3F3F3;
  margin: 2.875rem 1.875rem 1.25rem 1.875rem;
  padding: 0 1.25rem 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .modal-card__option {
    background-color: #F3F3F3;
    margin: 2.875rem 4.6875rem 1.25rem 4.6875rem;
    padding: 0 1.25rem 1.875rem 1.25rem;
  }
}

.modal-card__option-title {
  font-weight: 700;
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .modal-card__option-title {
    font-weight: 700;
    padding: 0.625rem 0;
  }
}

.modal-card__option-list {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-card__option-list {
    margin: 0 auto;
  }
}

.modal-card__option1 {
  display: table;
  text-align: left;
  margin: 0 auto;
  position: relative;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .modal-card__option1 {
    display: table;
    text-align: left;
    margin: 0 auto;
    position: relative;
  }
}

.modal-card__option1::before {
  content: "・";
  position: absolute;
  left: -0.9375rem;
}

.modal-card__option2 {
  display: table;
  text-align: left;
  margin: 1.25rem auto 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal-card__option2 {
    display: table;
    text-align: left;
    margin: 1.25rem auto 0 auto;
    position: relative;
  }
}

.modal-card__option2::before {
  content: "・";
  position: absolute;
  left: -0.9375rem;
}

.modal-btn__body {
  background-color: #FF6767;
  margin: 0 auto;
  border-radius: 6.25rem;
  max-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .modal-btn__body {
    max-width: 31.25rem;
    margin: 0 auto;
    border-radius: 6.25rem;
  }
}

.modal-btn__text {
  font-size: 0.875rem;
  width: 9.375rem;
  margin: 2.875rem auto 0 auto;
  color: white;
  font-weight: 700;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .modal-btn__text {
    font-size: 2rem;
    width: 26.875rem;
    margin: 2.875rem auto 0 auto;
    color: white;
  }
}

#info,
#info1,
#info2,
#info3 {
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-close {
  color: #000;
}
@media screen and (min-width: 768px) {
  .modaal-close {
    right: 70px;
    background: #000;
  }
}

.test {
  font-size: 1rem;
  color: red;
}
@media screen and (min-width: 768px) {
  .test {
    font-size: 3.125rem;
    color: blue;
  }
}

.mv {
  background-color: beige;
}

.mv__wrapper {
  position: relative;
}

.mv__title {
  position: absolute;
  z-index: 1;
  font-size: 0.625rem;
  top: 3.75rem;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__title {
    text-align: center;
    font-size: 3.125rem;
    top: 11.1875rem;
    left: 6.25rem;
  }
}

.mv__title span {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .mv__title span {
    font-size: 5.1875rem;
  }
}

.mv__logo {
  position: absolute;
  z-index: 1;
  width: 5.625rem;
  top: 6.25rem;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__logo {
    width: 20.75rem;
    left: 15.625rem;
    top: 25.9375rem;
  }
}

.mv__subtitle {
  position: absolute;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: white;
  top: 6.875rem;
  left: 15.625rem;
}
@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 3.125rem;
    font-weight: 400;
    color: white;
    top: 35.625rem;
    left: 68.75rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__subtitle p {
    padding-left: 5rem;
  }
}

.mv__subtitle span {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .mv__subtitle span {
    font-size: 5.9375rem;
  }
}

.mv__img {
  background-color: white;
  display: inline-block;
}

.mv__img img {
  opacity: 0.7;
  display: block;
}

.top-concept {
  padding-top: 2.8125rem;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/common/marble.webp);
  background-size: cover;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .top-concept {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
}

.concept__title {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .concept__title {
    text-align: initial;
    font-size: 1.5625rem;
  }
}

.concept__text {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .concept__text {
    text-align: initial;
    font-size: 1.125rem;
  }
}

.concept__text {
  text-transform: capitalize;
}

.concept__img {
  margin: 1.25rem auto 0 auto;
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .concept__img {
    margin-left: initial;
    margin-right: initial;
  }
}

.concept__img img {
  aspect-ratio: 363/272;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 0;
     object-position: 100% 0;
}

@media screen and (min-width: 768px) {
  .concept__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .concept__body {
    padding-right: 4.6875rem;
  }
}

.top-lineup {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top-lineup {
    margin-top: 17.6875rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .top-lineup::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/pink-bg.jpg);
    display: inline-block;
    background-repeat: no-repeat;
    width: 62.5rem;
    height: 62.5rem;
    background-size: contain;
    vertical-align: middle;
    z-index: -1;
    top: 18.75rem;
    left: 57.5rem;
  }
}

.lineup__text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.625rem;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .lineup__text {
    font-size: 1.125rem;
    margin-top: 1.9375rem;
    margin-bottom: 14.25rem;
  }
}

.lineup__text span {
  text-transform: uppercase;
}

.lineup__container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .lineup__container {
    display: flex;
    justify-content: center;
    overflow: visible;
  }
}

.slick-list {
  padding-top: 2.1875rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .slick-list {
    padding-left: 3.75rem;
  }
}

.lineup__items {
  padding: 1.5rem 2.125rem;
  background-color: white;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .lineup__items {
    padding: 1.5rem 2.125rem;
    background-color: white;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.pickup {
  position: relative;
}

.pickup::before {
  content: "人気";
  position: absolute;
  width: 3.6875rem;
  height: 3.6875rem;
  border-radius: 50%;
  background-color: #FFA4A4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1.875rem;
  left: 16.875rem;
}

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

.lineup-items__title {
  text-align: center;
  height: 2.1875rem;
}

.lineup-items__img {
  width: 14.9375rem;
  margin: 0 auto;
  margin-top: 1.875rem;
}

.perm-img,
.brow-img,
.face-img,
.ex-img {
  width: 14.9375rem;
  height: 14.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.brow-img {
  -o-object-position: 100%;
     object-position: 100%;
}

.lineup__btn {
  text-align: center;
  margin-top: 5.8125rem;
}

.lineup-btn {
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  background-color: #D2F6BC;
  padding: 0.8125rem 5.875rem;
  border-radius: 0.625rem;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.top-worries {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .top-worries {
    margin-bottom: 3.625rem;
    padding-top: 6.375rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .top-worries::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/blue-bg.jpg);
    display: inline-block;
    background-repeat: no-repeat;
    width: 93.75rem;
    height: 93.75rem;
    background-size: contain;
    vertical-align: middle;
    z-index: -1;
    top: 0rem;
    left: 0rem;
  }
}

.worries-title span {
  text-transform: capitalize;
}

.worries__text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.625rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .worries__text {
    font-size: 1.125rem;
    margin-top: 1.9375rem;
    margin-bottom: 6.25rem;
  }
}

.worries__text-container {
  margin: 0 auto;
  text-align: center;
}

.worries__text-wrapper {
  padding-left: 0;
  list-style: none;
  display: inline-block;
}

.worries__text-item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.worries__text-item {
  text-align: left;
}

.back-pink {
  align-items: center;
  background-image: url(../img/common/90877s7.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 59.375rem 12.5rem;
  padding: 1.1875rem 4.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  border-radius: 3.125rem;
}
@media screen and (min-width: 768px) {
  .back-pink {
    align-items: center;
    background-image: url(../img/common/90877s7.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 59.375rem 12.5rem;
    padding: 1.1875rem 4.125rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 3.125rem;
  }
}

.back-blue {
  align-items: center;
  background-image: url(../img/common/90877ss7.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 59.375rem 12.5rem;
  padding: 1.1875rem 4.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  border-radius: 3.125rem;
}
@media screen and (min-width: 768px) {
  .back-blue {
    align-items: center;
    background-image: url(../img/common/90877ss7.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 59.375rem 12.5rem;
    padding: 1.1875rem 4.125rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 3.125rem;
  }
}

.worries__body {
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  padding-top: 3.6875rem;
  padding-bottom: 3.6875rem;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  background-color: white;
}
@media screen and (min-width: 768px) {
  .worries__body {
    max-width: 61.5rem;
    margin-top: 6.25rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.6875rem;
    padding-bottom: 3.6875rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .worries__items-left {
    width: 50%;
    height: 24.875rem;
  }
}

.worries__name1,
.worries__name2 {
  text-align: center;
}

.worries__name1 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .worries__name1 {
    margin-bottom: 1.25rem;
  }
}

.worries__name1 span {
  text-transform: capitalize;
}

.worries__name2 {
  margin-top: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .worries__name2 {
    margin-bottom: 2.5rem;
  }
}

.worries__name-text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .worries__name-text {
    font-size: 1.125rem;
    display: table;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 24.8125rem;
  }
}

.worries__items-right {
  width: 18.75rem;
  margin: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .worries__items-right {
    width: 50%;
    width: 22.375rem;
    margin: auto;
  }
}

.worries__items-right img {
  aspect-ratio: 358/398;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-contact {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top-contact {
    margin-top: 5.875rem;
    padding-top: 6.375rem;
  }
}

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

.contact__container {
  margin: 0 auto;
  text-align: center;
}

.contact__wrapper {
  padding-left: 0;
  list-style: none;
  display: inline-block;
}

.contact__items {
  text-align: left;
}

.contact__items:nth-child(n+2) {
  margin-top: 4.375rem;
}

.q-item__wrapper {
  display: flex;
  align-items: center;
}

.a-item__wrapper {
  display: flex;
  justify-content: flex-start;
}

.q-item,
.a-item {
  font-size: 1.875rem;
  color: white;
}

.q-item__text,
.a-item__text {
  font-size: 1.125rem;
  margin-left: 1.25rem;
  width: 15.625rem;
}
@media screen and (min-width: 768px) {
  .q-item__text,
  .a-item__text {
    font-size: 1.875rem;
    margin-left: 1.875rem;
    width: auto;
  }
}

.q-item {
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  line-height: 3.125rem;
  background-color: #FFA6A6;
}
@media screen and (min-width: 768px) {
  .q-item {
    width: 3.75rem;
    height: 3.75rem;
    text-align: center;
    line-height: 3.75rem;
    background-color: #FFA6A6;
  }
}

.a-item__wrapper {
  margin-top: 2.25rem;
}

.a-item {
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  line-height: 3.125rem;
  background-color: #A6D4FF;
}
@media screen and (min-width: 768px) {
  .a-item {
    width: 3.75rem;
    height: 3.75rem;
    text-align: center;
    line-height: 3.75rem;
    background-color: #A6D4FF;
  }
}

.top-work {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top-work {
    padding-top: 6.375rem;
    margin-top: 6.375rem;
    padding-bottom: 19.3125rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .top-work::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/yellow-bg.jpg);
    display: inline-block;
    background-repeat: no-repeat;
    width: 93.75rem;
    height: 93.75rem;
    background-size: contain;
    vertical-align: middle;
    z-index: -1;
    top: 5.625rem;
    left: 31.25rem;
  }
}

.work__text {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work__text {
    margin-top: 1.25rem;
    margin-bottom: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .work-img__container {
    max-width: 85.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
}

.work-img__img {
  display: block;
  margin: 0 auto;
  margin-top: 1.25rem;
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .work-img__img {
    width: 35.9375rem;
  }
}

.work-img__img img {
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 30%;
     object-position: 100% 30%;
}
@media screen and (min-width: 768px) {
  .work-img__img img {
    aspect-ratio: 575/484;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.work-img__title {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work-img__title {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .top-plan {
    padding-top: 6.375rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .top-plan::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/green-bg.jpg);
    display: inline-block;
    background-repeat: no-repeat;
    width: 106.25rem;
    height: 106.25rem;
    background-size: contain;
    vertical-align: middle;
    z-index: -1;
    top: 1.875rem;
    left: 0rem;
  }
}

.plan__text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.9375rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .plan__text {
    margin-top: 1.9375rem;
    margin-bottom: 14.25rem;
  }
}

.plan-cards {
  display: block;
}
@media screen and (min-width: 768px) {
  .plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

.plan-cards__item {
  text-align: center;
  background-color: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .plan-cards__item {
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    width: 35%;
    margin-bottom: 5.8125rem;
  }
}

.plan-cars__title {
  font-size: 1.125rem;
  height: 4.875rem;
  margin: 0 auto;
  display: table;
}
@media screen and (min-width: 768px) {
  .plan-cars__title {
    font-size: 1.5rem;
    height: 4.875rem;
    margin: 0 auto;
    display: table;
  }
}

.plan-cars__title1 {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan-cars__title1 {
    display: table-cell;
    vertical-align: middle;
  }
}

.plan-card__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-card__img {
    width: 100%;
  }
}

.plan-card__img img {
  aspect-ratio: 300/250;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 20%;
     object-position: 0 20%;
}
@media screen and (min-width: 768px) {
  .plan-card__img img {
    aspect-ratio: 507/294;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.plan-card__price {
  font-size: 1.125rem;
  padding-top: 2.875rem;
  padding-bottom: 2.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .plan-card__price {
    font-size: 1.875rem;
    padding-top: 2.875rem;
    padding-bottom: 2.875rem;
    letter-spacing: 0.1em;
  }
}

.plan-card__price span {
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .plan-card__price span {
    font-weight: 700;
    margin-right: 1.25rem;
  }
}

.plan-card__point {
  font-size: 0.9375rem;
  background-color: #DBBA9B;
  width: 100%;
  margin-left: auto;
  padding-top: 0.625rem;
  height: 2.5rem;
}
.plan-card__point a {
  padding: 0.625rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .plan-card__point {
    font-size: 1.25rem;
    background-color: #DBBA9B;
    width: 11.25rem;
    margin-left: auto;
  }
  .plan-card__point a {
    padding: 1.25rem 1.25rem;
  }
}

.plan-map__info1 {
  text-align: center;
  align-items: center;
  background-image: url(../img/common/9087ssss77.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 21.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .plan-map__info1 {
    text-align: center;
    align-items: center;
    background-image: url(../img/common/9087ssss77.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 72.5rem 7.0625rem;
  }
}

.plan-map__info1 span {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .plan-map__info1 span {
    font-size: 3rem;
  }
}

.plan-map__info2 {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan-map__info2 {
    font-size: 3rem;
    text-align: center;
    margin-top: 3.125rem;
    margin-bottom: 1.5rem;
  }
}

.plan-map__info3 {
  text-align: center;
  display: table;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .plan-map__info3 {
    text-align: center;
    display: table;
    margin: 0 auto;
  }
}

.plan-map__info3 span {
  font-size: 1.25rem;
  width: 18.75rem;
  height: 3.125rem;
  background-color: #FF8181;
  color: white;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan-map__info3 span {
    font-size: 3rem;
    width: 41.0625rem;
    height: 4rem;
    background-color: #FF8181;
    color: white;
    display: table-cell;
    vertical-align: middle;
  }
}

.plan-map__info4 {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-map__info4 {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .plan-map__info4 {
    margin-top: 1.5rem;
  }
}

.top__contact-btn {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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