@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap");
.section-tit {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  border-bottom: 1px solid #212121;
  padding: 0 0 24px;
}
@media screen and (max-width: 640px) {
  .section-tit {
    font-size: 20px;
    padding: 0 0 10px;
  }
}

.accordion-area {
  background: #fff;
  border-radius: 10px;
}
.accordion-area__tit {
  position: relative;
  cursor: pointer;
  font-size: 32px;
  font-weight: bold;
  padding: 24px 0;
  transition: all 0.5s ease;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit {
    font-size: clamp(16px, 3.9vw, 25px);
    padding: 5% 0;
  }
}
.accordion-area__tit span {
  position: relative;
  display: inline-block;
}
.accordion-area__tit span::before, .accordion-area__tit span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100%;
  width: 32px;
  height: 3px;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit span::before, .accordion-area__tit span::after {
    right: -32%;
    width: 18px;
    height: 2px;
  }
}
.accordion-area__tit span::before {
  transform: rotate(0deg);
}
.accordion-area__tit span::after {
  transform: rotate(90deg);
}
.accordion-area__tit.close span::before {
  transform: rotate(45deg);
}
.accordion-area__tit.close span::after {
  transform: rotate(-45deg);
}
.accordion-area__box {
  display: none;
}

.side-bnr {
  position: fixed;
  top: 250px;
  right: -10px;
}
@media screen and (max-width: 640px) {
  .side-bnr {
    display: none;
  }
}
.side-bnr__list-item {
  max-width: 190px;
}
.side-bnr__list-item:first-child {
  margin-bottom: 12px;
}

.bottom-bnr {
  display: none;
}
@media screen and (max-width: 640px) {
  .bottom-bnr {
    display: block;
    position: sticky;
    bottom: -2px;
    z-index: 10;
  }
}
.bottom-bnr__list {
  background-color: rgba(253, 243, 234, 0.7);
  display: flex;
  justify-content: space-between;
}
.bottom-bnr__list-item {
  text-align: center;
  width: calc((100% - 10px) / 3);
}

.pcOn {
  display: inline-block !important;
}
@media screen and (max-width: 640px) {
  .pcOn {
    display: none !important;
  }
}

.spOn {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .spOn {
    display: inline-block !important;
  }
}

.yellow-line {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

@media screen and (max-width: 640px) {
  .detail:not(.template-free) .articleContents {
    padding: 0;
  }
}

.inner {
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .inner {
    padding: 0 20px;
  }
}

p {
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

ul li {
  line-height: 1.75;
}

.yellow-bg {
  background: #FAF57F;
}

.ft-lato {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .ft-lato {
    font-size: 20px;
  }
}

.mv__note {
  text-align: right;
  margin-top: 8px;
}
@media screen and (max-width: 640px) {
  .mv__note {
    font-size: 12px;
    text-align: left;
    margin: 4% 0 0 4%;
  }
}

.top-link {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .top-link {
    margin-top: 36px;
  }
}
.top-link__inner {
  background: #FFF5EB;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 50px;
}
@media screen and (max-width: 640px) {
  .top-link__inner {
    padding: 25px 20px;
  }
}
.top-link__tit {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .top-link__tit {
    font-size: 14px;
  }
}
.top-link__list {
  font-size: 15px;
  margin-top: 16px;
}
.top-link__list-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 16px 0;
}
@media screen and (max-width: 640px) {
  .top-link__list-item {
    align-items: center;
    padding: 10px 0;
  }
}
.top-link__list-item:first-child {
  border-top: 1px solid #ebcfba;
}
.top-link__list-item::before {
  color: #fff;
  background: #ef883d;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px 0 0;
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
}
.top-link__list-item:nth-child(1)::before {
  content: "1";
}
.top-link__list-item:nth-child(2)::before {
  content: "2";
}
.top-link__list-item:nth-child(3)::before {
  content: "3";
}
.top-link__list-item:nth-child(4)::before {
  content: "4";
}
.top-link__list-item:nth-child(5)::before {
  content: "5";
}
.top-link__list-item a:hover {
  color: #ef883d;
  border-bottom: 1px solid #ef883d;
  transition: 0.3s;
}

.what {
  max-width: 900px;
  margin: 64px auto 0;
}
@media screen and (max-width: 640px) {
  .what {
    margin: 12% auto 0;
  }
}
.what__tit {
  max-width: 800px;
  margin: 0 auto;
}
.what__flex {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 88px auto 0;
}
@media screen and (max-width: 640px) {
  .what__flex {
    flex-direction: column;
    margin: 8% auto 0;
  }
}
.what__flex__txt {
  width: 45%;
}
@media screen and (max-width: 640px) {
  .what__flex__txt {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .what__flex__txt-tit {
    width: 85%;
    margin: 0 auto;
  }
}
.what__flex__txt-body {
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  .what__flex__txt-body {
    margin-top: 6%;
  }
}
.what__flex__slider {
  width: 52%;
}
@media screen and (max-width: 640px) {
  .what__flex__slider {
    width: 100%;
  }
}
.what__flex__slider figure {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .what__flex__slider figure {
    text-align: center;
  }
}
.what__flex__slider figcaption {
  text-align: right;
  padding-right: 5px;
}
@media screen and (max-width: 640px) {
  .what__flex__slider figcaption {
    font-size: 14px;
    padding-right: 2%;
  }
}
.what__good {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .what__good {
    margin-top: 14%;
  }
}
.what__when {
  margin-top: 82px;
}
@media screen and (max-width: 640px) {
  .what__when {
    margin-top: 14%;
  }
}

.detail-swiper-container {
  position: relative;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 640px) {
  .detail-swiper-container {
    margin-top: 10%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  top: 45%;
}
@media screen and (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 32px;
}
@media screen and (max-width: 640px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 1.2rem;
  }
}

.swiper-button-next {
  right: -5px;
}
@media screen and (max-width: 640px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev {
  left: -5px;
}
@media screen and (max-width: 640px) {
  .swiper-button-prev {
    left: 0;
  }
}

.accordion-area {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-area--point01 {
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .accordion-area--point01 {
    margin-top: 12%;
  }
}
.accordion-area--point02, .accordion-area--point03 {
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .accordion-area--point02, .accordion-area--point03 {
    margin-top: 6%;
  }
}
.accordion-area__tit {
  position: relative;
  background: #D9F5F3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 20px 36px;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit {
    flex-direction: column;
    align-items: flex-start;
    padding: 4% 6%;
  }
}
.accordion-area__tit::before, .accordion-area__tit::after {
  content: "";
  background: #32BEB9;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 30px;
  height: 3px;
  transition: 0.3s;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit::before, .accordion-area__tit::after {
    right: 4%;
    width: 24px;
    height: 2px;
  }
}
.accordion-area__tit::before {
  transform: rotate(90deg);
}
.accordion-area__tit.close::before {
  transform: rotate(0deg);
}
.accordion-area__tit__point {
  width: 98px;
  margin-right: 116px;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit__point {
    width: 26%;
    margin-right: 0;
  }
}
.accordion-area__tit__txt {
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .accordion-area__tit__txt {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 8px;
  }
}
.accordion-area__box {
  border: 2px solid #32BEB9;
  border-radius: 10px;
  padding: 40px;
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box {
    border-radius: 5px;
    padding: 9% 6%;
    margin-top: 4%;
  }
}
.accordion-area__box__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__flex {
    flex-direction: column;
  }
}
.accordion-area__box__flex--no2 {
  margin-top: 42px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__flex--no2 {
    margin-top: 8%;
  }
}
.accordion-area__box__flex-item {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__flex-item {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .accordion-area__box__flex-item + .accordion-area__box__flex-item {
    margin-top: 8%;
  }
}
.accordion-area__box__flex-txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 6px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__flex-txt {
    text-indent: -1.2em;
    padding-left: 1.2em;
    margin-top: 3%;
  }
}
.accordion-area__box__txt {
  margin-top: 36px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__txt {
    margin-top: 10%;
  }
}
.accordion-area__box__blue-wrap {
  background: #ECFCFB;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 48px 44px;
  margin-top: 38px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__blue-wrap {
    border-radius: 5px;
    flex-direction: column;
    padding: 6% 8%;
    margin-top: 8%;
  }
}
.accordion-area__box__blue-body {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__blue-body {
    width: 100%;
  }
}
.accordion-area__box__blue-body-check {
  max-width: 186px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__blue-body-check {
    max-width: none;
    width: 80%;
    margin: 0 auto;
  }
}
.accordion-area__box__blue-body-txt {
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__blue-body-txt {
    margin-top: 8%;
  }
}
.accordion-area__box__blue-img {
  width: 36.5%;
}
@media screen and (max-width: 640px) {
  .accordion-area__box__blue-img {
    width: 100%;
    margin-top: 6%;
  }
}

.preparation {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .preparation {
    margin-top: 16%;
  }
}
.preparation__tit {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .preparation__tit {
    margin: 12% auto 0;
  }
}
.preparation__tit-sub {
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .preparation__tit-sub {
    margin-top: 4%;
  }
}
.preparation__gray-tit {
  text-align: center;
  max-width: 800px;
  margin: 56px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__gray-tit {
    margin: 12% auto 0;
  }
}
.preparation__gray-tit--no02 {
  margin: 92px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__gray-tit--no02 {
    margin: 14% auto 0;
  }
}
.preparation__gray-tit--no03 {
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__gray-tit--no03 {
    margin: 16% auto 0;
  }
}
.preparation__gray-tit--no04 {
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__gray-tit--no04 {
    margin: 16% auto 0;
  }
}
.preparation__list {
  max-width: 800px;
  margin: 36px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__list {
    margin: 6% auto 0;
  }
}
.preparation__list-item {
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .preparation__list-item {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
}
.preparation__list-item:nth-child(2) {
  margin-top: 16px;
}
@media screen and (max-width: 640px) {
  .preparation__list-item:nth-child(2) {
    margin-top: 4%;
  }
}
.preparation__blue-wrap-01 {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 48px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01 {
    margin: 12% auto 0;
  }
}
.preparation__blue-wrap-01__flex {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 708px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__flex {
    flex-direction: column;
    bottom: 10%;
  }
}
.preparation__blue-wrap-01__item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 4px 4px 1px 0px rgb(221, 221, 221);
  width: calc((100% - 48px) / 3);
  padding: 20px 0;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__item {
    box-shadow: 2px 2px 1px 0px rgb(221, 221, 221);
    width: 85%;
    padding: 4.5% 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__item:not(:first-child) {
    margin-top: 4%;
  }
}
.preparation__blue-wrap-01__item-tit {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__item-tit {
    font-size: 16px;
  }
}
.preparation__blue-wrap-01__item-link {
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__item-link {
    width: 45%;
    margin: 1% auto 0;
  }
}
.preparation__blue-wrap-01__item-sub {
  font-size: 14px;
  margin-top: 6px;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-01__item-sub {
    font-size: 13px;
    margin-top: 2%;
  }
}
.preparation__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .preparation__flex {
    flex-direction: column-reverse;
  }
}
.preparation__flex--no2 {
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  .preparation__flex--no2 {
    flex-direction: column;
    margin-top: 2%;
  }
}
.preparation__flex__img {
  width: 24%;
}
@media screen and (max-width: 640px) {
  .preparation__flex__img {
    width: 60%;
    margin: 2% auto 0;
  }
}
.preparation__flex__list {
  width: 71%;
}
@media screen and (max-width: 640px) {
  .preparation__flex__list {
    width: 100%;
    margin-top: 6%;
  }
}
@media screen and (max-width: 640px) {
  .preparation__flex__list + .preparation__flex__img {
    margin-top: 8%;
  }
}
@media screen and (max-width: 640px) {
  .preparation__flex__list-item {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.preparation__flex__list-item:nth-child(2) {
  margin-top: 16px;
}
@media screen and (max-width: 640px) {
  .preparation__flex__list-item:nth-child(2) {
    margin-top: 6%;
  }
}
.preparation__blue-wrap-02 {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 48px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02 {
    margin: 8% auto 0;
  }
}
.preparation__blue-wrap-02__flex {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 777px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02__flex {
    flex-wrap: wrap;
    bottom: 7%;
    width: 88%;
  }
}
.preparation__blue-wrap-02__item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 4px 4px 1px 0px rgb(221, 221, 221);
  width: calc((100% - 60px) / 4);
  padding: 20px 0 14px;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02__item {
    box-shadow: 2px 2px 1px 0px rgb(221, 221, 221);
    width: 48%;
    padding: 8% 0;
  }
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02__item:nth-of-type(3), .preparation__blue-wrap-02__item:nth-of-type(4) {
    margin-top: 4%;
  }
}
.preparation__blue-wrap-02__item-ico {
  height: 46px;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02__item-ico {
    height: 52px;
  }
}
.preparation__blue-wrap-02__item-link {
  width: 82.5%;
  margin: 10px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__blue-wrap-02__item-link {
    width: 80%;
    margin: 10% auto 0;
  }
}
.preparation__green-wrap {
  background: #ECFCFB;
  max-width: 900px;
  padding: 42px 50px 65px;
  margin: 30px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap {
    padding: 8% 6%;
    margin: 6% auto 0;
  }
}
.preparation__green-wrap__tit {
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap__tit {
    font-size: 16px;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
.preparation__green-wrap__tit::after {
  content: "";
  background: #212121;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 78%;
  height: 2px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap__tit::after {
    content: none;
  }
}
.preparation__green-wrap .accordion-area {
  background: transparent;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area {
    margin-top: 8%;
  }
}
.preparation__green-wrap .accordion-area__tit {
  color: #fff;
  background: #32BEB9;
  padding: 16px 30px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__tit {
    padding: 4% 6%;
  }
}
.preparation__green-wrap .accordion-area__tit__txt {
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__tit__txt {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 0;
  }
}
.preparation__green-wrap .accordion-area__tit::before, .preparation__green-wrap .accordion-area__tit::after {
  content: "";
  background: #FFF;
  width: 20px;
  height: 3px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__tit::before, .preparation__green-wrap .accordion-area__tit::after {
    height: 2px;
  }
}
.preparation__green-wrap .accordion-area__box {
  background: #fff;
  border: none;
  padding: 32px 40px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box {
    padding: 10% 8%;
  }
}
.preparation__green-wrap .accordion-area__box__flex {
  align-items: flex-start;
}
.preparation__green-wrap .accordion-area__box__txt {
  width: 45%;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__txt {
    width: 100%;
  }
}
.preparation__green-wrap .accordion-area__box__tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid #212121;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__tit {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.preparation__green-wrap .accordion-area__box__body {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__body {
    margin-top: 7%;
  }
}
.preparation__green-wrap .accordion-area__box__img {
  width: 47%;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__img {
    width: 100%;
    margin-top: 8%;
  }
}
.preparation__green-wrap .accordion-area__box__list {
  background: #F2F6FA;
  border-radius: 5px;
  padding: 12px 24px;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__list {
    padding: 8% 6%;
    margin-top: 6%;
  }
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__list.spOn {
    width: 100%;
    margin-top: 8%;
  }
}
.preparation__green-wrap .accordion-area__box__list-item {
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__list-item {
    font-size: 14px;
  }
}
.preparation__green-wrap .accordion-area__box__list-item:nth-child(1) {
  font-weight: 700;
  padding-bottom: 6px;
}
@media screen and (max-width: 640px) {
  .preparation__green-wrap .accordion-area__box__list-item:nth-child(1) {
    padding-bottom: 2%;
  }
}
.preparation__step-item {
  display: flex;
  justify-content: space-between;
  border-left: 10px solid #FFFAD1;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .preparation__step-item {
    flex-direction: column;
    border-left: 8px solid #FFFAD1;
    margin-left: 6%;
  }
}
.preparation__step-item--step01 {
  margin-top: 55px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item--step01 {
    margin-top: 12%;
  }
}
.preparation__step-item--step02 {
  padding-top: 88px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item--step02 {
    padding-top: 16%;
  }
}
.preparation__step-item--step03 {
  padding-top: 88px;
  padding-bottom: 66px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item--step03 {
    padding-top: 16%;
  }
}
.preparation__step-item--step04 {
  border-left: none;
  display: block;
}
.preparation__step-item__txt {
  position: relative;
  width: 41%;
  margin-left: 42px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt {
    width: 88%;
    margin-left: 10%;
  }
}
.preparation__step-item__txt--step04 {
  width: 100%;
}
.preparation__step-item__txt::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -78px;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt::before {
    top: -60%;
    width: 50px;
    height: 50px;
  }
}
.preparation__step-item__txt--step01::before {
  background: url(../uploads/showroom_2309_preparation-step-ico01.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt--step01::before {
    top: -14%;
    left: -15%;
    transform: translateX(-40%);
  }
}
.preparation__step-item__txt--step02::before {
  background: url(../uploads/showroom_2309_preparation-step-ico02.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt--step02::before {
    top: -5%;
    left: -15%;
    transform: translateX(-40%);
  }
}
.preparation__step-item__txt--step03::before {
  background: url(../uploads/showroom_2309_preparation-step-ico03.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt--step03::before {
    top: -10%;
    left: -15%;
    transform: translateX(-40%);
  }
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt--step04 {
    padding-left: 4%;
  }
}
.preparation__step-item__txt--step04::before {
  background: url(../uploads/showroom_2309_preparation-step-ico04.png) no-repeat;
  background-size: contain;
  left: -68px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__txt--step04::before {
    top: -3%;
    left: -10%;
    transform: translateX(-43%);
  }
}
.preparation__step-item__tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__tit {
    font-size: 18px;
    letter-spacing: 0.02em;
    width: 100%;
  }
}
.preparation__step-item__tit span {
  border-bottom: 3px dotted #E8D31F;
  display: inline-block;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__tit span {
    padding-bottom: 8px;
  }
}
.preparation__step-item__list {
  margin-top: 28px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__list {
    margin-top: 6%;
  }
}
@media screen and (max-width: 640px) {
  .preparation__step-item__list--no04 {
    width: 88%;
  }
}
@media screen and (max-width: 640px) {
  .preparation__step-item__list-item {
    font-size: 14px;
  }
}
.preparation__step-item__list-item:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__list-item:not(:first-child) {
    margin-top: 2%;
  }
}
.preparation__step-item__img {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .preparation__step-item__img {
    width: 90%;
    margin-top: 6%;
    margin-left: 8%;
  }
}
.preparation__contact-img {
  text-align: center;
  max-width: 900px;
  margin: 70px auto 0;
}
@media screen and (max-width: 640px) {
  .preparation__contact-img {
    margin: 16% auto 0;
  }
}

.point {
  max-width: 800px;
  margin: 80px auto 0;
}
@media screen and (max-width: 640px) {
  .point {
    margin: 16% auto 0;
  }
}
.point__img {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .point__img {
    margin-top: 4%;
  }
}
.point__img--no01 {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .point__img--no01 {
    margin-top: 8%;
  }
}

.reservation {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .reservation {
    margin-top: 16%;
  }
}
.reservation__tit {
  max-width: 800px;
  margin: 0 auto;
}
.reservation__gray-tit {
  max-width: 800px;
}
.reservation__gray-tit--no01 {
  margin: 56px auto 0;
}
@media screen and (max-width: 640px) {
  .reservation__gray-tit--no01 {
    margin: 10% auto 0;
  }
}
.reservation__gray-tit--no02 {
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .reservation__gray-tit--no02 {
    margin: 16% auto 0;
  }
}
.reservation__gray-tit-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  max-width: 800px;
  margin: 32px auto 0;
}
@media screen and (max-width: 640px) {
  .reservation__gray-tit-sub {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 8% auto 0;
  }
}
@media screen and (max-width: 640px) {
  .reservation__gray-tit-sub .reservation__list-item:nth-child(2) {
    margin-top: 4%;
  }
}
.reservation__blue-wrap {
  position: relative;
  max-width: 900px;
  margin: 56px auto 0;
}
@media screen and (max-width: 640px) {
  .reservation__blue-wrap {
    margin: 10% auto 0;
  }
}
.reservation__blue-wrap__btn {
  position: absolute;
  bottom: 158px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 225px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .reservation__blue-wrap__btn {
    bottom: 27%;
    max-width: none;
    width: 60%;
  }
}
.reservation__contact {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 36px auto 0;
}
@media screen and (max-width: 640px) {
  .reservation__contact {
    flex-direction: column;
    margin: 8% auto 0;
  }
}
.reservation__contact__web {
  background: #F7F39B;
  text-align: center;
  border-radius: 5px;
  width: 48%;
  padding: 38px 60px 28px;
}
@media screen and (max-width: 640px) {
  .reservation__contact__web {
    width: 100%;
    padding: 6% 12% 8%;
  }
}
.reservation__contact__web-img {
  max-width: 200px;
  margin: 0 auto;
  transform: translateY(16px);
}
@media screen and (max-width: 640px) {
  .reservation__contact__web-img {
    max-width: none;
    width: 78%;
    transform: translateY(50%);
  }
}
.reservation__contact__web-btn {
  margin-top: 32px;
}
.reservation__contact__tel {
  text-align: center;
  border: 2px solid #E2CD5A;
  border-radius: 5px;
  width: 48%;
  padding: 20px 22px 18px;
}
@media screen and (max-width: 640px) {
  .reservation__contact__tel {
    width: 100%;
    padding: 4% 6%;
    margin-top: 4%;
  }
}
.reservation__contact__tel-txt {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .reservation__contact__tel-txt {
    font-size: 15px;
  }
}
.reservation__contact__tel-btn {
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .reservation__contact__tel-btn {
    margin-top: 2%;
  }
}
@media screen and (max-width: 640px) {
  .reservation__contact__tel-btn {
    pointer-events: all;
  }
}
.reservation__contact__tel-note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .reservation__contact__tel-note {
    font-size: 13px;
    margin-top: 2%;
  }
}

.info {
  margin-top: 120px;
}
@media screen and (max-width: 640px) {
  .info {
    margin-top: 60px;
  }
}

.side_bnr {
  position: fixed;
  top: 220px;
  right: -6px;
}
@media screen and (max-width: 640px) {
  .side_bnr {
    display: none;
  }
}

.bottom_bnr {
  display: none;
}
@media screen and (max-width: 640px) {
  .bottom_bnr {
    display: block;
    position: sticky;
    bottom: -3px;
    z-index: 100;
  }
}/*# sourceMappingURL=showroom_2309.css.map */

/* 2404 追加 */
.what__youtube-tit{
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-top: 72px;
}
.what__youtube-tit span{
  position: relative;
  display: inline-block;
}
.what__youtube-tit span::before,
.what__youtube-tit span::after{
  content: '';
  background: #212121;
  position: absolute;
  bottom: -2px;
  width: 2px;
  height: 24px;
}
.what__youtube-tit span::before{
  left: -16px;
  rotate: -15deg;
}
.what__youtube-tit span::after{
  right: -16px;
  rotate: 15deg;
}
.what__youtube{
  max-width: 800px;
  margin: 12px auto 0;
}
.what__youtube iframe{
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 640px) {
  .what__youtube-tit{
    font-size: 16px;
    margin-top: 12%;
  }
  .what__youtube-tit span::before,
  .what__youtube-tit span::after{
    height: 18px;
  }
  .what__youtube-tit span::before{
    left: -12px;
  }
  .what__youtube-tit span::after{
    right: -10px;
  }
  .what__youtube{
    margin: 4% auto 0;
  }
}

/*****************************************
2410 追加
*****************************************/
/* .mv.mt{
  margin-top: 190px;
}
@media screen and (max-width: 640px){
  .mv.mt{
    margin-top: 64px;
  }
} */

/*****************************************
2501 追加
*****************************************/
.showroom-add2501{
  color: #333;
  /* font-size: 18px; */
  line-height: 1.4;
}
.showroom-add2501 .mv.mt{
  margin-top: 60px;
}
.showroom-add2501 .mv__note{
  margin-top: 12px;
}
.showroom-add2501 .top-link__list-item{
  align-items: center;
}
.showroom-add2501 .top-link__list-item::before{
  transform: translateY(0);
}
.showroom-add2501 .accordion-area__box__flex--no02{
  margin-top: 44px;
}
.preparation__green-wrap .accordion-area__box--no03 .accordion-area__box__list.pcOn{
  display: block !important;
}

.held{
  max-width: 800px;
  margin: 80px auto 0;
}

/***** gray-wrap *****/
.held__gray-wrap{
  position: relative;
  background: #FAF9F2;
  border-radius: 10px;
  padding: 68px 40px 30px;
  margin-top: 80px;
}
.held__gray-tit{
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 354px;
}
.held__gray-head{
  color: #fff;
  background: #212121;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  padding: 8px 0;
}
.held__list{
  margin-top: 32px;
}
.held__list-item{
  border-bottom: 1px solid #DDDBD0;
  display: flex;
  padding: 24px 0;
}
.held__list-item dt{
  font-weight: 700;
  width: 132px;
  margin-right: 28px;
}
.held__list-item dd{
  font-size: 15px;
  flex: 1;
}
.held__list-item table th{
  background: #E5E3D8;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 8px 0;
}
.held__list-item table th.goods{
  width: 330px;
}
.held__list-item table th.time{
  line-height: 1.2;
  width: 230px;
}
.held__list-item table th .note{
  font-size: 12px;
}
.held__list-item table td{
  background: #fff;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 12px 0;
}
.held__list .accordion-area__tit{
  cursor: pointer;
  color: #918E73;
  background: #FAF9F2;
  font-size: 16px;
  border-bottom: 1px solid #DDDBD0;
  justify-content: center;
}
.held__list .accordion-area__tit::before,
.held__list .accordion-area__tit::after{
  background: #918E73;
  right: 38.5%;
  width: 18px;
  height: 2px;
}
.held__list .accordion-area__tit.close{
  border-bottom: none;
}
.held__list .accordion-area__box{
  background: #FAF9F2;
  border: none;
  padding: 0;
  margin: 0;
}
.held__gray-btn{
  max-width: 225px;
  margin: 30px auto 0;
}

/***** can-do *****/
.held__can-do{
  margin-top: 72px;
}
.held__can-do-tit{
  max-width: 418px;
  margin: 0 auto;
}
.held__can-do-top{
  margin-top: 16px;
}
.held__can-do-item{
  background: #F0F5FC;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  margin-top: 10px;
}
.held__can-do-item.top{
  margin-top: 32px;
}
.held__can-do-item__body{
  width: 56%;
}
.held__can-do-item.estimate .held__can-do-item__body{
  width: 100%;
}
.held__can-do-item__body-tit{
  font-size: 18px;
  font-weight: 700;
  border-left: 3px solid #616074;
  padding-left: 14px;
}
.held__can-do-item__body-txt{
  margin-top: 16px;
}
.held__can-do-item__img{
  width: 41%;
}
.held__can-do-step-top{
  text-align: center;
  margin-top: 40px;
}
.held__can-do-step-wrap{
  position: relative;
  padding: 64px 100px 56px;
  margin-top: 32px;
  z-index: 0;
}
.held__can-do-step-wrap::before{
  content: '';
  background: url(../uploads/showroom_2501_held-can-do-step-frame.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.held__can-do-step{
  position: relative;
  border-left: 10px solid #FFFAD1;
  padding: 0 0 58px 36px;
}
.held__can-do-step--step04{
  border-left: none;
  padding: 0px 0 0 46px;
}
.held__can-do-step::before{
  content: "";
  position: absolute;
  top: -20px;
  left: -36px;
  width: 60px;
  height: 60px;
}
.held__can-do-step--step01::before{
  background: url(../uploads/showroom_2309_preparation-step-ico01.png) no-repeat;
  background-size: contain;
}
.held__can-do-step--step02::before{
  background: url(../uploads/showroom_2309_preparation-step-ico02.png) no-repeat;
  background-size: contain;
}
.held__can-do-step--step03::before{
  background: url(../uploads/showroom_2309_preparation-step-ico03.png) no-repeat;
  background-size: contain;
}
.held__can-do-step--step04::before{
  background: url(../uploads/showroom_2309_preparation-step-ico04.png) no-repeat;
  background-size: contain;
  left: -26px;
}
.held__can-do-step__tit{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-bottom: 3px dotted #E8D31F;
  display: inline-block;
  padding-bottom: 8px;
}
.held__can-do-step__tit::before{
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 110px;
  height: 42px;
}
.held__can-do-step--step01 .held__can-do-step__tit::before,
.held__can-do-step--step04 .held__can-do-step__tit::before{
  background: url(../uploads/showroom_2501_held-can-do-step-time-ico05.png) no-repeat;
  background-size: contain;
}
.held__can-do-step--step02 .held__can-do-step__tit::before{
  background: url(../uploads/showroom_2501_held-can-do-step-time-ico10.png) no-repeat;
  background-size: contain;
}
.held__can-do-step--step03 .held__can-do-step__tit::before{
  background: url(../uploads/showroom_2501_held-can-do-step-time-ico40.png) no-repeat;
  background-size: contain;
}
.held__can-do-step__txt{
  margin-top: 20px;
}

/***** how-to *****/
.held__how-to{
  margin-top: 72px;
}
.held__how-to-tit{
  max-width: 418px;
  margin: 0 auto;
}
.held__how-to-top{
  margin-top: 16px;
}
.held__how-to-img{
  margin-top: 52px;
  transform: scale(1.125);
}
.held__how-to-pattern{
  border-left: 5px solid #E56126;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 4px 10px;
  margin-top: 20px;
}
.held__how-to-pattern.top{
  margin-top: 36px;
}
.held__how-to-pattern__tit{
  font-weight: 700;
  width: 23%;
}
.held__how-to-pattern__tit-lg{
  font-size: 20px;
  line-height: 1.2;
}
.held__how-to-pattern__tit-lg .orange{
  position: relative;
  color: #E56126;
  display: inline-block;
}
.held__how-to-pattern__tit-lg .orange::before{
  content: '●';
  color: #E56126;
  font-size: 8px;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.held__how-to-pattern__txt{
  line-height: 1.5;
  width: 74%;
  margin-top: 4px;
}

/***** recommend *****/
.held__recommend{
  margin-top: 90px;
}
.held__recommend-tit{
  max-width: 326px;
  margin: 0 auto;
}
.held__recommend-top{
  margin-top: 16px;
}
.held__recommend-list{
  margin-top: 32px;
}
.held__recommend-list__item{
  position: relative;
  background: #F7F7F7;
  font-weight: 700;
  border-radius: 4px;
  padding: 16px 56px;
}
.held__recommend-list__item:not(:first-child){
  margin-top: 6px;
}
.held__recommend-list__item::before{
  content: '';
  background: url(../uploads/showroom_2501_held-recommend-ico-check.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.held__recommend-list__item:first-child::before{
  transform: translateY(-100%);
}
.held__recommend-list__item .mid{
  font-size: 14px;
  font-weight: 500;
}
.held__recommend-list__item .sm{
  font-size: 13px;
  font-weight: 400;
}
.held__recommend-list__item .sm a{
  text-decoration: underline;
}

.karte-float-mailbtn,
.karte-float-contactbtn{
  font-size: 18px;
}

@media screen and (max-width: 640px){
  .showroom-add2501{
    font-size: 14px;
  }
  .showroom-add2501 .mv.mt{
    margin-top: 0;
  }
  .showroom-add2501 .mv__note{
    margin: 4% 0 0 4%;
  }
  .showroom-add2501 .accordion-area__box__flex--no02{
    margin-top: 8%;
  }
  .preparation__green-wrap .accordion-area__box--no03 .accordion-area__box__list.pcOn{
    display: none !important;
  }

  .held{
    margin: 14% auto 0;
  }

  /***** gray-wrap *****/
  .held__gray-wrap{
    border-radius: 6px;
    padding: 23% 6% 8%;
    margin-top: 12%;
  }
  .held__gray-tit{
    top: -20px;
    max-width: none;
    width: 88%;
  }
  .held__gray-head{
    font-size: 16px;
    border-radius: 2px;
    padding: 2% 0;
  }
  .held__list{
    margin-top: 0;
  }
  .held__list-item{
    flex-direction: column;
    padding: 6% 0;
  }
  .held__list-item dt{
    width: 100%;
    margin-right: 0;
  }
  .held__list-item dd{
    font-size: 14px;
    padding-left: 1.25em;
    margin-top: 2%;
  }
  .held__list-item:nth-child(2) dd{
    padding-left: 0;
  }
  .held__list-item table{
    display: table;
  }
  .held__list-item tbody{
    display: table-row-group;
  }
  .held__list-item table tr{
    display: table-row;
  }
  .held__list-item table th{
    font-size: 13px;
    display: table-cell;
    padding: 2% 0;
  }
  .held__list-item table th.goods{
    border: none !important;
    border-right: 1px solid rgba(0, 0, 0, 0.15) !important;
    width: 50%;
  }
  .held__list-item table th.time{
    border: none;
    width: 50%;
  }
  .held__list-item table th .note{
    font-size: 10px;
  }
  .held__list-item table td{
    font-size: 14px;
    letter-spacing: -0.03em;
    border-left: none;
    display: table-cell;
    padding: 4% 0;
  }
  .held__list-item table td + td{
    font-size: 16px;
    letter-spacing: normal;
    border-right: none;
  }
  .held__list-item table tr:last-of-type td{
    border-bottom: none;
  }
  .held__list .accordion-area__tit{
    font-size: 14px;
    align-items: center;
  }
  .held__list .accordion-area__tit::before,
  .held__list .accordion-area__tit::after{
    top: 48%;
    right: 28%;
    width: 14px;
  }
  .held__gray-btn{
    max-width: none;
    width: 64.5%;
    margin: 8% auto 0;
  }

  /***** can-do *****/
  .held__can-do{
    margin-top: 12%;
  }
  .held__can-do-tit{
    max-width: none;
    width: 100%;
  }
  .held__can-do-top{
    margin-top: 4%;
  }
  .held__can-do-item{
    border-radius: 4px;
    flex-direction: column;
    padding: 6% 6% 7%;
    margin-top: 3%;
  }
  .held__can-do-item.top{
    margin-top: 5%;
  }
  .held__can-do-item__body{
    width: 100%;
  }
  .held__can-do-item__body-tit{
    font-size: 14px;
    padding-left: 4%;
  }
  .held__can-do-item__body-txt{
    margin-top: 4%;
  }
  .held__can-do-item__img{
    width: 100%;
    margin-top: 5%;
  }
  .held__can-do-step-top{
    text-align: left;
    margin-top: 8%;
  }
  .held__can-do-step-wrap{
    padding: 4% 4% 4% 6%;
    margin-top: 6%;
  }
  .held__can-do-step-wrap::before{
    content: none;
  }
  .held__can-do-step{
    border-left: 8px solid #FFFAD1;
    padding: 0 0 10% 8%;
  }
  .held__can-do-step--step04{
    border-left: none;
    padding: 0 0 0 11%;
  }
  .held__can-do-step::before{
    top: -12px;
    left: -30px;
    width: 50px;
    height: 50px;
  }
  .held__can-do-step--step04::before{
    left: -22px;
  }
  .held__can-do-step__tit{
    font-size: 18px;
    line-height: 1.2;
    padding-bottom: 4px;
    margin-left: 8px;
  }
  .held__can-do-step__tit::before{
    right: -108px;
    width: 97px;
    height: 37px;
  }
  .held__can-do-step__txt{
    width: 96%;
    margin-top: 8%;
  }

  /***** how-to *****/
  .held__how-to{
    margin-top: 12%;
  }
  .held__how-to-tit{
    max-width: none;
    width: 100%;
  }
  .held__how-to-top{
    margin-top: 4%;
  }
  .held__how-to-img{
    margin-top: 6%;
    transform: scale(1);
  }
  .held__how-to-pattern{
    border-left: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-top: 6%;
  }
  .held__how-to-pattern.top{
    margin-top: 4%;
  }
  .held__how-to-pattern__tit{
    border-left: 3px solid #E56126;
    width: 100%;
    padding: 4px 0 8px 10px;
  }
  .held__how-to-pattern__tit-sm{
    font-size: 12px;
  }
  .held__how-to-pattern__tit-lg{
    font-size: 16px;
  }
  .held__how-to-pattern__tit-lg .orange::before{
    font-size: 6px;
    top: -6px;
  }
  .held__how-to-pattern__txt{
    font-size: 14px;
    width: 100%;
    margin-top: 4%;
  }

  /***** recommend *****/
  .held__recommend{
    margin-top: 14%;
  }
  .held__recommend-tit{
    max-width: none;
    width: 100%;
  }
  .held__recommend-top{
    margin-top: 4%;
  }
  .held__recommend-list{
    margin-top: 4%;
  }
  .held__recommend-list__item{
    font-size: 16px;
    line-height: 1.4;
    border-radius: 2px;
    padding: 3.5% 4% 3.5% 14%;
  }
  .held__recommend-list__item:not(:first-child){
    margin-top: 2%;
  }
  .held__recommend-list__item::before{
    left: 8px;
    width: 28px;
    height: 28px;
  }
  .held__recommend-list__item:first-child::before{
    transform: translateY(-120%);
  }

  .karte-float-mailbtn,
  .karte-float-contactbtn{
    font-size: 14px;
  }
}