@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;
}

img {
  display: block;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

.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 {
  width: calc(100% - 200px);
  font-size: 1.6rem;
  line-height: 3.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
@media screen and (max-width: 1024px) {
  .section {
    width: calc(100% - 150px);
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .section {
    width: 100%;
  }
}
.section__head, .section__content {
  width: 65%;
  max-width: 1130px;
}
@media screen and (max-width: 1024px) {
  .section__head, .section__content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .section__head, .section__content {
    width: 90%;
  }
}
.section__head--wide, .section__content--wide {
  max-width: 1130px;
  width: 90%;
}
.section__head--full, .section__content--full {
  width: 100%;
  max-width: 100%;
}

.list-sq li {
  position: relative;
  padding-left: 38px;
}
@media screen and (max-width: 1024px) {
  .list-sq li {
    padding-left: 33.25px;
  }
}
.list-sq li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #fb77d6), color-stop(50%, #754dd1));
  background: linear-gradient(to bottom right, #fb77d6 50%, #754dd1 50%);
}
@media screen and (max-width: 1024px) {
  .list-sq li::before {
    top: 1.175rem;
    width: 15.75px;
  }
}

.title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 2rem;
  }
}

.title-bb {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-width: 26.4rem;
  border-block: 1px solid #fb77d6;
  padding-block: 5px;
  font: 700 2.4rem "Oswald", sans-serif;
  color: #fb77d6;
}
@media screen and (max-width: 1024px) {
  .title-bb {
    font-size: 2.1rem;
    min-width: 23rem;
  }
}
@media screen and (max-width: 767px) {
  .title-bb {
    font-size: 1.8rem;
    min-width: 20rem;
  }
}
.title-bb--full {
  width: 100%;
  text-align: center;
  color: #000;
}

.title-qt {
  letter-spacing: 0.04em;
  color: #fff;
  width: 100%;
  min-height: 100px;
  background-color: #fb77d6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.625em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .title-qt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .title-qt {
    min-height: 60px;
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
}
.title-qt::before {
  content: "";
  border: 20px solid transparent;
  border-top-color: #fb77d6;
  border-bottom-width: 0;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .title-qt::before {
    border-width: 15px 15px 0;
    bottom: -15px;
  }
}

.table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}
.table__scroll-text {
  display: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #754dd1;
}
@media screen and (max-width: 767px) {
  .table__scroll-text {
    display: block;
  }
}
.table__thead.align-left {
  text-align: left;
}
.table__thead-th {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  height: 40px;
}
.table__thead-th:first-child {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .table__thead-th:first-child {
    width: 47%;
  }
}
.table__tbody-tr {
  height: 1px;
}
.table__tbody-tr:first-child > * {
  padding-top: 15px;
}
.table__tbody-tr:nth-child(odd) .table__inner {
  background-color: #e1e4e6;
}
.table__tbody-tr:nth-child(odd) .table__inner,
.table__tbody-tr:nth-child(odd) .table__ctr {
  min-height: 4rem;
}
.table__thead-th, .table__inner {
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .table__thead-th, .table__inner {
    padding-inline: 1.4rem;
  }
}
.table__tbody-th, .table__tbody-td {
  height: inherit;
}
.table__tbody-th.primary-pink {
  color: #fff;
}
.table__tbody-th.primary-pink .table__inner {
  background-color: #fb77d6;
}
.table__tbody-td {
  font-weight: 500;
}
.table__inner {
  min-height: 7.1rem;
  height: 100%;
  padding-block: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 2.1rem;
}
@media screen and (max-width: 767px) {
  .table__inner {
    gap: 1.4rem;
  }
}
.table__inner--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.table-flow__thead-th:first-child {
  padding-left: 1.4rem;
}
.table-flow__tbody-th .table-flow__inner {
  padding: 0 0 0 1.4rem;
}
.table-flow__ctr {
  position: relative;
  width: 5.3rem;
  height: 100%;
  min-height: 7.1rem;
  background-color: #fb77d6;
  font: 700 3rem "Oswald", sans-serif;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .table-flow__ctr {
    font-size: 2.625rem;
  }
}
.table-flow__ctr::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 16px;
  background-color: #fb77d6;
}
.table-flow__ctr--last::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -27px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 26.5px 0;
  border-color: #fb77d6 transparent transparent;
}
.table-flow__ctr-num {
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.showcase {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1366px) {
  .showcase {
    gap: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .showcase {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .showcase {
    max-width: 45rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
.showcase__item {
  position: relative;
  overflow: hidden;
}
.showcase__item-text {
  margin-top: 1rem;
  font-weight: 700;
  line-height: 1.625em;
  text-align: center;
}
.showcase__item-overlay {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 344/100;
  font-size: 2rem;
  line-height: 1.6em;
  color: #fff;
  z-index: 1;
  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;
}
@media screen and (max-width: 1366px) {
  .showcase__item-overlay {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .showcase__item-overlay {
    font-size: 1.5rem;
  }
}
.showcase__item-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #754dd1), color-stop(62%, #fb77d6));
  background: linear-gradient(to left, #754dd1 0, #fb77d6 62%);
  opacity: 0.8;
  z-index: -1;
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .faq__list {
    gap: 2rem;
  }
}
.faq__item {
  width: 100%;
  background: #fff;
}
.faq__ques-content, .faq__ans-content {
  width: 100%;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .faq__ques-content, .faq__ans-content {
    padding-inline: 2rem;
  }
}
.faq__ques-text, .faq__ans-text {
  position: relative;
  width: 100%;
  max-width: 1010px;
  margin-inline: auto;
  padding-block: 2.25rem;
  padding-left: 2.4rem;
}
.faq__ques-text::before, .faq__ans-text::before {
  position: absolute;
  top: 2.25rem;
  left: 0;
  display: block;
  font: 600 2.4rem/1 "Oswald", sans-serif;
}
@media screen and (max-width: 1024px) {
  .faq__ques-text::before, .faq__ans-text::before {
    font-size: 2.1rem;
  }
}
.faq__ques {
  min-height: 70.5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__ques-text::before {
  content: "Q";
}
.faq__ans-text {
  border-top: 1px solid #707070;
}
.faq__ans-text::before {
  content: "A";
  color: #fb77d6;
}

.sns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sns__wrap {
  width: calc(100% - 200px);
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sns__wrap {
    width: 90%;
  }
}
.sns__list {
  width: 65%;
  gap: 20px;
  margin-top: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sns__list {
    width: calc(100% - 50px);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sns__list {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sns__item {
  width: 100%;
  height: 60px;
  text-align: center;
  border: 1px solid #fb77d6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sns__item {
    height: 50px;
    font-size: 14px;
  }
}
.sns__icon {
  width: 40px;
  position: absolute;
  bottom: 50%;
  left: 10px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 1024px) {
  .sns__icon {
    width: 30px;
  }
}

.box {
  width: 100%;
  padding: 3rem;
  border: 1px solid #fb77d6;
  background: transparent;
  -webkit-box-shadow: 3px 3px 0 0 #fb77d6;
          box-shadow: 3px 3px 0 0 #fb77d6;
  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;
}
.box--purple {
  border-color: #754dd1;
  -webkit-box-shadow: 3px 3px 0 0 #754dd1;
          box-shadow: 3px 3px 0 0 #754dd1;
}

.sf__first {
  padding-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .sf__first {
    padding-top: 4rem;
  }
}
.sf__head--underline {
  padding-bottom: 5rem;
  border-bottom: 1px solid #fb77d6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sf__head--underline {
    padding-bottom: 3rem;
  }
}
.sf__head-title {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1880px) {
  .sf__title {
    font-size: 3.5rem;
  }
}
.sf__heading {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.625em;
}
@media screen and (max-width: 1024px) {
  .sf__heading {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sf__heading {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 376px) {
  .sf__heading {
    font-size: 1.9rem;
  }
}
.sf__content {
  margin-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .sf__content {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .sf__content {
    margin-top: 4rem;
  }
}
.sf__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}
@media screen and (max-width: 1024px) {
  .sf__blocks {
    gap: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .sf__blocks {
    gap: 4rem;
  }
}
.sf__block-head {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .sf__block-head {
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sf__block-head {
    gap: 2.5rem;
  }
}
.sf__intro-text {
  text-align: center;
  line-height: 1.625em;
}
.sf__entry {
  margin-top: 5rem;
}
.sf__entry-title {
  color: #c65f40;
  text-align: center;
}
.sf__entry-content {
  margin-top: 2rem;
}
.sf__entry-heading {
  font-weight: 700;
  line-height: 1.78125em;
}
.sf__entry-button {
  display: block;
  margin: 5rem auto 0;
  max-width: 28rem;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .sf__entry-button {
    max-width: 25rem;
  }
}
.sf__entry-sns {
  width: 100%;
  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;
}

.sf-display__list {
  width: 100%;
  display: grid;
  gap: 2.2rem;
}
.sf-display__item {
  width: 100%;
  aspect-ratio: 534/200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fb77d6;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .sf-display__item {
    aspect-ratio: initial;
  }
}
.sf-display__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 39%;
}
@media screen and (max-width: 1280px) {
  .sf-display__image {
    width: 35%;
  }
}
@media screen and (max-width: 980px) {
  .sf-display__image {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .sf-display__image {
    width: 39%;
  }
}
.sf-display__text {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(117, 77, 209, 0.1)));
  background: linear-gradient(to right rgba(251, 119, 214, 0.1), rgba(117, 77, 209, 0.1));
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 3rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6em;
}
@media screen and (max-width: 1700px) {
  .sf-display__text {
    padding: 2rem;
    font-size: 1.75rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
@media screen and (max-width: 1500px) {
  .sf-display__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .sf-display__text {
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 880px) {
  .sf-display__text {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sf-display__text {
    line-height: 2rem;
  }
}
.sf-display__heading {
  min-width: inherit;
  width: 100%;
  font-size: inherit;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
  .sf-display__heading {
    margin-bottom: 5px;
  }
}

.sf-01__sc {
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .sf-01__sc {
    grid-template-columns: repeat(3, minmax(30.44%, 34.4rem));
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .sf-01__sc {
    max-width: 34.4rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
.sf-01__sc-item {
  aspect-ratio: 1/1;
}
.sf-01__sc-text {
  line-height: 1.6em;
}
@media screen and (max-width: 1700px) {
  .sf-01__sc-text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .sf-01__sc-text {
    font-size: 1.2rem;
  }
}
.sf-01__app {
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .sf-01__app {
    grid-template-columns: repeat(3, minmax(28.76%, 32.5rem));
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .sf-01__app {
    max-width: 32.5rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
.sf-01__app-text {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1700px) {
  .sf-01__app-text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  .sf-01__app-text {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 901px) and (max-width: 1440px) {
  .sf-01__app-text {
    font-size: 1rem;
    line-height: 2rem;
  }
}
.sf-01__app-text .orange {
  color: #c65f40;
}
.sf-01__app-image {
  width: 100%;
  aspect-ratio: 325/230;
  overflow: hidden;
}
.sf-01__faq {
  margin-top: 8rem;
  padding-block: 8rem 5rem;
  background: #edeff0;
}
@media screen and (max-width: 767px) {
  .sf-01__faq {
    margin-top: 4rem;
    padding-block: 4rem;
  }
}
.sf-01__faq-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sf-01__faq-content {
    margin-top: 3rem;
  }
}

.sf-02__box-list {
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.sf-02__flow-list {
  width: 100%;
  display: grid;
  gap: 5rem;
}
.sf-02__flow-title {
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .sf-02__flow-title {
    font-size: 2.1rem;
  }
}
.sf-02__flow-table {
  width: calc(100% + 38px);
  margin-top: 3rem;
  margin-left: -38px;
}
@media screen and (max-width: 1024px) {
  .sf-02__flow-table {
    width: calc(100% + 33.25px);
    margin-left: -33.25px;
  }
}
.sf-02__voice {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .sf-02__voice {
    max-width: 37rem;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.sf-02__voice-box {
  width: 32.74%;
  max-width: 37rem;
  aspect-ratio: 370/260;
  border: 1px solid #fb77d6;
  padding-inline: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
@media screen and (min-width: 1601px) and (max-width: 1700px) {
  .sf-02__voice-box {
    padding-inline: 2rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .sf-02__voice-box {
    padding-inline: 1.5rem;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 900px) {
  .sf-02__voice-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sf-02__voice-box {
    width: 100%;
    max-width: 35rem;
    margin-inline: auto;
  }
}
.sf-02__voice-icon {
  width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 1367px) and (max-width: 1700px) {
  .sf-02__voice-icon {
    width: 6.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 901px) and (max-width: 1366px) {
  .sf-02__voice-icon {
    width: 4.5rem;
    margin-bottom: 2rem;
  }
}
.sf-02__office {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.sf-02__office-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1366px) {
  .sf-02__office-item {
    gap: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .sf-02__office-item {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sf-02__office-item {
    gap: 1.4rem;
  }
}
.sf-02__office-image {
  border-radius: 50%;
  width: 24rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 1366px) {
  .sf-02__office-image {
    width: 21rem;
  }
}
@media screen and (max-width: 1024px) {
  .sf-02__office-image {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .sf-02__office-image {
    width: 8.5rem;
  }
}
.sf-02__office-box {
  padding: 1.4rem 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .sf-02__office-box {
    padding: 1.4rem 1rem;
  }
}
.sf-02__meal-gallery {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8rem;
}
@media screen and (max-width: 1440px) {
  .sf-02__meal-gallery {
    gap: 3rem;
  }
}
@media screen and (max-width: 1280px) {
  .sf-02__meal-gallery {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sf-02__meal-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.sf-02__meal-image {
  width: 100%;
  aspect-ratio: 546/260;
}
@media screen and (max-width: 767px) {
  .sf-02__entry {
    margin-top: 3rem;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.nowrap {
  white-space: nowrap;
}

.orange {
  color: #c65f40;
}