@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #171717;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(980px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.section:not(:last-child) {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .section:not(:last-child) {
    margin-bottom: 115px;
  }
}
.section__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section__head {
    margin-bottom: 50px;
  }
}
.section__head::before {
  content: "";
  width: 133px;
  height: 51px;
  background-color: #cb0132;
  -webkit-mask: url("./public/img/head-deco.svg") center/cover no-repeat;
          mask: url("./public/img/head-deco.svg") center/cover no-repeat;
  position: absolute;
  top: -59px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section__head::before {
    -webkit-mask-image: url("./public/img/head-deco-sp.svg");
            mask-image: url("./public/img/head-deco-sp.svg");
    width: 66px;
    height: 24px;
    top: -35px;
  }
}
.section__head > span {
  font-size: 6rem;
  font-weight: 900;
  color: #cb0132;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__head > span {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .section__head > span {
    font-size: 25px;
  }
}
.section__head > span::after {
  content: "";
  width: 381px;
  height: 5px;
  background-color: #cb0132;
  -webkit-mask: url("./public/img/dotted-border.svg") center/cover no-repeat;
          mask: url("./public/img/dotted-border.svg") center/cover no-repeat;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section__head > span::after {
    width: 120px;
    height: 3px;
    bottom: -10px;
  }
}
.section__head > span:not(:last-child) {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .section__head > span:not(:last-child) {
    margin-bottom: 20px;
  }
}
.section__head--black {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section__head--black {
    margin-bottom: 50px;
  }
}
.section__head--black::before, .section__head--black > span::after {
  background-color: #171717;
}
.section__head--black > span {
  color: #171717;
}
.section__head--black > span::after {
  width: 161px;
}
@media screen and (max-width: 767px) {
  .section__head--black > span::after {
    width: 81px;
  }
}
.section__head--white::before, .section__head--white > span::after {
  background-color: #fff;
}
.section__head--white > span {
  color: #fff;
}
.section__head--white > span::after {
  width: 381px;
}
@media screen and (max-width: 767px) {
  .section__head--white > span::after {
    width: 120px;
  }
}
.section__desc {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.7391304348em;
}
@media screen and (max-width: 767px) {
  .section__desc {
    font-size: 14px;
    line-height: 2em;
  }
}
.section__desc--deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding-inline: 60px;
  margin: 0 auto 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section__desc--deco {
    padding-inline: 50px;
    margin-bottom: 20px;
  }
}
.section__desc--deco::before, .section__desc--deco::after {
  content: "";
  width: 47px;
  height: 78px;
  position: absolute;
  top: 12px;
}
@media screen and (max-width: 767px) {
  .section__desc--deco::before, .section__desc--deco::after {
    width: 48px;
    height: 139px;
    top: unset;
    bottom: 5px;
  }
}
.section__desc--deco::before {
  background: url("./public/img/line-deco-l.svg") center/cover no-repeat;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section__desc--deco::before {
    background-image: url("./public/img/line-deco-l-sp.svg");
  }
}
.section__desc--deco::after {
  background: url("./public/img/line-deco-r.svg") center/cover no-repeat;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section__desc--deco::after {
    background-image: url("./public/img/line-deco-r-sp.svg");
  }
}
.section__desc--mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section__desc--mb30 {
    margin-bottom: 20px;
  }
}
.section__banner, .section__banner-wrap {
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
}
.section__banner {
  width: 100%;
  background-color: #ffeb05;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
  margin-block: 30px 100px;
  padding-block: 5px;
}
@media screen and (max-width: 767px) {
  .section__banner {
    padding-block: 3px;
    margin-block: 20px 60px;
  }
}
.section__banner-wrap {
  min-height: 78px;
  border-width: 2px;
  text-align: center;
  padding: 3px 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__banner-wrap {
    padding-block: 10px;
  }
}
@media screen and (max-width: 767px) {
  .section__banner-wrap {
    min-height: 52px;
    padding-block: 10px;
  }
}
.section__banner-text {
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__banner-text {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .section__banner-text {
    font-size: 17px;
  }
}

.desc {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .desc {
    font-size: 14px;
  }
}
.desc.fs16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .desc.fs16 {
    font-size: 14px;
  }
}

.button {
  width: 100%;
  max-width: 375px;
  height: 60px;
  background-color: #171717;
  border-radius: 30px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 40px auto 0;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .button {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
    max-width: 285px;
    margin-top: 30px;
  }
}
.button:hover {
  opacity: 0.8;
}
.button--pink {
  background-color: #cb0132;
}
.button::before {
  content: "";
  width: 21px;
  height: 20px;
  background: url("./public/img/icons/external-link.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .button::before {
    width: 17px;
    height: 16px;
  }
}
.button--entry {
  max-width: 100%;
  height: 100px;
  background-color: #cb0132;
  border-radius: 50px;
  -webkit-box-shadow: 0 10px 0 #600a0a;
          box-shadow: 0 10px 0 #600a0a;
  font-size: 2.4rem;
  position: relative;
  isolation: isolate;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .button--entry {
    max-width: 315px;
    height: 70px;
    font-size: 14px;
  }
}
.button--entry::before {
  width: 31px;
  height: 30px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .button--entry::before {
    width: 17px;
    height: 16px;
    right: 20px;
  }
}
.button--black {
  background-color: #171717;
  -webkit-box-shadow: 0 10px 0 #000;
          box-shadow: 0 10px 0 #000;
}

.mv__img {
  width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
}
.wrapper--white {
  background: #fff url("./public/img/common/bg.png") top left/25% repeat;
  padding-block: 150px 100px;
}
@media screen and (max-width: 767px) {
  .wrapper--white {
    background-size: 187px;
    padding-block: 115px 80px;
  }
}
.wrapper--gray {
  background-color: #f8f9f9;
  padding-block: 160px 100px;
}
@media screen and (max-width: 767px) {
  .wrapper--gray {
    padding-block: 115px 80px;
  }
}
.wrapper--pink {
  background: #cb0132 url("./public/img/common/bg-pink.svg") top left/25% repeat;
  padding-block: 160px;
}
@media screen and (max-width: 767px) {
  .wrapper--pink {
    background-size: 187px;
    padding-block: 114px 100px;
  }
}

.campaign__img {
  width: 100%;
  max-width: 980px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .campaign__img {
    max-width: 315px;
    display: block;
    margin: 0 auto;
  }
}

.wrap {
  width: 100%;
  background-color: #fff;
  border: 3px solid #181818;
  border-radius: 30px;
  padding: 65px 40px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap {
    border-radius: 15px;
    border-width: 2px;
    padding: 48px 15px 30px;
  }
}
.wrap.pt100 {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .wrap.pt100 {
    padding-top: 70px;
  }
}
.wrap.no-border {
  border: 0;
  padding-block: 50px;
}
.wrap:not(:last-child) {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .wrap:not(:last-child) {
    margin-bottom: 60px;
  }
}
.wrap.mb120 {
  margin-bottom: 120px;
}
.wrap.mt85 {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .wrap.mt85 {
    margin-top: 70px;
  }
}
.wrap__head {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap__head {
    top: -21px;
  }
}
.wrap__head::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 18px;
}
@media screen and (max-width: 767px) {
  .wrap__head::before {
    height: 4px;
  }
}
.wrap__head--big {
  top: -46px;
}
@media screen and (max-width: 767px) {
  .wrap__head--big {
    top: -44px;
  }
}
.wrap__head--big::before {
  bottom: 57px;
}
@media screen and (max-width: 767px) {
  .wrap__head--big::before {
    bottom: 46px;
  }
}
.wrap__head--big .wrap__title {
  font-size: 4rem;
  padding-inline: 65px;
}
@media screen and (max-width: 767px) {
  .wrap__head--big .wrap__title {
    font-size: 20px;
    line-height: 1.5em;
    padding-inline: 10px;
  }
}
.wrap__head--big .wrap__title::before, .wrap__head--big .wrap__title::after {
  height: 88px;
  top: 65%;
}
@media screen and (max-width: 767px) {
  .wrap__head--big .wrap__title::before, .wrap__head--big .wrap__title::after {
    height: 60px;
    top: 60%;
  }
}
.wrap__head--big .wrap__title::before {
  left: 28px;
}
@media screen and (max-width: 767px) {
  .wrap__head--big .wrap__title::before {
    left: 15px;
    -webkit-transform: translateY(-48%) rotate(-32deg);
            transform: translateY(-48%) rotate(-32deg);
  }
}
.wrap__head--big .wrap__title::after {
  right: 28px;
}
@media screen and (max-width: 767px) {
  .wrap__head--big .wrap__title::after {
    right: 15px;
    -webkit-transform: translateY(-48%) rotate(32deg);
            transform: translateY(-48%) rotate(32deg);
  }
}
@media screen and (max-width: 767px) {
  .wrap__head--sp {
    top: -28px;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .wrap__head--sp::before {
    bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .wrap__head--sp .wrap__title::before {
    left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .wrap__head--sp .wrap__title::after {
    right: -15px;
  }
}
.wrap__title {
  font-size: 4.5rem;
  color: #171717;
  line-height: 1.3em;
  position: relative;
  padding-inline: 39px;
}
@media screen and (max-width: 767px) {
  .wrap__title {
    font-size: 25px;
    line-height: 1.6em;
    padding-inline: 29px;
  }
}
.wrap__title--fs40 {
  font-size: 4rem;
}
.wrap__title::before, .wrap__title::after {
  content: "";
  width: 3px;
  height: 44px;
  background-color: #181818;
  border-radius: 1.5px;
  position: absolute;
  top: 52%;
}
@media screen and (max-width: 767px) {
  .wrap__title::before, .wrap__title::after {
    width: 2px;
    height: 26px;
    border-radius: 1px;
  }
}
.wrap__title::before {
  left: 10px;
  -webkit-transform: translateY(-48%) rotate(-36deg);
          transform: translateY(-48%) rotate(-36deg);
}
@media screen and (max-width: 767px) {
  .wrap__title::before {
    -webkit-transform: translateY(-48%) rotate(-38deg);
            transform: translateY(-48%) rotate(-38deg);
  }
}
.wrap__title::after {
  right: 10px;
  -webkit-transform: translateY(-48%) rotate(36deg);
          transform: translateY(-48%) rotate(36deg);
}
@media screen and (max-width: 767px) {
  .wrap__title::after {
    -webkit-transform: translateY(-48%) rotate(38deg);
            transform: translateY(-48%) rotate(38deg);
  }
}
.wrap__title::first-letter {
  color: #cb0132;
}

.condition__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-block: 30px;
}
@media screen and (max-width: 767px) {
  .condition__list {
    margin-block: 20px;
    gap: 20px;
  }
}
.condition__item {
  width: 100%;
  min-height: 381px;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 20px 10px;
  position: relative;
}
.condition__item--half {
  max-width: calc(50% - 15px);
  min-height: 362px;
}
@media screen and (max-width: 767px) {
  .condition__item--half {
    max-width: 100%;
    min-height: 289px;
  }
}
.condition__num {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  font: 700 3rem "Roboto", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .condition__num {
    width: 40px;
    height: 40px;
    font-size: 23px;
    position: relative;
    top: unset;
    left: unset;
    margin: 0 auto;
  }
}
.condition__num::before {
  content: "";
  width: 49px;
  height: 50px;
  background: url("./public/img/num-deco.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .condition__num::before {
    width: 39px;
    height: 40px;
  }
}
.condition__icon {
  display: block;
  margin: 34px auto 30px;
}
@media screen and (max-width: 767px) {
  .condition__icon {
    margin: 20px auto;
  }
}
@media screen and (max-width: 767px) {
  .condition__icon--01 {
    width: 80px;
  }
}
.condition__icon--02 {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .condition__icon--02 {
    width: 80px;
    margin-bottom: 20px;
  }
}
.condition__icon--03 {
  margin-top: 20px;
}
.condition__desc {
  font-weight: 500;
  line-height: 1.6666666667em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .condition__desc {
    line-height: 2em;
  }
}
.condition__note-list {
  /* counter-reset: noteNum; */
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .condition__note-list {
    margin-bottom: 40px;
  }
}
.condition__note {
  display: block;
  /* counter-increment: noteNum; */
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .condition__note {
    padding-left: 26px;
  }
}
.condition__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.condition__btn-wrap {
  width: 100%;
  max-width: 660px;
  position: relative;
  margin: 0 auto 10px;
}
.condition__btn-wrap::before {
  content: "";
  width: 29px;
  height: 29px;
  background: url("./public/img/icons/sparkle01.svg") center/cover no-repeat;
  position: absolute;
  left: -29px;
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  .condition__btn-wrap::before {
    width: 23px;
    height: 23px;
    left: 0;
    bottom: -32px;
  }
}
.condition__btn-wrap::after {
  content: "";
  width: 50px;
  height: 41px;
  background: url("./public/img/icons/sparkle02.svg") center/cover no-repeat;
  position: absolute;
  top: -20px;
  right: -25px;
}
@media screen and (max-width: 767px) {
  .condition__btn-wrap::after {
    width: 40px;
    height: 32px;
    top: -32px;
    right: -2px;
  }
}

.bubble {
  width: 100%;
  min-height: 75px;
  background-color: #cb0132;
  border-radius: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 20px auto 34px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bubble {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .bubble {
    max-width: 315px;
    min-height: 132px;
    border-radius: 66px;
    font-size: 18px;
    line-height: 1.6666666667em;
    text-align: center;
  }
}
.bubble::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #cb0132;
  position: absolute;
  left: 50%;
  bottom: -14px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .bubble::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 16px solid #cb0132;
  }
}

.block:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .block:not(:last-child) {
    margin-bottom: 40px;
  }
}
.block--border {
  border-bottom: 2px solid #ddd;
  padding-bottom: 40px;
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .block--border {
    padding-bottom: 20px;
    margin-bottom: 20px !important;
  }
}
.block__banner {
  width: 100%;
  max-width: 900px;
  height: 79px;
  background: url("./public/img/banner.svg") center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 500 3rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) and (max-width: 1050px) {
  .block__banner {
    height: 75px;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .block__banner {
    font-size: 20px;
    height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .block__banner {
    height: 87px;
    background-image: url("./public/img/banner-sp.svg");
    font-size: 18px;
    line-height: 1.6666666667em;
    text-align: center;
    margin-bottom: 15px;
  }
}

.note {
  margin-top: 20px;
}
.note__wrap {
  background-color: #ddd;
  border-radius: 3px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.7391304348em;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .note__wrap {
    font-size: 16px;
    line-height: 1.75em;
    padding: 15px 10px;
  }
}
.note__text {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .note__text {
    padding-left: 16px;
  }
}
.note__text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.precaution__wrap {
  padding: 40px 37px;
}
@media screen and (max-width: 767px) {
  .precaution__wrap {
    padding: 30px 15px;
  }
}
.precaution__subhead {
  display: block;
  margin-block: 30px 20px;
}
@media screen and (max-width: 767px) {
  .precaution__subhead {
    margin-block: 20px;
  }
}
.precaution__subhead.fs16 {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .precaution__subhead.fs16 {
    font-size: 14px;
  }
}
.precaution__subhead.mb5 {
  margin-block: 0 5px;
}
.precaution__item:not(:last-child) {
  margin-bottom: 30px;
}
.precaution__title {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .precaution__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.precaution__inner-item {
  font-size: 1.6rem;
  line-height: 2em;
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .precaution__inner-item {
    font-size: 14px;
  }
}
.precaution__inner-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.precaution__inner-wrap:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .precaution__inner-wrap:not(:last-child) {
    margin-bottom: 20px;
  }
}
.precaution__link {
  font-size: 1.6rem;
  color: #255cfc;
  text-decoration: underline;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .precaution__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .about__wrap {
    padding: 30px 15px !important;
  }
}
.about__subhead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  position: relative;
  padding-inline: 35px;
}
@media screen and (max-width: 767px) {
  .about__subhead {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/* .about__subhead::before, .about__subhead::after {
  content: "";
  width: 3px;
  height: 26px;
  background-color: #171717;
  border-radius: 1.5px;
  position: absolute;
  top: 12px;
}
@media screen and (max-width: 767px) {
  .about__subhead::before, .about__subhead::after {
    height: 37px;
  }
}
.about__subhead::before {
  left: 15px;
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
}
@media screen and (max-width: 767px) {
  .about__subhead::before {
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
  }
}
.about__subhead::after {
  right: 15px;
  -webkit-transform: rotate(42deg);
          transform: rotate(42deg);
}
@media screen and (max-width: 767px) {
  .about__subhead::after {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
} */
.about__block {
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 30px 15px;
}
@media screen and (max-width: 767px) {
  .about__block {
    border-radius: 15px;
  }
}
.about__block:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about__block:not(:last-child) {
    margin-bottom: 30px;
  }
}
.about__contact-text {
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__contact-text {
    font-size: 14px;
  }
}
.about__contact-text.fs23 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .about__contact-text.fs23 {
    font-size: 16px;
  }
}
.about__contact-text.mb5 {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .about__contact-text--left {
    text-align: left;
    margin-top: 15px;
  }
}
.about__contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
@media screen and (max-width: 767px) {
  .about__contact-wrap {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.about__contact-wrap.mb10 {
  margin-bottom: 10px;
}
.about__contact-wrap.mb20 {
  margin-bottom: 20px;
}
.about__contact-icon {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .about__contact-icon {
    width: 30px;
    height: 30px;
  }
}
.about__contact-num {
  font: 700 6rem "Roboto", sans-serif;
  color: #cb0132;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .about__contact-num {
    font-size: 35px;
    letter-spacing: 0.02em;
  }
}
.about__contact-mail {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (max-width: 767px) {
  .about__contact-mail {
    font-size: 16px;
  }
}
.about__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 20px;
    line-height: 1.8em;
    margin-bottom: 15px;
    text-align: center;
  }
}
.about__title--sm {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .about__title--sm {
    font-size: 16px;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 767px) {
  .about__title--03::before {
    left: 20px !important;
  }
}
.about__title--sm::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 9px solid #171717;
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}
@media screen and (max-width: 767px) {
  .about__title--sm::before {
    top: 73%;
    -webkit-transform: translateY(-27%);
            transform: translateY(-27%);
    border-top: 8px solid #171717;
  }
}
.about__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 6px;
}
.about__logo.a-center {
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  .about__logo--01 {
    width: 94px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about__logo--02 {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about__logo--03 {
    width: 138px;
    height: 40px;
  }
}
.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__col {
  width: 50%;
  min-height: 191px;
}
@media screen and (max-width: 1024px) {
  .about__col {
    width: 100%;
  }
}
.about__col:not(:last-child) {
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .about__col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about__btn {
    height: 70px;
    border-radius: 35px;
  }
}

.overflow {
  overflow: hidden;
}

.inline-block {
  display: inline-block;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sm {
  display: none;
}
@media screen and (min-width: 1025px) and (max-width: 1050px) {
  .sm {
    display: block;
  }
}

.bold {
  font-weight: 700;
}

.pink {
  color: #cb0132;
}

@media screen and (max-width: 767px) {
  .sp-center {
    text-align: center;
  }
}