@charset "UTF-8";
body {
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

span,
a,
button {
  display: inline-block;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.c-button-contact {
  display: inline-block;
  border-radius: 50px;
  padding: 15px 20px;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
          box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
  background: #ff7501;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-button-contact {
    padding: 17.5px 27.5px;
    -webkit-box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px ) {
  .c-button-contact {
    padding: 20px 45px;
    -webkit-box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
    font-size: 40px;
  }
}
@media (any-hover: hover) {
  .c-button-contact:hover {
    opacity: 0.7;
  }
}

.c-button-note {
  display: inline-block;
  border-radius: 50px;
  padding: 15px 20px;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
          box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
  background: #57cebc;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-button-note {
    padding: 17.5px 27.5px;
    -webkit-box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px ) {
  .c-button-note {
    padding: 20px 45px;
    -webkit-box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
    font-size: 40px;
  }
}
@media (any-hover: hover) {
  .c-button-note:hover {
    opacity: 0.7;
  }
}

.header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.header__inner {
  margin-inline: auto;
  padding: 5px 12px;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    padding: 10px 26px;
  }
}
@media screen and (min-width: 1024px ) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    padding: 15px 40px;
  }
}

.header__logo {
  position: relative;
  padding-left: 40px;
  font-family: "Noto Serif JP";
  font-size: 16px;
  line-height: 2.5;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  .header__logo {
    padding-left: 45px;
    font-size: 18px;
    line-height: 2.25;
  }
}
@media screen and (min-width: 1024px ) {
  .header__logo {
    padding-left: 50px;
    font-size: 20px;
    line-height: 2;
  }
}
.header__logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/header_logo.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .header__logo::before {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1024px ) {
  .header__logo::before {
    width: 50px;
    height: 50px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1024px ) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.header__list li a {
  font-weight: 500;
  letter-spacing: 0.32px;
}
@media (any-hover: hover) {
  .header__list li a:hover {
    opacity: 0.6;
  }
}

.header__btn {
  position: relative;
  padding-block: 4px;
  padding-left: 63px;
  padding-right: 23px;
  font-size: 20px;
}
.header__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url(../img/header_icon_mail.webp) no-repeat center center/contain;
}

.drawer__button {
  position: fixed;
  z-index: 102;
  top: 15px;
  right: 20px;
  width: 34px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .drawer__button {
    top: 20px;
    right: 40px;
  }
}
@media screen and (min-width: 1024px ) {
  .drawer__button {
    display: none;
  }
}

.drawer__button--bar {
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background: #111111;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__button.js-show .drawer__button--bar:nth-of-type(1) {
  rotate: 35deg;
  translate: 0 8.5px;
}
.drawer__button.js-show .drawer__button--bar:nth-of-type(2) {
  display: none;
}
.drawer__button.js-show .drawer__button--bar:nth-of-type(3) {
  rotate: -35deg;
  translate: 0 -9.5px;
}

.drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}
@media screen and (min-width: 1024px ) {
  .drawer {
    display: none;
  }
}

.drawer__nav {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 96px 69px;
  padding-right: 27px;
  text-align: right;
}

.drawer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-bottom: 40px;
  text-align: right;
}
.drawer__nav-list li a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
@media (any-hover: hover) {
  .drawer__nav-list li a:hover {
    opacity: 0.6;
  }
}

.drawer__nav-button {
  padding: 15px 20px;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
          box-shadow: 2px 2px 2px 0 rgba(17, 17, 17, 0.3);
  font-size: 20px;
}

.fv {
  width: 100%;
  height: 900px;
  margin-top: 50px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#042871), to(#4c95df));
  background-image: linear-gradient(#042871 0%, #4c95df 100%);
}
@media screen and (min-width: 768px) {
  .fv {
    height: 1240px;
    margin-top: 60px;
    padding-top: 0px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv {
    height: 790px;
    margin-top: 70px;
    padding-top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    height: 845px;
  }
}

.fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px ) {
  .fv__inner {
    max-width: 1440px;
  }
}

.fv__back {
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fv__back-upper-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 141px;
  height: 206px;
  background: url(../img/fv_img_sp-back_upper-left.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__back-upper-left {
    width: 211.5px;
    height: 309px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__back-upper-left {
    top: -394px;
    left: -460px;
    width: 1008.73px;
    height: 765.13px;
    background: url(../img/fv_img_pc-back_upper-left.webp) no-repeat center center/contain;
  }
}

.fv__back-upper-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 234px;
  height: 255px;
  background: url(../img/fv_img_sp-back_upper-right.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__back-upper-right {
    width: 351px;
    height: 382.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__back-upper-right {
    top: -300px;
    right: -280px;
    width: 673.45px;
    height: 502.05px;
    background: url(../img/fv_img_pc-back_upper-right.webp) no-repeat center center/contain;
  }
}

.fv__back-lower-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 281px;
  background: url(../img/fv_img_sp-back_lower-right.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__back-lower-right {
    width: 270px;
    height: 421.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__back-lower-right {
    bottom: -450px;
    right: -300px;
    width: 908.9px;
    height: 1129.21px;
    background: url(../img/fv_img_pc-back_lower-right.webp) no-repeat center center/contain;
  }
}

.fv__back-lower-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 281px;
  background: url(../img/fv_img_sp-back_lower-left.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__back-lower-left {
    width: 270px;
    height: 421.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__back-lower-left {
    bottom: -390px;
    left: -350px;
    width: 877.73px;
    height: 813.94px;
    background: url(../img/fv_img_pc-back_lower-left.webp) no-repeat center center/contain;
  }
}

.fv__photo-wrapper {
  position: absolute;
  top: 218px;
  right: -40px;
  z-index: -1;
  width: 277px;
  height: 339px;
}
@media screen and (min-width: 768px) {
  .fv__photo-wrapper {
    top: 284px;
    right: -10px;
    width: 441px;
    height: 516px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__photo-wrapper {
    top: 30px;
    right: -32px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__photo-wrapper {
    top: -90px;
    right: -32px;
    width: 561px;
    height: 674px;
  }
}

.fv__photo-lawyer {
  position: absolute;
  top: 0px;
  left: 112px;
  width: 149.977324px;
  height: 149.977324px;
  background: url(../img/fv_photo_lawyer.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__photo-lawyer {
    top: 0px;
    left: 169px;
    width: 224.826px;
    height: 224.826px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__photo-lawyer {
    top: 0px;
    left: 222px;
    width: 299.954648px;
    height: 299.954648px;
  }
}

.fv__photo-woman {
  position: absolute;
  top: 61px;
  left: 0px;
  width: 183.472156px;
  height: 183.472156px;
  background: url(../img/fv_photo_woman.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__photo-woman {
    top: 93px;
    left: 0px;
    width: 275.73px;
    height: 275.73px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__photo-woman {
    top: 123px;
    left: 0px;
    width: 366.944312px;
    height: 366.944312px;
  }
}

.fv__photo-man {
  position: absolute;
  top: 155px;
  left: 96px;
  width: 183.472156px;
  height: 183.472156px;
  background: url(../img/fv_photo_man.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__photo-man {
    top: 239px;
    left: 143px;
    width: 275.73px;
    height: 275.73px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__photo-man {
    top: 311px;
    left: 192px;
    width: 366.944312px;
    height: 366.944312px;
  }
}

.fv__content-wrapper {
  position: absolute;
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
}
@media screen and (min-width: 768px) {
  .fv__content-wrapper {
    top: 72px;
    max-width: 700px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__content-wrapper {
    top: 72px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 1440px;
    padding-inline: 30px;
  }
}

.fv__lead-sub {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px ) {
  .fv__lead-sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.fv__lead-sub span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .fv__lead-sub span {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__lead-sub span {
    font-size: 30px;
  }
}
.fv__lead-sub span:nth-of-type(1) {
  padding-left: 2px;
  padding-right: 0px;
}
@media screen and (min-width: 768px) {
  .fv__lead-sub span:nth-of-type(1) {
    padding-left: 5px;
    padding-right: 7px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__lead-sub span:nth-of-type(1) {
    padding-left: 10px;
    padding-right: 0px;
  }
}
.fv__lead-sub span:nth-of-type(2) {
  padding-left: 12px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .fv__lead-sub span:nth-of-type(2) {
    padding-left: 19px;
    padding-right: 14px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__lead-sub span:nth-of-type(2) {
    padding-left: 0px;
    padding-right: 20px;
  }
}

.fv__lead-main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 21px;
  background-color: #ffffff;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .fv__lead-main {
    margin-top: 25.5px;
    font-size: 33.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__lead-main {
    margin-top: 30px;
    font-size: 45px;
  }
}

.fv__title-main {
  margin-top: 8px;
  margin-left: 16px;
  font-family: "Noto Serif JP";
  color: #ffffff;
  font-size: 35px;
}
@media screen and (min-width: 768px) {
  .fv__title-main {
    margin-top: 30px;
    margin-left: 0px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__title-main {
    margin-top: 19px;
    margin-left: 0px;
    font-size: 65px;
  }
}

.fv__title-sub {
  margin-top: 258px;
  margin-left: 16px;
  font-family: "Noto Serif JP";
  color: #ffffff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .fv__title-sub {
    margin-top: 370px;
    margin-left: 0px;
    font-size: 23px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__title-sub {
    margin-top: 30px;
    font-size: 28px;
  }
}
.fv__title-sub .font-size {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .fv__title-sub .font-size {
    font-size: 37px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__title-sub .font-size {
    font-size: 48px;
  }
}

.fv__badge-wrapper {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .fv__badge-wrapper {
    margin-top: 23px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__badge-wrapper {
    margin-left: 0px;
  }
}

.fv__badge {
  width: 120px;
  height: 117px;
  background: url(../img/fv_img_badge.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv__badge {
    width: 170px;
    height: 166px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badge {
    width: 220px;
    height: 215px;
  }
}

.fv__badge-text {
  color: #ffffff;
  text-align: center;
}

.fv__badge-text--career {
  position: relative;
  top: 26px;
  left: 2px;
}
@media screen and (min-width: 768px) {
  .fv__badge-text--career {
    top: 42px;
    left: 1px;
    font-size: 20px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badge-text--career {
    top: 55px;
    left: 4px;
    font-size: 24px;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .fv__badge-text--career span {
    font-weight: 600;
  }
}
.fv__badge-text--career span + span {
  margin-left: 1px;
}
.fv__badge-text--career .budge-font-size-l {
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: 0px;
}
@media screen and (min-width: 768px) {
  .fv__badge-text--career .budge-font-size-l {
    font-size: 36px;
    font-weight: 600;
    line-height: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badge-text--career .budge-font-size-l {
    font-size: 48px;
  }
}

.fv__badge-text--question {
  position: relative;
  top: 28px;
  left: 3px;
}
@media screen and (min-width: 768px) {
  .fv__badge-text--question {
    top: 46px;
    left: 3px;
    font-size: 20px;
    font-weight: 600;
  }
  .fv__badge-text--question span {
    font-size: 22px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badge-text--question {
    top: 58px;
    left: 5px;
    font-size: 24px;
  }
  .fv__badge-text--question span {
    font-size: 30px;
  }
}

.fv__badge-text--online {
  position: relative;
  top: 31px;
  left: 3px;
}
@media screen and (min-width: 768px) {
  .fv__badge-text--online {
    top: 46px;
    left: 3px;
    font-size: 20px;
    font-weight: 600;
  }
  .fv__badge-text--online span {
    font-size: 22px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badge-text--online {
    top: 59px;
    left: 5px;
    font-size: 24px;
  }
  .fv__badge-text--online span {
    font-size: 30px;
  }
}

.fv__badge-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px ) {
  .fv__badge-button-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 40px;
  }
}

.fv__button {
  position: relative;
  bottom: 14px;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__button {
    margin-top: 14px;
  }
}
@media screen and (min-width: 1440px ) {
  .fv__button {
    position: relative;
    bottom: 16px;
  }
}
@media screen and (min-width: 1024px ) {
  .fv__button a {
    padding: 18px 34px;
    -webkit-box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 3px 3px 3px 0 rgba(17, 17, 17, 0.3);
    font-size: 32px;
  }
}
@media screen and (min-width: 1300px) {
  .fv__button a {
    padding: 20px 45px;
    -webkit-box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
            box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
    font-size: 40px;
  }
}

.problem {
  width: 100%;
  padding-top: 39px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4990da), color-stop(25%, #4c96de), to(#b9dfff));
  background-image: linear-gradient(#4990da 0%, #4c96de 25%, #b9dfff 100%);
}
@media screen and (min-width: 768px) {
  .problem {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem {
    padding-top: 100px;
  }
}

.problem__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 375px;
  padding-bottom: 200px;
  padding-inline: 12px;
}
@media screen and (min-width: 768px) {
  .problem__inner {
    max-width: 700px;
    padding-bottom: 312px;
    padding-inline: 28px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__inner {
    max-width: 1300px;
    padding-bottom: 340px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .problem__inner {
    padding-bottom: 200px;
  }
}

.problem__title {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .problem__title {
    font-size: 29px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__title {
    font-size: 40px;
  }
}

.problem__text-wrapper {
  width: 100%;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .problem__text-wrapper {
    margin-top: 62.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__text-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 85px;
    padding-inline: 44px;
    border-radius: 30px;
    background-color: #ffffff;
  }
}

.problem__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 10px;
  color: #11334e;
  font-weight: 500;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .problem__text {
    padding: 30px;
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__text {
    padding: 0px;
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .problem__text:nth-of-type(1) {
    margin-left: 70px;
  }
}
.problem__text:nth-of-type(2) {
  margin-left: auto;
}
.problem__text:nth-of-type(4) {
  margin-left: auto;
}

.problem__text + .problem__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .problem__text + .problem__text {
    margin-top: 23px;
  }
}
@media screen and (min-width: 768px) {
  .problem__text + .problem__text {
    margin-top: 26px;
  }
}

.problem__image-wrapper {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  margin-inline: auto;
}

.problem__image-bubble {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 109px;
  height: 46.659px;
  background: url(../img/problem_img_bubble.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .problem__image-bubble {
    top: 0px;
    right: 30px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__image-bubble {
    top: 142px;
    right: calc(50% - 284px);
    width: 143px;
    height: 81.758px;
  }
}
@media screen and (min-width: 1300px) {
  .problem__image-bubble {
    top: 270px;
  }
}

.problem__image-human {
  width: 135px;
  height: 195px;
  margin-inline: auto;
  background: url(../img/problem_img_human.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .problem__image-human {
    width: 215px;
    height: 310.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .problem__image-human {
    width: 295px;
    height: 426px;
  }
}

.strength {
  position: relative;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f8ff), color-stop(96.93%, #f0f8ff), to(#fff));
  background-image: linear-gradient(#f0f8ff 0%, #f0f8ff 96.93%, #fff 100%);
}
@media screen and (min-width: 768px) {
  .strength {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .strength {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.strength__back-triangle {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 100%;
  background-color: #b9dfff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.strength__inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .strength__inner {
    max-width: 1063px;
    padding-inline: 40px;
  }
}

.strength__title {
  width: 100%;
  max-width: 570px;
  margin-inline: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .strength__title {
    max-width: 800px;
    font-size: 29px;
    font-weight: 700;
    line-height: normal;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__title {
    max-width: 900px;
    font-size: 40px;
  }
}
@media screen and (min-width: 430px) {
  .strength__title .u-hidden-tab {
    display: none;
  }
}

.strength__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 570px;
  margin-top: 10px;
  margin-inline: auto;
  padding-inline: 20px;
  line-height: 1.38;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .strength__lead {
    max-width: 100%;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__lead {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
  }
}

.strength__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.strength__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 570px;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-inline: 20px;
  border-radius: 0 40px 0 0;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .strength__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 900px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 10px;
    border-radius: 0 60px 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card {
    max-width: 980px;
    padding-left: 50px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .strength__card-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.strength__card-title {
  font-weight: 700;
  line-height: 1.37;
}
@media screen and (min-width: 768px) {
  .strength__card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card-title {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
  }
}

.strength__card-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .strength__card-text {
    font-size: 18px;
    line-height: 1.55;
  }
}

.strength__card-image--verbalize {
  margin-inline: auto;
  width: 200px;
  height: 150px;
  background: url(../img/strength_img_verbalize.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .strength__card-image--verbalize {
    width: 274.87px;
    height: 206.15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card-image--verbalize {
    width: 349.739px;
    height: 262.304px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.strength__card-image--question {
  width: 179.124px;
  height: 134.343px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-inline: auto;
  background: url(../img/strength_img_question.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .strength__card-image--question {
    width: 274.87px;
    height: 206.15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card-image--question {
    width: 349.739px;
    height: 262.304px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.strength__card-image--root {
  margin-inline: auto;
  width: 200px;
  height: 150px;
  background: url(../img/strength_img_root.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .strength__card-image--root {
    width: 275.48px;
    height: 206.61px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card-image--root {
    width: 350.965px;
    height: 263.224px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.strength__card-image--plan {
  margin-inline: auto;
  width: 199.925px;
  height: 149.944px;
  background: url(../img/strength_img_plan.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .strength__card-image--plan {
    width: 274.83px;
    height: 206.12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px ) {
  .strength__card-image--plan {
    width: 349.739px;
    height: 262.304px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.instructor {
  width: 100%;
  background-color: #ffffff;
}

.instructor__inner {
  width: 100%;
  max-width: 953px;
  margin-inline: auto;
  padding-top: 50px;
  padding-inline: 12px;
}
@media screen and (min-width: 768px) {
  .instructor__inner {
    padding-top: 75px;
    padding-inline: 26px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__inner {
    padding-top: 100px;
    padding-inline: 40px;
  }
}

.instructor__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructor__title {
    font-size: 29px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__title {
    font-size: 40px;
  }
}

.instructor__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .instructor__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin-top: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__profile {
    gap: 50px;
    margin-top: 100px;
  }
}

.instructor__image {
  width: 99px;
  height: 125px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .instructor__image {
    width: 247.5px;
    height: 312.5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__image {
    width: 308px;
    height: 389px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .instructor__pc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__pc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}

.instructor__name {
  position: relative;
  margin-bottom: 24px;
  padding-left: 13px;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .instructor__name {
    margin-bottom: 0px;
    padding-left: 29px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__name {
    padding-left: 24px;
    font-size: 30px;
  }
}
.instructor__name::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 13.063px;
  height: 16.031px;
  color: #111111;
  background: url(../img/instructor_icon_tomoshibi.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .instructor__name::before {
    bottom: 5px;
    left: 10px;
    width: 16.844px;
    height: 20.672px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__name::before {
    bottom: 6px;
    left: 0;
    width: 20.625px;
    height: 25.313px;
  }
}
.instructor__name::after {
  content: "TOMOSHIBI";
  position: absolute;
  bottom: -24px;
  left: 0;
  color: #9d8989;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .instructor__name::after {
    bottom: 1px;
    left: 140px;
    font-size: 19px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__name::after {
    bottom: 1px;
    left: 160px;
    font-size: 20px;
  }
}

.instructor__career-wrapper {
  width: 253px;
  margin-top: 10px;
  margin-inline: auto;
  padding-block: 1px;
  padding-left: 1px;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #111111;
}
@media screen and (min-width: 768px) {
  .instructor__career-wrapper {
    width: 380px;
    padding-block: 12px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__career-wrapper {
    width: 457px;
    padding-block: 12px;
  }
}

.instructor__career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  .instructor__career {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1px;
    font-size: 20px;
    line-height: 1.45;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__career {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2px;
    font-size: 24px;
    line-height: 1.33;
  }
}

.instructor__text {
  width: 100%;
  max-width: 560px;
  margin-top: 40px;
  margin-inline: auto;
  padding-inline: 19px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .instructor__text {
    margin-top: 15px;
    padding-inline: 22px;
    font-size: 17px;
    line-height: 1.775;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.55;
  }
}

.instructor__message {
  position: relative;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 55px;
  margin-inline: auto;
  padding-block: 15px;
  padding-inline: 19px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .instructor__message {
    padding-block: 22.5px;
    padding-inline: 40px;
    font-size: 16px;
    line-height: 1.86;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor__message {
    padding-block: 30px;
    padding-inline: 60px;
    font-size: 18px;
    line-height: 1.72;
  }
}
.instructor__message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 47px;
  height: 47px;
  border-top: 1px solid #111111;
  border-left: 1px solid #111111;
}
.instructor__message::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 47px;
  height: 47px;
  border-bottom: 1px solid #111111;
  border-right: 1px solid #111111;
}

.instructor-note {
  padding-block: 100px;
  background-color: #ffffff;
}

.instructor-note__lead {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
  padding-inline: 30px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .instructor-note__lead {
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
  }
}

.instructor-note__lists-wrapper {
  width: 100%;
  max-width: 1024px;
  margin-top: 40px;
  margin-inline: auto;
  padding-inline: 15px;
}

.instructor-note__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px ) {
  .instructor-note__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0px;
  }
}

.instructor-note__list {
  max-width: 620px;
  margin-inline: auto;
  padding-inline: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1024px ) {
  .instructor-note__list {
    max-width: 33%;
  }
}
@media (any-hover: hover) {
  .instructor-note__list a:hover {
    opacity: 0.7;
  }
}

.instructor-note__img {
  width: 100%;
  margin-inline: auto;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 334/175;
  -webkit-box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
          box-shadow: 4px 4px 4px 0 rgba(17, 17, 17, 0.3);
}
.instructor-note__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.instructor-note__title {
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructor-note__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .instructor-note__title {
    margin-top: 18px;
  }
}

.rss-error {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rss-error {
    font-size: 20px;
  }
}
.rss-error a {
  font-size: 20px;
  color: blue;
  text-decoration: underline;
}

.plan {
  width: 100%;
  background-color: #f0f8ff;
}

.plan__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .plan__inner {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-inline: 40px;
  }
}

.plan__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan__title {
    font-size: 29px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__title {
    font-size: 40px;
  }
}

.plan__cards {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .plan__cards {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__cards {
    padding-top: 100px;
  }
}

.plan__card {
  width: 100%;
  max-width: 600px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-inline: 8px;
  border-radius: 15px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .plan__card {
    width: 100%;
    max-width: 800px;
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__card {
    width: 100%;
    max-width: 960px;
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.plan__card-title {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan__card-title {
    font-size: 27px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__card-title {
    font-size: 36px;
    font-weight: 600;
  }
}
.plan__card-title::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 3.5px;
  left: 0.5px;
  width: 100%;
  height: 2px;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .plan__card-title::before {
    height: 6px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__card-title::before {
    height: 10px;
  }
}

.plan__card-title--full-support::before {
  background: rgba(255, 215, 0, 0.8);
}

.plan__card-title--consulting::before {
  background: rgba(201, 202, 202, 0.8);
}

.plan__card-title--correction::before {
  background: rgba(225, 171, 114, 0.8);
}

.plan__card-description {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__card-description {
    margin-top: 16px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__card-description {
    margin-top: 17px;
    font-size: 20px;
  }
}

.plan__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .plan__prices {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 500px;
    margin-inline: auto;
  }
}

.plan__prices--correction {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .plan__card-title-sub--correction {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__card-title-sub--correction {
    font-size: 20px;
  }
}

.plan__price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  margin-inline: auto;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .plan__price {
    margin-top: 40px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__price {
    margin-top: 50px;
    font-size: 20px;
  }
}

.plan__price--correction {
  margin-top: 0;
}

.plan__price-number {
  position: relative;
  top: 2px;
  font-size: 34px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan__price-number {
    font-size: 37px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__price-number {
    font-size: 40px;
  }
}

.plan__price-colon {
  position: relative;
  top: 2px;
  font-size: 30px;
  font-weight: 700;
}

.plan__lists-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 375px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 14px;
}
@media screen and (min-width: 768px) {
  .plan__lists-wrapper {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.7777777778%;
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__lists-wrapper {
    gap: 40px;
  }
}

.plan__service-wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .plan__service-wrapper {
    margin-top: 0px;
  }
}

.plan__service-list-title {
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  .plan__service-list-title {
    font-size: 17px;
    line-height: 1.47;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__service-list-title {
    font-size: 18px;
    line-height: 1.38;
  }
}

.plan__service-list {
  position: relative;
  padding-left: 1.5em;
  font-size: 14px;
  line-height: 1.78;
}
@media screen and (min-width: 768px) {
  .plan__service-list {
    font-size: 17px;
    line-height: 1.58;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__service-list {
    font-size: 18px;
    line-height: 1.38;
  }
}
.plan__service-list::before {
  content: "・";
  position: absolute;
  left: 3px;
}

.plan__recommend-wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .plan__recommend-wrapper {
    margin-top: 0px;
  }
}

.plan__recommend-list-title {
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  .plan__recommend-list-title {
    font-size: 17px;
    line-height: 1.47;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__recommend-list-title {
    font-size: 18px;
    line-height: 1.38;
  }
}

.plan__recommend-list {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.78;
}
@media screen and (min-width: 768px) {
  .plan__recommend-list {
    font-size: 17px;
    line-height: 1.58;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__recommend-list {
    font-size: 18px;
    line-height: 1.38;
  }
}
.plan__recommend-list::before {
  content: "";
  position: absolute;
  top: 6.5px;
  left: 0;
  width: 18.751px;
  height: 13.501px;
  background: url(../img/plan_icon_check.webp) no-repeat center center/contain;
}

.plan__note-lead {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__note-lead {
    margin-top: 65px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__note-lead {
    margin-top: 80px;
    font-size: 20px;
  }
}

.plan__note-button {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__note-button {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__note-button {
    margin-top: 25px;
  }
}

.plan__suggestion {
  margin-top: 30px;
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .plan__suggestion {
    margin-top: 40px;
    padding-inline: 0px;
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__suggestion {
    margin-top: 50px;
    font-size: 20px;
    text-align: center;
  }
}

.plan__contact-lead {
  margin-top: 20px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__contact-lead {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__contact-lead {
    font-size: 20px;
  }
}

.plan__contact-button {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__contact-button {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px ) {
  .plan__contact-button {
    margin-top: 25px;
  }
}

.step {
  width: 100%;
  background-color: #f0f8ff;
}

.step__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .step__inner {
    padding-top: 75px;
    padding-bottom: 75px;
    padding-inline: 27.5px;
  }
}
@media screen and (min-width: 1024px ) {
  .step__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-inline: 40px;
  }
}

.step__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__title {
    font-size: 29px;
  }
}
@media screen and (min-width: 1024px ) {
  .step__title {
    font-size: 40px;
  }
}

.step__step-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 58px;
  width: 100%;
  max-width: 600px;
  margin-top: 50px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 20px;
  border-radius: 50px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .step__step-cards {
    max-width: 800px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px ) {
  .step__step-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.1944444444%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 100%;
    padding-inline: 40px;
  }
}

.step__card {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px ) {
  .step__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.step__card:nth-of-type(2)::before, .step__card:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: url(../img/step_img_arrow-under.webp) no-repeat center center/contain;
}
@media screen and (min-width: 1024px ) {
  .step__card:nth-of-type(2)::before, .step__card:nth-of-type(3)::before {
    top: 8px;
    left: -50px;
    width: 32px;
    height: 32px;
    background: url(../img/step_img_arrow-right.webp) no-repeat center center/contain;
  }
}

.step__card-no {
  color: #0d93fa;
  text-align: center;
  font-family: "Anonymous Pro";
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 4.8px;
}

.step__card-image--step1 {
  margin-top: 20px;
  margin-inline: auto;
  width: 173px;
  height: 130px;
  background: url(../img/step_img_step1.webp) no-repeat center center/contain;
}

.step__card-image--step2 {
  margin-top: 20px;
  margin-inline: auto;
  width: 173px;
  height: 130px;
  background: url(../img/step_img_step2.webp) no-repeat center center/contain;
}

.step__card-image--step3 {
  margin-top: 20px;
  width: 173px;
  height: 130px;
  margin-inline: auto;
  background: url(../img/step_img_step3.webp) no-repeat center center/contain;
}

.step__card-title {
  margin-top: 5px;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .step__card-title {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.step__card-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .step__card-text {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.step__button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__button {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .step__button {
    margin-top: 100px;
  }
}

.voice {
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#c4e8fe));
  background-image: linear-gradient(#ffffff 0%, #c4e8fe 100%);
}

.voice__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .voice__inner {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .voice__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-inline: 40px;
  }
}

.voice__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voice__title {
    font-size: 29px;
  }
}
@media screen and (min-width: 1024px ) {
  .voice__title {
    font-size: 40px;
  }
}

.voice__lead {
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__lead {
    margin-top: 25px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .voice__lead {
    margin-top: 40px;
    font-size: 20px;
  }
}

.voice__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 580px;
  margin-inline: auto;
  margin-top: 50px;
}
@media screen and (min-width: 1024px ) {
  .voice__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.7777777778%;
    max-width: 100%;
  }
}

.voice__card {
  padding-top: 40px;
  padding-bottom: 30px;
  padding-inline: 16px;
  border-radius: 20px;
  border: 1px solid #002d88;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .voice__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 45px;
    padding-bottom: 30px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1024px ) {
  .voice__card {
    max-width: 33%;
  }
}

.voice__card-name {
  position: relative;
  padding-left: 80px;
}
@media screen and (min-width: 768px) {
  .voice__card-name {
    padding-left: 87px;
    font-size: 18px;
  }
}
.voice__card-name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 70px;
}

.voice__card-name--harinezumi::before {
  content: "";
  background: url(../img/voice_img_harinezumi.webp) no-repeat center center/contain;
}

.voice__card-name--sk::before {
  content: "";
  background: url(../img/voice_img_sk.webp) no-repeat center center/contain;
}

.voice__card-name--chounsui::before {
  content: "";
  background: url(../img/voice_img_chounsui.webp) no-repeat center center/contain;
}

.voice__card-summary {
  margin-top: 25px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voice__card-summary {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
  }
}

.voice__card-text-wrapper {
  margin-top: 30px;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .voice__card-text-wrapper {
    margin-top: 40px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .voice__card-text {
    font-size: 18px;
    line-height: 1.33;
  }
}
.voice__card-text + .voice__card-text {
  margin-top: 1em;
}

.voice__card-button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__card-button {
    margin-top: auto;
  }
  .voice__card-button a {
    padding: 15px 20px;
    border-radius: 34px;
    -webkit-box-shadow: 2px 3px 2px 0 rgba(17, 17, 17, 0.25);
            box-shadow: 2px 3px 2px 0 rgba(17, 17, 17, 0.25);
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    background: #57cebc;
  }
}

.voice__lead-note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 580px;
  margin-top: 30px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .voice__lead-note {
    max-width: 100%;
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
  }
}

.voice__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__button {
    margin-top: 40px;
  }
}

.faq {
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c4e8fe), to(#ffffff));
  background-image: linear-gradient(#c4e8fe 0%, #ffffff 100%);
}

.faq__inner {
  max-width: 100%;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .faq__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-inline: 40px;
  }
}

.faq__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 29px;
  }
}
@media screen and (min-width: 1024px ) {
  .faq__title {
    font-size: 40px;
  }
}

.faq__box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .faq__box-wrapper {
    gap: 25px;
    max-width: 1200px;
    margin-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .faq__box-wrapper {
    gap: 30px;
    max-width: 1200px;
    margin-top: 90px;
  }
}

.faq-box {
  border-radius: 0 20px 0 0;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .faq-box {
    border-radius: 0 30px 0 0;
  }
}
.faq-box.is-open .faq-box__q .faq-box__q-toggle {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.faq-box__q {
  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;
  width: 100%;
  padding-block: 10px;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .faq-box__q {
    padding-inline: 30px;
  }
}

.faq-box__q-icon {
  margin-right: 10px;
  color: #ff7501;
  font-family: Keifont;
  line-height: 2.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq-box__q-icon {
    margin-right: 20px;
    font-size: 18px;
  }
}

.faq-box__q-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  color: #111111;
}
@media screen and (min-width: 768px) {
  .faq-box__q-text {
    font-size: 18px;
    color: #111111;
  }
}

.faq-box__q-toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url(../img/faq_icon_arrow.webp) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.faq-box__a {
  display: none;
}

.faq-box__a-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-inline: 10px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .faq-box__a-inner {
    padding-inline: 30px;
  }
}

.faq-box__a-icon {
  margin-right: 10px;
  color: #ff7501;
  font-family: Keifont;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq-box__a-icon {
    margin-right: 20px;
    font-size: 18px;
  }
}

.faq-box__a-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 26px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .faq-box__a-text {
    font-size: 18px;
  }
}

.faq__text {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__text {
    margin-top: 70px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .faq__text {
    margin-top: 90px;
    font-size: 20px;
  }
}

.contact {
  width: 100%;
  background-color: #ffffff;
}

.contact__inner {
  width: 100%;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1024px ) {
  .contact__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-inline: 40px;
  }
}

.contact__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 29px;
  }
}
@media screen and (min-width: 1024px ) {
  .contact__title {
    font-size: 40px;
  }
}

.contact__message-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact__message-wrapper {
    margin-top: 65px;
    max-width: 780px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px ) {
  .contact__message-wrapper {
    max-width: 100%;
    margin-top: 90px;
  }
}

.contact__message {
  padding-inline: 14px;
}
@media screen and (min-width: 768px) {
  .contact__message {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px ) {
  .contact__message {
    text-align: center;
    font-size: 20px;
  }
}
.contact__message + .contact__message {
  margin-top: 1em;
}

.contact__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 65px;
  }
}
@media screen and (min-width: 1024px ) {
  .contact__button {
    margin-top: 90px;
  }
}

.contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact__links {
    margin-top: 45px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 52px;
  }
}
@media screen and (min-width: 768px) {
  .contact__links {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 52px;
  }
}

.contact__link {
  position: relative;
  text-align: center;
  font-size: 14px;
}
@media (any-hover: hover) {
  .contact__link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .contact__link {
    font-size: 16px;
  }
}
.contact__link:nth-of-type(2)::before, .contact__link:nth-of-type(3)::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: -25px;
  width: 1px;
  height: 20px;
  -webkit-transform: scaleX(0.2);
          transform: scaleX(0.2);
  background-color: #111111;
}

.footer {
  width: 100%;
  background-color: #f0f8ff;
}

.footer__inner {
  width: 100%;
  margin-inline: auto;
  padding-top: 20px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 35px;
    padding-bottom: 21px;
  }
}
@media screen and (min-width: 1024px ) {
  .footer__inner {
    padding-top: 50px;
    padding-bottom: 26px;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__links {
    gap: 30px;
  }
}

@media (any-hover: hover) {
  .footer__link:hover {
    opacity: 0.6;
  }
}

.footer__link--note {
  width: 83.17px;
  height: 18.001px;
}
@media screen and (min-width: 768px) {
  .footer__link--note {
    width: 138.61px;
    height: 30px;
  }
}

.footer__link--x {
  width: 16.506px;
  height: 18.011px;
}
@media screen and (min-width: 768px) {
  .footer__link--x {
    width: 29px;
    height: 29px;
  }
}

.footer__copyright {
  margin-top: 16px;
  margin-inline: auto;
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 21px;
  }
}
@media screen and (min-width: 1024px ) {
  .footer__copyright {
    margin-top: 26px;
  }
}

@media screen and (max-width: 360px) {
  .u-hidden-xs {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

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

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

.u-highlight {
  position: relative;
  font-weight: inherit;
  font-size: inherit;
  z-index: 0;
}
.u-highlight::before {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.3em;
  z-index: -1;
  background-color: rgba(242, 255, 0, 0.65);
}
@media screen and (min-width: 768px) {
  .u-highlight::before {
    bottom: 0.1em;
    height: 0.3em;
  }
}

.u-bracket-left {
  margin-left: -0.4em;
  font-weight: inherit;
  font-size: inherit;
}

.u-bracket-right {
  margin-right: -0.4em;
  font-weight: inherit;
  font-size: inherit;
}

.u-nowrap {
  white-space: nowrap;
}