.front-page {
  padding-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .front-page {
    padding-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page {
    padding-bottom: calc((8px * 10) * 0.5);
  }
}

.headline {
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: calc(8px * 6);
}

@media screen and (max-width: 959px) {
  .headline {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .headline {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

.headline__sub {
  text-transform: capitalize;
  color: #F98023;
  font-family: "Ubuntu", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .headline__sub {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .headline__sub {
    font-size: 2rem;
  }
}

.headline__main {
  font-size: 4.8rem;
  font-weight: 700;
}

@media screen and (max-width: 959px) {
  .headline__main {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .headline__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .cv .cv-btn-unit,
  .cv-btn .cv-btn-unit {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 360px;
  }
}

.cv-btn {
  position: relative;
  padding: 40px 0 48px;
  background: #866D57;
}

@media screen and (max-width: 959px) {
  .cv-btn {
    padding: 0 0 32px;
  }
}

@media screen and (max-width: 767px) {
  .cv-btn {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), color-stop(50%, #866D57));
    background: linear-gradient(#ffffff 50%, #866D57 50%);
  }
}

.cv-btn::before, .cv-btn::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: calc( 50% + 2px);
  height: calc( 100% + 140px);
  background: #927C68;
}

@media screen and (max-width: 1023px) {
  .cv-btn::before, .cv-btn::after {
    height: calc(100% + 104px);
  }
}

@media screen and (max-width: 767px) {
  .cv-btn::before, .cv-btn::after {
    height: calc(100% + 50px);
  }
}

.cv-btn::before {
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 42%);
}

@media screen and (max-width: 1023px) {
  .cv-btn::before {
    clip-path: polygon(0 0, 0% 100%, 100% 35%);
  }
}

@media screen and (max-width: 959px) {
  .cv-btn::before {
    clip-path: polygon(0 0, 0% 100%, 100% 55%);
  }
}

.cv-btn::after {
  right: 0;
  clip-path: polygon(100% 0, 0 42%, 100% 100%);
}

@media screen and (max-width: 1023px) {
  .cv-btn::after {
    clip-path: polygon(100% 0, 0 35%, 100% 100%);
  }
}

@media screen and (max-width: 959px) {
  .cv-btn::after {
    clip-path: polygon(100% 0, 0 55%, 100% 100%);
  }
}

.cv {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 64px;
}

.cv::before, .cv::after {
  position: absolute;
  top: 0;
  z-index: 1;
  content: "";
  width: calc( 50% - 4px);
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.cv::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cv::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.cv .cv-txt {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  padding: 0 96px 40px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  text-align: center;
  white-space: nowrap;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .cv .cv-txt {
    padding: 0 64px 40px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .cv .cv-txt {
    padding: 0 40px 30px;
    font-size: 2rem;
  }
}

.cv .cv-txt::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: solid 4px #F98023;
  border-radius: 50%;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
}

.cv .cv-inner {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(transparent 80px, #695544 80px);
}

@media screen and (max-width: 767px) {
  .cv .cv-inner {
    padding: 48px 0 40px;
  }
}

.cv .cv-inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: calc( 100% + 80px);
  height: 200px;
  background: #695544;
  border-radius: 50%;
}

.cv .wrap {
  position: relative;
}

.cv .wrap::before {
  position: absolute;
  top: -20px;
  right: 0;
  content: "";
  width: 280px;
  height: 267px;
  background: url("../../../dist/img/top/cv-point.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .cv .wrap::before {
    width: 200px;
    height: 192px;
  }
}

@media screen and (max-width: 767px) {
  .cv .wrap::before {
    top: 162px;
    right: auto;
    left: 50%;
    translate: -50% 0;
    width: 250px;
    height: 62px;
    background-image: url("../../../dist/img/top/cv-point-sp.svg");
  }
}

.cv .headline {
  position: relative;
  margin-bottom: 12px;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .cv .headline {
    padding-top: 16px;
  }
}

.cv .headline::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 26px;
  height: 20px;
  background: #F98023;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 767px) {
  .cv .headline::before {
    width: 20px;
    height: 13px;
  }
}

.cv .headline__sub, .cv .headline__main {
  color: #ffffff;
}

.cv .headline__sub {
  font-size: 7.5rem;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .cv .headline__sub {
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .cv .headline__sub {
    font-size: 5rem;
  }
}

.cv .headline__main {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .cv .headline__main {
    font-size: 2rem;
  }
}

.cv .counseling-txt {
  position: relative;
  display: inline-block;
  margin-bottom: calc(8px * 6);
  padding: 12px 40px;
  background: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .cv .counseling-txt {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .cv .counseling-txt {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .cv .counseling-txt {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .cv .counseling-txt {
    margin-bottom: 100px;
    padding: 8px 24px;
    font-size: 2rem;
  }
}

.cv .counseling-txt::before, .cv .counseling-txt::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: '';
}

@media screen and (max-width: 767px) {
  .cv .counseling-txt::before, .cv .counseling-txt::after {
    width: 20px;
    height: 20px;
  }
}

.cv .counseling-txt::before {
  border-left: solid 6px #F98023;
  border-top: solid 6px #F98023;
  top: -1px;
  left: -1px;
}

@media screen and (max-width: 767px) {
  .cv .counseling-txt::before {
    border-width: 4px;
  }
}

.cv .counseling-txt::after {
  border-right: solid 6px #F98023;
  border-bottom: solid 6px #F98023;
  bottom: -1px;
  right: -1px;
}

@media screen and (max-width: 767px) {
  .cv .counseling-txt::after {
    border-width: 4px;
  }
}

.bg-gry {
  padding-top: calc(8px * 10);
  background: -webkit-gradient(linear, left top, left bottom, from(#F7F7F7), color-stop(50%, #ffffff));
  background: linear-gradient(#F7F7F7, #ffffff 50%);
}

@media screen and (max-width: 959px) {
  .bg-gry {
    padding-top: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .bg-gry {
    padding-top: calc((8px * 10) * 0.5);
  }
}

.hero {
  position: relative;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  .hero {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .hero {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .hero {
    height: 600px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 550px;
  }
}

@media screen and (max-width: 519px) {
  .hero {
    height: 500px;
  }
}

.hero .hero-vsl {
  position: relative;
  border: solid 8px #ffffff;
}

@media screen and (max-width: 959px) {
  .hero .hero-vsl {
    height: 100%;
  }
}

@media screen and (max-width: 959px) {
  .hero .hero-vsl img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.hero .hero-vsl::before, .hero .hero-vsl::after {
  position: absolute;
  top: 0;
  content: "";
  width: 50%;
  max-width: 720px;
  height: 100%;
  max-height: 538px;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero .hero-vsl::before {
  left: 0;
  background-image: url("../../../dist/img/top/hero-deco1.png");
}

.hero .hero-vsl::after {
  right: 0;
  background-image: url("../../../dist/img/top/hero-deco2.png");
}

.hero .hero-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 100%;
  max-width: 867px;
}

@media screen and (max-width: 1279px) {
  .hero .hero-catch {
    max-width: 600px;
  }
}

@media screen and (max-width: 959px) {
  .hero .hero-catch {
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-catch {
    max-width: 320px;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-catch {
    max-width: 250px;
  }
}

.hero .hero-band {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  padding: 14px 0;
  width: 100%;
  background: #4AC820;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .hero .hero-band {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-band {
    padding: 8px 0;
    font-size: 2rem;
  }
}

.hero .hero-band::before, .hero .hero-band::after {
  position: absolute;
  top: 50%;
  content: "";
  translate: 0 -50%;
  width: 38px;
  height: 19px;
  background: #ffffff;
  -webkit-mask-image: url("../../../dist/img/top/hero-arrow.svg");
  mask-image: url("../../../dist/img/top/hero-arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .hero .hero-band::before, .hero .hero-band::after {
    width: 24px;
    height: 13px;
  }
}

.hero .hero-band::before {
  right: calc( 50% + 210px);
}

@media screen and (max-width: 767px) {
  .hero .hero-band::before {
    right: calc(50% + 120px);
  }
}

.hero .hero-band::after {
  left: calc( 50% + 210px);
  scale: -1 1;
}

@media screen and (max-width: 767px) {
  .hero .hero-band::after {
    left: calc(50% + 120px);
  }
}

.point .point-list {
  margin-inline: auto;
  max-width: 912px;
}

.worry {
  position: relative;
  padding-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .worry {
    padding-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry {
    padding-bottom: calc((8px * 10) * 0.5);
  }
}

.worry::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 48%;
  background: #FEFBF1;
}

.worry .worry-headline {
  text-align: center;
  margin-bottom: calc(8px * 6);
  font-size: 3.6rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .worry .worry-headline {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-headline {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .worry .worry-headline {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .worry .worry-headline {
    font-size: 2.6rem;
  }
}

.worry .worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}

@media screen and (max-width: 959px) {
  .worry .worry-list {
    gap: 24px 20px;
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-list {
    grid-template-columns: 1fr;
  }
}

.worry .worry-list__item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 40px 24px 32px;
  background: #ffffff;
  border: solid 1px #F98023;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .worry .worry-list__item {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-list__item {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .worry .worry-list__item {
    grid-template-columns: 1fr;
    padding: 20px 12px 16px;
  }
}

.worry .worry-list__item .worry-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  padding: 0 16px;
  background: #ffffff;
  white-space: nowrap;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .worry .worry-list__item .worry-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .worry .worry-list__item .worry-ttl {
    font-size: 2rem;
  }
}

.worry .worry-list__item .worry-box {
  position: relative;
  text-align: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 8px;
  min-height: 132px;
  background-color: #F7F7F7;
  border-radius: 10px;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .worry .worry-list__item .worry-box {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-list__item .worry-box {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .worry .worry-list__item .worry-box {
    min-height: 100px;
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-list__item .worry-box {
    min-height: 80px;
  }
}

.worry .worry-list__item .worry-box::before {
  position: absolute;
  top: -16px;
  left: -12px;
  content: "";
  width: 64px;
  height: 48px;
  background: #D9D9D9;
  -webkit-mask-image: url("../../../dist/img/top/worry-deco.svg");
  mask-image: url("../../../dist/img/top/worry-deco.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 1279px) {
  .worry .worry-list__item .worry-box::before {
    width: 48px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .worry .worry-list__item .worry-box::before {
    top: -12px;
    left: -4px;
  }
}

.worry .worry-list__item .worry-box .emphasis {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .worry .worry-list__item .worry-box .emphasis {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .worry .worry-list__item:last-of-type .worry-ttl {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FEFBF1), color-stop(50%, #ffffff));
    background: linear-gradient(#FEFBF1 50%, #ffffff 50%);
  }
}

.worry .solve-txt {
  position: relative;
  text-align: center;
  padding-top: 86px;
  font-size: 3.6rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .worry .solve-txt {
    padding-top: 64px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .worry .solve-txt {
    padding-top: 48px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .worry .solve-txt {
    font-size: 2.2rem;
  }
}

.worry .solve-txt em {
  margin-right: calc(8px * 2);
  padding: 4px 24px;
  background: #F98023;
  border-radius: 5px;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .worry .solve-txt em {
    margin-right: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry .solve-txt em {
    margin-right: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .worry .solve-txt em {
    border-radius: calc(5px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worry .solve-txt em {
    border-radius: calc(5px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .worry .solve-txt em {
    padding: 2px 16px;
  }
}

@media screen and (max-width: 519px) {
  .worry .solve-txt em {
    padding: 2px 8px;
  }
}

.worry .solve-txt::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 36px;
  height: 54px;
  background: #EEBF22;
  -webkit-mask-image: url("../../../dist/img/top/solve-arrow.svg");
  mask-image: url("../../../dist/img/top/solve-arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .worry .solve-txt::before {
    width: 30px;
    height: 45px;
  }
}

@media screen and (max-width: 767px) {
  .worry .solve-txt::before {
    width: 24px;
    height: 36px;
  }
}

.chooses {
  padding-top: 96px;
}

.chooses .chooses-frame {
  position: relative;
  padding: 100px 80px 64px;
  border: solid 3px #F98023;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .chooses .chooses-frame {
    padding: 100px 40px 40px;
  }
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame {
    padding: 80px 40px 40px;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame {
    padding: 60px 20px 20px;
  }
}

.chooses .chooses-frame::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  content: "";
  width: 530px;
  height: 14px;
  background: linear-gradient(to left, #ffffff 10px, transparent 10px, transparent calc(100% - 10px), #ffffff calc(100% - 10px));
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame::before {
    width: 426px;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame::before {
    width: 314px;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame::before {
    width: 278px;
  }
}

.chooses .chooses-frame .headline {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  padding: 20px 40px;
  background: #ffffff;
  border: solid 3px #F98023;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .headline {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .headline {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .headline {
    padding: 16px 30px;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .headline {
    padding: 10px;
  }
}

.chooses .chooses-frame .headline::before {
  position: absolute;
  top: -40px;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 236px;
  height: 175px;
  background: #F98023;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 22%, 0 22%);
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .headline::before {
    top: -30px;
    clip-path: polygon(0 0, 100% 0, 100% 16%, 0 17%);
  }
}

.chooses .chooses-frame .headline::after {
  position: absolute;
  top: -37px;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 232px;
  height: 172px;
  background: #ffffff;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .headline::after {
    top: -27px;
  }
}

.chooses .chooses-frame .headline__sub {
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
}

.chooses .chooses-frame .headline__main {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .headline__main {
    font-size: 2.8rem;
  }
}

.chooses .chooses-frame .chooses-list {
  counter-reset: chooses-num;
  display: grid;
  gap: 8px;
}

.chooses .chooses-frame .chooses-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 64px;
  padding: 18px;
  background: #FEFBF1;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .chooses-list__item {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .chooses-list__item {
    padding: 14px;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item {
    gap: 40px;
    padding: 10px;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item {
    gap: 32px;
  }
}

.chooses .chooses-frame .chooses-list__item .num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 34px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  color: #F98023;
  font-size: 2rem;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .num {
    padding-right: 22px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item .num {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
    padding: 0 0 24px;
    -webkit-writing-mode: lr;
    -ms-writing-mode: lr;
    writing-mode: lr;
    font-size: 1.5rem;
  }
}

.chooses .chooses-frame .chooses-list__item .num::before {
  position: absolute;
  right: 0;
  counter-increment: chooses-num;
  content: counter(chooses-num);
  color: #F98023;
  -webkit-writing-mode: lr;
  -ms-writing-mode: lr;
  writing-mode: lr;
  font-family: "Ubuntu", sans-serif;
  font-size: 6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .num::before {
    font-size: 4rem;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item .num::before {
    top: calc(50% - -14px);
    left: 50%;
    right: auto;
    translate: -50% -50%;
    font-size: 3rem;
  }
}

.chooses .chooses-frame .chooses-list__item .num::after {
  position: absolute;
  right: -40px;
  content: "";
  width: 24px;
  height: 1px;
  background: #695544;
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .num::after {
    right: -26px;
    width: 16px;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item .num::after {
    right: -20px;
    top: 50%;
    width: 10px;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .chooses-txt {
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item .chooses-txt {
    width: calc(100% - 62px);
  }
}

.chooses .chooses-frame .chooses-list__item .chooses-ttl {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .chooses-list__item .chooses-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .chooses-ttl {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 519px) {
  .chooses .chooses-frame .chooses-list__item .chooses-ttl {
    margin-bottom: 8px;
    line-height: 1.4;
  }
}

.chooses .chooses-frame .chooses-list__item .chooses-ttl em {
  font-size: 2.8rem;
}

@media screen and (max-width: 959px) {
  .chooses .chooses-frame .chooses-list__item .chooses-ttl em {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .chooses .chooses-frame .chooses-list__item .chooses-ttl em {
    font-size: 1.9rem;
  }
}

.price .price-list {
  margin-inline: auto;
  max-width: 880px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #ffffff;
  border: solid 3px #FDF3C4;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .price .price-list {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .price .price-list {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .price .price-list {
    max-width: 520px;
  }
}

.price .price-list dt {
  text-align: center;
  padding: 48px 0;
  background: #FDF3C4;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  width: 380px;
  font-size: 3.2rem;
  line-height: 1.4;
  letter-spacing: .2rem;
}

@media screen and (max-width: 959px) {
  .price .price-list dt {
    padding: 36px 0;
    width: 320px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .price .price-list dt {
    padding: 24px 0;
    width: 240px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .price .price-list dt {
    padding: 8px 0;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }
}

.price .price-list dt .num {
  font-family: "Ubuntu", sans-serif;
  font-size: 4rem;
}

@media screen and (max-width: 959px) {
  .price .price-list dt .num {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .price .price-list dt .num {
    font-size: 2.8rem;
  }
}

.price .price-list dt small {
  font-size: 2.4rem;
}

@media screen and (max-width: 959px) {
  .price .price-list dt small {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .price .price-list dt small {
    font-size: 1.7rem;
  }
}

.price .price-list dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc( 100% - 380px);
  font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
  .price .price-list dd {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .price .price-list dd {
    width: calc( 100% - 240px);
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .price .price-list dd {
    padding: 16px 0;
    width: 100%;
  }
}

.price .price-list dd .num {
  font-family: "Ubuntu", sans-serif;
  color: #F98023;
  font-size: 5.6rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .price .price-list dd .num {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .price .price-list dd .num {
    font-size: 3.2rem;
  }
}

.price .price-list dd small {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .price .price-list dd small {
    font-size: 1.7rem;
  }
}

.compare .tbl table thead tr th:not(:first-of-type) {
  padding: 16px;
  background: #F7F7F7;
  color: #695544;
  border-radius: 0;
  font-size: 2rem;
  border-right: solid 1px #E5E5E5;
}

@media screen and (max-width: 767px) {
  .compare .tbl table thead tr th:not(:first-of-type) {
    vertical-align: middle;
    padding: 8px;
    font-size: 1.7rem;
  }
}

.compare .tbl table thead tr th.attention {
  background: #F98023;
  border: solid 3px #F98023;
  color: #ffffff;
  font-weight: 800;
  font-size: 2.4rem;
}

@media screen and (max-width: 959px) {
  .compare .tbl table thead tr th.attention {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .compare .tbl table thead tr th.attention {
    font-size: 1.8rem;
  }
}

.compare .tbl table tbody tr:nth-child(-n+3) th {
  background: #EEBF22;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(105, 85, 68, 0.4);
}

.compare .tbl table tbody tr:nth-child(-n+3) td {
  background: #FFFDD7;
}

@media screen and (max-width: 767px) {
  .compare .tbl table tbody tr:nth-child(-n+3) td {
    vertical-align: middle;
  }
}

.compare .tbl table tbody tr:last-of-type td:last-of-type {
  border-bottom: solid 3px #F98023;
}

@media screen and (max-width: 767px) {
  .compare .tbl table tbody tr th,
  .compare .tbl table tbody tr td {
    font-size: 1.5rem;
  }
}

.compare .tbl table tbody tr th {
  width: 220px;
}

@media screen and (max-width: 767px) {
  .compare .tbl table tbody tr th {
    width: auto;
  }
}

.compare .tbl table tbody tr td {
  text-align: center;
  border-bottom: solid 1px #E5E5E5;
}

.compare .tbl table tbody tr td:not(:last-of-type) {
  border-right: solid 1px #E5E5E5;
}

.compare .tbl table tbody tr td:last-of-type {
  border-left: 3px solid #F98023;
  border-right: 3px solid #F98023;
  border-bottom: 1px solid #E5E5E5;
}

.compare .tbl table tbody tr td .num {
  font-family: "Ubuntu", sans-serif;
}

.compare .tbl table tbody tr td.attention em {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .compare .tbl table tbody tr td.attention em {
    font-size: 2rem;
  }
}

.compare .tbl table tbody tr td.attention .num {
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .compare .tbl table tbody tr td.attention .num {
    font-size: 2.2rem;
  }
}

.compare .tbl table tbody tr td .list__item {
  text-align: left;
}

.compare .tbl table tbody tr td .note-txt {
  text-align: left;
}

.achieve .achieve-frame {
  position: relative;
  overflow: hidden;
}

.achieve .achieve-frame::before, .achieve .achieve-frame::after {
  position: absolute;
  left: 50%;
  z-index: -1;
  background: #ffffff;
  content: "";
}

.achieve .achieve-frame::before {
  top: 0;
  translate: -50% 0;
  width: calc( 100% - 160px);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .achieve .achieve-frame::before {
    width: calc(100% - 100px);
  }
}

.achieve .achieve-frame::after {
  top: 50%;
  translate: -50% -50%;
  width: calc( 100% + 120px);
  height: calc( 100% - 160px);
}

@media screen and (max-width: 767px) {
  .achieve .achieve-frame::after {
    height: calc(100% - 80px);
  }
}

.achieve .wrap-l {
  position: relative;
}

.achieve .wrap-l::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  translate: -50% 0;
  content: "";
  width: calc( 100% - 80px);
  height: 100%;
  background: #FDF5CB;
}

@media screen and (max-width: 1279px) {
  .achieve .wrap-l::before {
    width: calc( 100% - 64px);
  }
}

@media screen and (max-width: 959px) {
  .achieve .wrap-l::before {
    width: calc( 100% - 48px);
  }
}

@media screen and (max-width: 519px) {
  .achieve .wrap-l::before {
    width: calc( 100% - 32px);
  }
}

.achieve .wrap-l::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  translate: -50% -50%;
  content: "";
  width: calc( 100% - 120px);
  height: calc( 100% - 32px);
  background: #ffffff;
}

@media screen and (max-width: 959px) {
  .achieve .wrap-l::after {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 767px) {
  .achieve .wrap-l::after {
    width: calc(100% - 72px);
  }
}

.achieve .achieve-inner {
  padding: 40px 120px;
}

@media screen and (max-width: 1023px) {
  .achieve .achieve-inner {
    padding: 40px 80px;
  }
}

@media screen and (max-width: 959px) {
  .achieve .achieve-inner {
    padding: 30px 40px;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-inner {
    padding: 30px 16px;
  }
}

.achieve .achieve-headline {
  text-align: center;
}

.achieve .achieve-headline__sub {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  font-size: 3.2rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-headline__sub {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-headline__sub {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .achieve .achieve-headline__sub {
    font-size: 2rem;
  }
}

.achieve .achieve-headline__sub::before, .achieve .achieve-headline__sub::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 5px;
  height: 100%;
  background: #F98023;
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

.achieve .achieve-headline__sub::before {
  left: 0;
  rotate: -45deg;
}

.achieve .achieve-headline__sub::after {
  right: 0;
  rotate: 45deg;
}

.achieve .achieve-headline__main {
  font-size: 4rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-headline__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-headline__main {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .achieve .achieve-headline__main {
    font-size: 2.4rem;
  }
}

.achieve .achieve-headline__main .dot {
  background: top left/1em 0.5em repeat-x radial-gradient(circle, #695544 0.1em, #ffffff 0.1em);
  padding-top: .2em;
}

.achieve .achieve-headline__main .num {
  position: relative;
  z-index: 1;
  padding: 0 12px 0 32px;
  font-family: "Ubuntu", sans-serif;
  font-size: 8.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-headline__main .num {
    font-size: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-headline__main .num {
    padding: 0 8px 0 16px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 519px) {
  .achieve .achieve-headline__main .num {
    font-size: 4rem;
  }
}

.achieve .achieve-headline__main .num::before {
  position: absolute;
  top: -4px;
  left: 0;
  z-index: -1;
  content: "";
  background: url("../../../dist/img/top/achieve-headline-deco.svg") center/contain no-repeat;
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .achieve .achieve-headline__main .num::before {
    width: 48px;
    height: 48px;
  }
}

.achieve .achieve-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.achieve .achieve-unit__txt {
  width: 260px;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__txt {
    width: 100%;
  }
}

.achieve .achieve-unit__txt .achieve-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt .achieve-period {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__txt .achieve-period {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.achieve .achieve-unit__txt .achieve-period dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 45px;
  line-height: 40px;
  border: solid 3px #F98023;
  border-radius: 5px;
  color: #F98023;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt .achieve-period dt {
    border-radius: calc(5px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .achieve .achieve-unit__txt .achieve-period dt {
    border-radius: calc(5px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt .achieve-period dt {
    height: 36px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__txt .achieve-period dt {
    width: 88px;
    line-height: 28px;
  }
}

.achieve .achieve-unit__txt .achieve-period dd {
  width: calc( 100% - 136px);
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt .achieve-period dd {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__txt .achieve-period dd {
    width: calc(100% - 96px);
  }
}

.achieve .achieve-unit__txt .achieve-period dd .num {
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
}

.achieve .achieve-unit__txt .tbl table tbody tr th, .achieve .achieve-unit__txt .tbl table tbody tr td {
  font-size: 1.5rem;
}

.achieve .achieve-unit__txt .tbl table tbody tr th .num, .achieve .achieve-unit__txt .tbl table tbody tr td .num {
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__txt .tbl table tbody tr th,
  .achieve .achieve-unit__txt .tbl table tbody tr td {
    padding: 8px 16px;
  }
}

.achieve .achieve-unit__txt .tbl table tbody tr th {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__txt .tbl table tbody tr th {
    width: 40%;
    border-bottom: solid 1px #695544;
  }
}

.achieve .achieve-unit__txt .tbl table tbody tr td {
  text-align: center;
}

.achieve .achieve-unit__graph {
  width: calc( 100% - 300px);
}

@media screen and (max-width: 959px) {
  .achieve .achieve-unit__graph {
    width: calc(100% - 220px);
  }
}

@media screen and (max-width: 767px) {
  .achieve .achieve-unit__graph {
    width: 100%;
  }
}

.case {
  counter-reset: case-num;
}

@media screen and (max-width: 767px) {
  .case .txt.--center,
  .case .note-txt.--center {
    text-align: left;
  }
}

.case .case-box {
  padding: 64px;
}

@media screen and (max-width: 959px) {
  .case .case-box {
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box {
    padding: 16px;
  }
}

.case .case-box--yel {
  background: #FEFBF1;
}

.case .case-box--yel .case-item .case-ttl {
  background: #FDF3C4;
}

.case .case-box--yel .tbl table tbody tr th {
  background: #FDF3C4;
}

.case .case-box--orn {
  background: #FFF7EB;
}

.case .case-box--orn .case-item .case-ttl {
  background: #FFE2CD;
}

.case .case-box--orn .tbl table tbody tr th {
  background: #FFE2CD;
}

.case .case-box:nth-of-type(1) {
  border-radius: 10px 10px 0 0;
}

.case .case-box:nth-of-type(3) {
  border-radius: 0 0 10px 10px;
}

.case .case-box .headline {
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  .case .case-box .headline {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .case .case-box .headline {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.case .case-box .case-item .case-ttl {
  position: relative;
  margin-bottom: calc(8px * 3);
  padding: 10px 10px 10px 88px;
  border: solid 8px #ffffff;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: 800;
  background-image: linear-gradient(90deg, #ffffff 1px, transparent 1px), linear-gradient(#ffffff 1px, transparent 1px);
  background-size: 6px 6px;
}

@media screen and (max-width: 959px) {
  .case .case-box .case-item .case-ttl {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .case .case-box .case-item .case-ttl {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .case .case-box .case-item .case-ttl {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .case .case-box .case-item .case-ttl {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .case-ttl {
    padding: 5px 5px 5px 64px;
    font-size: 2rem;
  }
}

.case .case-box .case-item .case-ttl::before {
  position: absolute;
  top: 50%;
  left: 24px;
  translate: 0 -50%;
  content: "";
  width: 16px;
  height: 34px;
  background: url("../../../dist/img/top/case-txt.svg") center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .case-ttl::before {
    left: 16px;
    width: 14px;
    height: 29px;
  }
}

.case .case-box .case-item .case-ttl::after {
  position: absolute;
  top: 50%;
  left: 48px;
  translate: 0 -50%;
  counter-increment: case-num;
  content: counter(case-num);
  font-family: "Ubuntu", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: #F98023;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .case-ttl::after {
    left: 36px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .tbl table tbody {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .tbl table tbody tr {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .tbl table tbody tr th, .case .case-box .case-item .tbl table tbody tr td {
    display: block;
  }
}

.case .case-box .case-item .tbl table tbody tr th {
  width: 200px;
}

@media screen and (max-width: 959px) {
  .case .case-box .case-item .tbl table tbody tr th {
    width: 144px;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .tbl table tbody tr th {
    border-bottom: none;
    width: 100%;
  }
}

.case .case-box .case-item .voice-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 48px;
  background: #ffffff;
  border: solid 3px #F98023;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .case .case-box .case-item .voice-txt {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .case .case-box .case-item .voice-txt {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .case .case-box .case-item .voice-txt {
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 16px;
  }
}

.case .case-box .case-item .voice-txt dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 16px 28px 16px 0;
  padding-right: 34px;
  color: #F98023;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dt {
    margin: 16px 0 0 0;
    padding-right: 0;
    padding-bottom: 8px;
  }
}

.case .case-box .case-item .voice-txt dt::before, .case .case-box .case-item .voice-txt dt::after {
  content: '';
  position: absolute;
  right: 0;
  width: 3px;
  background-color: #F98023;
}

.case .case-box .case-item .voice-txt dt::before {
  top: 0;
  height: calc( 50% - 8px);
  border-radius: 2px 2px 0 0;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dt::before {
    top: auto;
    bottom: 0;
    width: calc( 50% - 8px);
    height: 3px;
  }
}

.case .case-box .case-item .voice-txt dt::after {
  bottom: 0;
  height: 50%;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dt::after {
    left: 0;
    width: calc( 50% - 8px);
    height: 3px;
  }
}

.case .case-box .case-item .voice-txt dt .slash-line {
  position: absolute;
  top: calc(50% - 11px);
  right: -10px;
  width: 12px;
  height: 3px;
  background-color: #F98023;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dt .slash-line {
    top: auto;
    bottom: 0;
    left: calc(50% - 3px);
    right: 0;
    translate: -50% 0;
  }
}

.case .case-box .case-item .voice-txt dd {
  width: calc(100% - 167px);
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dd {
    width: 100%;
  }
}

.case .case-box .case-item .voice-txt dd .txt {
  padding: 16px 0;
}

.case .case-box .case-item .voice-txt dd .voice-unit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dd .voice-unit {
    -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;
  }
}

.case .case-box .case-item .voice-txt dd .voice-unit__txt {
  margin: auto 0;
  padding: 16px 0;
  width: calc(100% - 106px);
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dd .voice-unit__txt {
    padding: 16px 0 0;
    width: 100%;
  }
}

.case .case-box .case-item .voice-txt dd .voice-unit__vsl {
  margin-top: auto;
  padding-top: 16px;
  width: 106px;
}

@media screen and (max-width: 767px) {
  .case .case-box .case-item .voice-txt dd .voice-unit__vsl {
    width: 80px;
  }
}

.case .headline {
  padding-top: calc(8px * 7);
}

@media screen and (max-width: 959px) {
  .case .headline {
    padding-top: calc((8px * 7) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .case .headline {
    padding-top: calc((8px * 7) * 0.5);
  }
}

.treatment {
  overflow: hidden;
}

.treatment .box-txt .underline {
  color: #F98023;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #FEFBF1), to(#FDF3C4));
  background: linear-gradient(180deg, #FEFBF1 70%, #FDF3C4);
}

.treatment .treatment-content {
  display: grid;
  gap: 64px;
}

.treatment .treatment-content .treatment-unit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
}

.treatment .treatment-content .treatment-unit::before {
  position: absolute;
  z-index: -1;
  content: "";
}

.treatment .treatment-content .treatment-unit__txt {
  width: calc( 100% - 500px);
}

@media screen and (max-width: 1023px) {
  .treatment .treatment-content .treatment-unit__txt {
    width: calc(100% - 420px);
  }
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit__txt {
    width: 100%;
  }
}

.treatment .treatment-content .treatment-unit__txt .treatment-ttl {
  display: inline-block;
  margin-bottom: calc(8px * 3);
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit__txt .treatment-ttl {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .treatment .treatment-content .treatment-unit__txt .treatment-ttl {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit__txt .treatment-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .treatment .treatment-content .treatment-unit__txt .treatment-ttl {
    font-size: 2rem;
  }
}

.treatment .treatment-content .treatment-unit__txt .frame .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 40px;
}

.treatment .treatment-content .treatment-unit__txt .frame .list__item {
  margin-bottom: 0;
}

.treatment .treatment-content .treatment-unit__vsl {
  width: 100%;
  max-width: 460px;
}

@media screen and (max-width: 1023px) {
  .treatment .treatment-content .treatment-unit__vsl {
    max-width: 380px;
  }
}

.treatment .treatment-content .treatment-unit__vsl img {
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit__vsl img {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .treatment .treatment-content .treatment-unit__vsl img {
    border-radius: calc(10px * 0.5);
  }
}

.treatment .treatment-content .treatment-unit:nth-of-type(1)::before {
  top: -36px;
  right: -120px;
  width: 180px;
  height: 180px;
  background: url("../../../dist/img/top/treatment-deco1.png") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .treatment .treatment-content .treatment-unit:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.treatment .treatment-content .treatment-unit:nth-of-type(2)::before {
  bottom: -20px;
  left: -240px;
  width: 280px;
  height: 280px;
  background: url("../../../dist/img/top/treatment-deco1.png") center/contain no-repeat;
}

.treatment .treatment-content .treatment-unit:nth-of-type(3)::before {
  top: -130px;
  right: -130px;
  width: 375px;
  height: 352px;
  background: url("../../../dist/img/top/treatment-deco2.png") center/contain no-repeat;
}

.condition .condition-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 959px) {
  .condition .condition-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .condition .condition-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.condition .condition-unit .headline {
  text-align: left;
  width: 368px;
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .headline {
    width: 288px;
  }
}

@media screen and (max-width: 767px) {
  .condition .condition-unit .headline {
    text-align: center;
    width: 252px;
  }
}

.condition .condition-unit .headline__main {
  font-size: 4rem;
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .headline__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .condition .condition-unit .headline__main {
    font-size: 2.8rem;
  }
}

.condition .condition-unit .condition-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: calc( 100% - 416px);
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .condition-list {
    width: calc(100% - 308px);
  }
}

@media screen and (max-width: 767px) {
  .condition .condition-unit .condition-list {
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.condition .condition-unit .condition-list:before {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(249, 128, 35, 0.24);
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list:before {
    display: block;
  }
}

.condition .condition-unit .condition-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 12px 0;
  background: #FEFBF1;
  border-radius: 10px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .condition-list__item {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list__item {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .condition-list__item {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list__item {
    padding: 6px 0;
    border-bottom: 1px solid rgba(249, 128, 35, 0.24);
    border-radius: 0;
  }
}

.condition .condition-unit .condition-list__item::before {
  position: absolute;
  top: 2px;
  left: 2px;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid rgba(249, 128, 35, 0.24);
  border-radius: 5px;
}

@media screen and (max-width: 959px) {
  .condition .condition-unit .condition-list__item::before {
    border-radius: calc(5px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list__item::before {
    border-radius: calc(5px * 0.5);
  }
}

@media screen and (max-width: 519px) {
  .condition .condition-unit .condition-list__item::before {
    display: none;
  }
}

.message .message-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 959px) {
  .message .message-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit {
    gap: 0;
  }
}

.message .message-unit .headline {
  text-align: left;
  width: 314px;
}

@media screen and (max-width: 959px) {
  .message .message-unit .headline {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit .headline {
    text-align: center;
  }
}

.message .message-unit .headline__sub {
  font-size: 7.5rem;
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .message .message-unit .headline__sub {
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit .headline__sub {
    font-size: 5rem;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit .headline__sub {
    font-size: 4rem;
  }
}

.message .message-unit .headline__main {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .message .message-unit .headline__main {
    font-size: 2rem;
  }
}

.message .message-unit__txt {
  width: calc( 100% - 362px);
}

@media screen and (max-width: 959px) {
  .message .message-unit__txt {
    width: calc( 100% - 260px);
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__txt {
    width: 100%;
  }
}

.message .message-unit__txt .message-ttl {
  font-size: 2.4rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .message .message-unit__txt .message-ttl {
    font-size: 2rem;
  }
}

.message .doctor-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit {
    gap: 16px;
    -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;
  }
}

.message .doctor-unit__vsl {
  width: 314px;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__vsl {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__vsl {
    width: 200px;
  }
}

.message .doctor-unit__vsl img {
  max-width: 296px;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__vsl img {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .doctor-unit__vsl img {
    border-radius: calc(10px * 0.5);
  }
}

.message .doctor-unit__txt {
  width: calc( 100% - 362px);
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__txt {
    width: calc(100% - 270px);
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt {
    width: 100%;
  }
}

.message .doctor-unit__txt .logo {
  margin-bottom: 4px;
  width: 130px;
}

.message .doctor-unit__txt .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: calc(8px * 3);
  font-size: 2.8rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__txt .name {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .doctor-unit__txt .name {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .name {
    font-size: 2.4rem;
  }
}

.message .doctor-unit__txt .name .position {
  margin-right: calc(8px * 2);
  font-size: 1.7rem;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__txt .name .position {
    margin-right: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .doctor-unit__txt .name .position {
    margin-right: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .name .position {
    font-size: 1.5rem;
  }
}

.message .doctor-unit__txt .doctor-dtl .doctor-ttl {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: solid 1px #E5E5E5;
  font-weight: 800;
}

.message .doctor-unit__txt .doctor-dtl .doctor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.message .doctor-unit__txt .doctor-dtl .doctor-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list__item {
    gap: 8px;
  }
}

.message .doctor-unit__txt .doctor-dtl .doctor-list__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  height: 100%;
  background: #FEFBF1;
  border-radius: 5px;
  white-space: nowrap;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list__item dt {
    border-radius: calc(5px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list__item dt {
    border-radius: calc(5px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list__item dt {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 84px;
  }
}

@media screen and (max-width: 767px) {
  .message .doctor-unit__txt .doctor-dtl .doctor-list__item dd {
    width: calc( 100% - 92px);
  }
}

.flow .flow-step {
  display: grid;
  gap: 24px;
  padding-left: 52px;
  counter-reset: flow-num;
}

@media screen and (max-width: 959px) {
  .flow .flow-step {
    padding-left: 44px;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step {
    padding-left: 36px;
    gap: 16px;
  }
}

.flow .flow-step__item {
  position: relative;
  padding: 20px 48px 20px 92px;
  background: #ffffff;
  border: solid 3px #FFE2CD;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .flow .flow-step__item {
    border-radius: calc(10px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item {
    padding: 16px 32px 16px 64px;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step__item {
    padding: 12px 12px 12px 42px;
  }
}

.flow .flow-step__item:not(:last-of-type)::before {
  position: absolute;
  top: 50%;
  left: 2px;
  z-index: 1;
  content: "";
  translate: -50% 0;
  height: 100%;
  width: 10px;
  background: #F98023;
}

.flow .flow-step__item .flow-num {
  position: absolute;
  top: 50%;
  left: -52px;
  z-index: 2;
  translate: 0 -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 35px;
  width: 120px;
  height: 120px;
  background: #F98023;
  border-radius: 50%;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-num {
    padding-bottom: 28px;
    left: -44px;
    width: 88px;
    height: 88px;
  }
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-num {
    padding-bottom: 22px;
    left: -36px;
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}

.flow .flow-step__item .flow-num::before {
  counter-increment: flow-num;
  content: counter(flow-num);
  position: absolute;
  bottom: 18px;
  left: 50%;
  translate: -50% 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-num::before {
    bottom: 10px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step__item .flow-num::before {
    bottom: 8px;
    font-size: 2.4rem;
  }
}

.flow .flow-step__item .flow-num::after {
  position: absolute;
  top: 2px;
  left: 2px;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.flow .flow-step__item .flow-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-unit {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step__item .flow-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
}

.flow .flow-step__item .flow-unit__txt {
  width: calc( 100% - 210px);
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-unit__txt {
    width: calc( 100% - 170px);
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step__item .flow-unit__txt {
    width: 100%;
  }
}

.flow .flow-step__item .flow-unit__txt .flow-ttl {
  margin-bottom: 12px;
  font-size: 2.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-unit__txt .flow-ttl {
    margin-bottom: 8px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-step__item .flow-unit__txt .flow-ttl {
    font-size: 2rem;
  }
}

.flow .flow-step__item .flow-unit__vsl {
  width: 170px;
}

@media screen and (max-width: 959px) {
  .flow .flow-step__item .flow-unit__vsl {
    width: 140px;
  }
}

.qa .qa-list {
  display: grid;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .qa .qa-list {
    gap: 16px;
  }
}

.qa .qa-list__item {
  border: solid 3px #FFB983;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .qa .qa-list__item {
    border-radius: 5px;
  }
}

.qa .qa-list__item .q-txt {
  background: #FEFBF1;
  padding: 10px 32px;
  border-radius: 10px 10px 0 0;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .qa .qa-list__item .q-txt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 6px 20px;
    border-radius: 5px 5px 0 0;
    font-size: 1.9rem;
    line-height: 1.4;
  }
}

.qa .qa-list__item .q-txt::before {
  content: "Q";
  margin-right: calc(8px * 2);
  color: #F98023;
  font-family: "Ubuntu", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .qa .qa-list__item .q-txt::before {
    margin-right: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .qa .qa-list__item .q-txt::before {
    margin-right: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .qa .qa-list__item .q-txt::before {
    font-size: 2.4rem;
  }
}

.qa .qa-list__item .a-txt {
  padding: 18px 32px;
}

@media screen and (max-width: 767px) {
  .qa .qa-list__item .a-txt {
    padding: 10px 20px;
  }
}

.qa .box-txt .txt {
  font-weight: 800;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .qa .box-txt .txt {
    text-align: left;
  }
}

.access .access-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 1023px) {
  .access .access-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.access .access-unit__txt {
  width: calc( 100% - 648px);
}

@media screen and (max-width: 1023px) {
  .access .access-unit__txt {
    width: calc(100% - 502px);
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit__txt {
    width: 100%;
  }
}

.access .access-unit__txt .logo {
  translate: -14px 0;
  width: 100%;
  max-width: 250px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__txt .logo {
    max-width: 200px;
  }
}

.access .access-unit__txt .access-ttl {
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 8px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .access .access-unit__txt .access-ttl {
    font-size: 2rem;
  }
}

.access .access-unit__txt .access-ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #F98023;
  clip-path: polygon(0 0, 100% 30%, 100% 70%, 0% 100%);
}

.access .access-unit__vsl {
  width: 100%;
  max-width: 600px;
}

@media screen and (max-width: 1023px) {
  .access .access-unit__vsl {
    max-width: 470px;
  }
}

.access .access-unit__vsl img {
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__vsl img {
    border-radius: calc(10px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit__vsl img {
    border-radius: calc(10px * 0.5);
  }
}

.hours .hour-contents {
  margin-inline: auto;
  width: 100%;
  max-width: 665px;
}

.hours .hour-contents .hours-tbl {
  margin-bottom: 4px;
}

/*# sourceMappingURL=../../maps/pages/top.css.map */
