@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, figure, figcaption {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

* {
  box-sizing: border-box;
}

img {
  margin: 0;
  padding: 0;
  height: auto;
  border-style: none;
  vertical-align: bottom;
  border: none;
}

p {
  word-break: break-all;
  word-wrap: break-word;
}

strong {
  font-weight: bold;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --space-micro: 8px;
  --space-xxs: 16px;
  --space-xs: 24px;
  --space-s: 32px;
  --space-m: 40px;
  --space-l: 80px;
  --space-xl: 120px;
  --inner-width: 1100px;
  --inner-padding: 3%;
  --inner-small: calc(100% * (750px / var(--inner-width)));
  --inner-contact: calc(100% * (750px / var(--inner-width)));
  --font-size-body: 1.6rem;
  --font-size-heading: 3.6rem;
  --font-size-h3: 2.8rem;
  --font-size-cta: 2.8rem;
  --font-size-emphasis: 2.0rem;
  --opacity-hover: 0.7;
  --opacity-overlay: 0.45;
  --radius-xs: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  --header-shadow: 5px 7px 10px -3px rgba(183, 80, 9, 0.37);
  --cta-shadow: 5px 7px 10px -3px rgba(186, 168, 112, 0.37);
  --menu-shadow: 5px 5px 10px -3px rgba(201, 189, 157, 0.32);
  --contact-shadow: 2px 2px 10px -3px rgba(216, 193, 160, 0.43);
}
@media screen and (max-width: 1099px) {
  :root {
    --space-xs: 16px;
    --space-s: 24px;
    --space-m: 32px;
    --space-l: 56px;
    --space-xl: 80px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --space-xs: 8px;
    --space-s: 16px;
    --space-m: 32px;
    --space-l: 56px;
    --space-xl: 64px;
    --font-size-heading: 3.2rem;
    --font-size-cta: 2.2rem;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "Meiryo", "Helvetica Neue", Arial, "MS Pゴシック", sans-serif;
  color: #1A1A1A;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background: #fffbf8;
}

a:link {
  color: inherit;
  transition: 0.3s all;
}
a:visited {
  color: inherit;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 890px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  width: 100%;
}

.l-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
  box-sizing: border-box;
}

.l-inner__s {
  width: min(750px, var(--inner-small));
  margin-inline: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-inner__s {
    width: 85vw;
  }
}

.section-heading-img {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  margin-bottom: var(--space-m);
}

.pagetop {
  position: fixed;
  bottom: 100px;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .pagetop {
    display: none;
  }
}
.pagetop a {
  background: #ff8f29;
  border: 2px solid #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.pagetop a::before {
  content: "";
  border-bottom: 10px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.pagetop a:hover {
  background: #fff;
  border: 2px solid #ff8f29;
}
.pagetop a:hover::before {
  content: "";
  border-bottom: 10px solid #ff8f29;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.highlight {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffe36e;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #ffe36e;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.spacer {
  margin-left: var(--space-micro);
}

@media screen and (max-width: 768px) {
  .sp_br::before {
    content: "\a";
    white-space: pre;
  }
}

.pc_br::before {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 768px) {
  .pc_br::before {
    content: none;
  }
}

.big {
  font-size: 1.3em;
  font-weight: 700;
}

.small {
  font-size: 0.8em;
}

.accent {
  color: #d11c09;
}

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

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

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

header {
  padding: 0px 60px 0px 40px;
  position: relative;
}
header .header__logo-wrapper {
  background: #fff;
  box-shadow: var(--header-shadow);
  width: 367px;
  height: 367px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateY(-60%);
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  header .header__logo-wrapper {
    left: 50%;
    transform: translate(-50%, -57%);
    -webkit-transform: translate(-50%, -57%);
    -ms-transform: translate(-50%, -57%);
    width: 337px;
    height: 337px;
  }
}
@media screen and (max-width:490px) {
  header .header__logo-wrapper {
    transform: translate(-50%, -61%);
    -webkit-transform: translate(-50%, -61%);
    -ms-transform: translate(-50%, -61%);
    width: 317px;
    height: 317px;
  }
}
header .header__logo-wrapper .header__logo {
  display: block;
}
header .header__logo-wrapper .header__logo img {
  width: min(219px, 40vw);
  height: auto;
}
header .header__logo-wrapper .header__logo:hover {
  opacity: var(--opacity-hover);
}
header .header__cta {
  position: absolute;
  top: 50px;
  right: 40px;
}
header .header__cta .-button {
  background: #fff;
  color: #ff8f29;
  font-size: 2.2rem;
  box-shadow: var(--header-shadow);
}
header .header__cta .-button::before {
  background: url("../../assets/img/mail_icon_orange.svg") no-repeat;
}
@media screen and (max-width: 768px) {
  header .header__cta {
    display: none;
  }
}

footer {
  background: #fff;
  padding: var(--space-m);
  font-size: 1.4rem;
  text-align: center;
}
footer.-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer.-fixed {
    position: static;
  }
}

.footer-inner {
  display: inline-block;
}

.footer__info-wrapper {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: var(--space-s) 50px;
}
@media screen and (max-width: 890px) {
  .footer__info-wrapper {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}

.footer__logo img {
  width: min(214px, 80vw);
}

.footer__company .footer__name {
  font-weight: 700;
}
.footer__company .footer__address {
  line-height: 1.2;
  margin-top: var(--space-micro);
  text-align: left;
}
.footer__company .footer__link {
  margin-top: var(--space-m);
}
.footer__company .footer__link a {
  text-decoration: underline;
}
.footer__company .footer__link a::before {
  content: "";
  display: inline-block;
  background: #1A1A1A;
  width: 6px;
  height: 8px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  margin-right: var(--space-micro);
}
.footer__company .footer__link a::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/link_icon.svg") no-repeat;
  width: 9px;
  height: 9px;
  margin: 0px 0px 2px 5px;
}
.footer__company .footer__link a:not(:last-child) {
  margin-right: var(--space-xxs);
}
.footer__company .footer__link a:hover {
  opacity: var(--opacity-hover);
}

.footer__info .footer__info-table {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 240px;
  width: 100%;
}
.footer__info .footer__info-table .info__title {
  width: 30%;
  padding-right: var(--space-micro);
  border-right: 1px solid #e5e5e5;
  font-weight: 700;
  text-align: right;
  margin-bottom: var(--space-micro);
}
.footer__info .footer__info-table .info__detail {
  width: 70%;
  text-align: left;
  padding-left: var(--space-micro);
}

.footer-copy {
  text-align: right;
  color: #b7b7b7;
  margin-top: var(--space-s);
}

.-button {
  padding: var(--space-xs) var(--space-s);
  font-size: 2.6rem;
  background: #ff8f29;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--cta-shadow);
}
@media screen and (max-width:490px) {
  .-button {
    font-size: 2.2rem;
  }
}
.-button::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/mail_icon_white.svg") no-repeat;
  width: 21px;
  height: 15px;
  margin: 0px 5px 0px;
}
.-button:hover {
  opacity: var(--opacity-hover);
}

.cta {
  margin-top: -80px;
  position: relative;
}
@media screen and (max-width: 890px) {
  .cta {
    margin-top: 120px;
  }
}
.cta::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/cta_bg.svg") center top/cover no-repeat;
  max-width: 1920px;
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 890px) {
  .cta::before {
    height: 52.5vw;
  }
}
.cta::after {
  content: none;
  display: inline-block;
  background: url("../../assets/img/cta_img_sp@2x.webp") no-repeat center top/contain;
  max-width: 720px;
  width: min(520px, 80vw);
  height: 100%;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 890px) {
  .cta::after {
    content: "";
  }
}
.cta .cta__wrapper {
  background: #fff7e6;
  padding-bottom: var(--space-xl);
  margin-top: -10px;
  position: relative;
}
.cta .cta__wrapper::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/cta_img01@2x.webp") no-repeat left bottom/contain;
  width: 607px;
  height: 607px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.85;
}
@media screen and (max-width: 1099px) {
  .cta .cta__wrapper::before {
    bottom: 80px;
    width: 480px;
    height: 480px;
  }
}
@media screen and (max-width: 890px) {
  .cta .cta__wrapper::before {
    content: none;
  }
}
.cta .cta__wrapper::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/cta_img02@2x.webp") no-repeat right bottom/contain;
  width: 530px;
  height: 515px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.85;
}
@media screen and (max-width: 1099px) {
  .cta .cta__wrapper::after {
    bottom: 50px;
    width: 450px;
    height: 437px;
  }
}
@media screen and (max-width: 890px) {
  .cta .cta__wrapper::after {
    content: none;
  }
}
.cta .cta__wrapper .cta__img-sp {
  text-align: center;
}
.cta .cta__wrapper .cta__img-sp img {
  margin-top: -120px;
  width: min(700px, 80vw);
}
.cta .cta__wrapper .cta__text {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: var(--space-xs) var(--space-xs);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 890px) {
  .cta .cta__wrapper .cta__text {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta__wrapper .cta__text {
    padding-top: 50px;
  }
}
.cta .cta__wrapper .cta__heading {
  font-size: var(--font-size-cta);
  font-weight: 700;
  text-align: right;
  color: #512c12;
}
@media screen and (max-width: 890px) {
  .cta .cta__wrapper .cta__heading {
    text-align: center;
  }
}
.cta .-button {
  color: #fff;
}
@media screen and (max-width:490px) {
  .cta .-button {
    font-size: 2rem;
  }
}

.fix {
  position: fixed;
  width: 30%;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

.fix.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating {
  display: none;
  border-top: 2px solid #ff8f29;
  padding: var(--space-xxs) 2%;
  text-align: center;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.floating .floating__heading {
  font-weight: 700;
  font-size: var(--font-size-cta);
  color: #512c12;
  padding-bottom: var(--space-micro);
}
.floating .-button {
  color: #fff;
  padding: var(--space-xs) var(--space-m) 11px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .floating {
    display: none;
  }
}

.mv {
  background: url("../../assets/img/main_bg@2x.webp") no-repeat center bottom/cover;
  padding: 130px 0px 300px;
}
@media screen and (max-width: 1099px) {
  .mv {
    background: url("../../assets/img/main_bg_sp@2x.webp") no-repeat center bottom/cover;
    padding: 170px 0px 200px;
  }
}
.mv .mv__img {
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .mv .mv__img {
    padding: 0px 3%;
  }
}
.mv .mv__img img {
  max-width: 1656px;
  width: 100%;
}

.worries {
  text-align: center;
  padding-top: var(--space-m);
}
.worries .section-heading-img {
  background: url("../../assets/img/worries_titile@2x.webp") no-repeat center/100%;
  max-width: 534px;
  height: 112px;
}
.worries .worries__list-wrapper {
  position: relative;
}
.worries .worries__list-wrapper::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/worries_img01@2x.webp") no-repeat left bottom/contain;
  width: 192px;
  height: 261px;
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1099px) {
  .worries .worries__list-wrapper::before {
    content: none;
  }
}
.worries .worries__list-wrapper::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/worries_img02@2x.webp") no-repeat right bottom/contain;
  width: 192px;
  height: 261px;
  position: absolute;
  right: -20px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1099px) {
  .worries .worries__list-wrapper::after {
    content: none;
  }
}
.worries .worries__list {
  background: #fff9e1;
  border-radius: var(--radius-m);
  display: inline-block;
  padding: var(--space-m) var(--space-l);
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worries .worries__list {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.worries .worries__list::after {
  content: "";
  display: inline-block;
  background: #fff9e1;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 240px;
  height: 60px;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}
.worries .worries__list .list-item {
  font-weight: 700;
  font-size: var(--font-size-emphasis);
  padding-left: 1em;
  text-indent: -1em;
}
.worries .worries__list .list-item:not(:last-child) {
  margin-bottom: var(--space-xs);
}
.worries .worries__list .list-item::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/check.svg") no-repeat;
  width: 15px;
  height: 12px;
  margin: 0px 4px 2px 0px;
}
.worries .worries__heading {
  margin-top: var(--space-l);
  text-align: center;
}
.worries .worries__heading::before {
  content: none;
  display: inline-block;
  background: url("../../assets/img/worries_img_tab@2x.webp") no-repeat center bottom/contain;
  max-width: 345px;
  width: 100%;
  height: 265px;
  margin-bottom: var(--space-m);
}
@media screen and (max-width: 1099px) {
  .worries .worries__heading::before {
    content: "";
  }
}
.worries .worries__heading img {
  width: min(743px, 80vw);
}

.reason {
  padding-top: var(--space-l);
  margin-top: var(--space-m);
}
.reason .section-heading-img {
  background: url("../../assets/img/reason_title@2x.webp") no-repeat center/100%;
  max-width: 574px;
  height: 109px;
}
@media screen and (max-width: 768px) {
  .reason .section-heading-img {
    background: url("../../assets/img/reason_title_sp@2x.webp") no-repeat center/100%;
    max-width: 320px;
    height: 178px;
  }
}
.reason .reason__box {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: var(--space-xs) var(--space-m);
}
@media screen and (max-width: 890px) {
  .reason .reason__box {
    flex-direction: column;
  }
}
.reason .reason__box:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 890px) {
  .reason .reason__box:nth-child(odd) {
    flex-direction: column;
  }
}
.reason .reason__box:not(:last-child) {
  margin-bottom: 48px;
}
.reason .reason__box img {
  width: min(530px, 80vw);
}
.reason .reason__box .text__box {
  position: relative;
}
@media screen and (max-width: 890px) {
  .reason .reason__box .text__box {
    width: min(530px, 80vw);
  }
}
.reason .reason__box .text__box::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/reason_bg@2x.webp") no-repeat left top/contain;
  width: 138px;
  height: 157px;
  position: absolute;
  top: -16px;
  left: -40px;
}
.reason .reason__box .text__box .reason__title {
  font-weight: 700;
  font-size: var(--font-size-h3);
  color: #512c12;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-s);
}
.reason .yawaraka__box {
  border: 4px solid #ffd522;
  background: #fff;
  margin-top: var(--space-m);
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: var(--space-xs) var(--space-s);
  padding: var(--space-m);
}
@media screen and (max-width: 768px) {
  .reason .yawaraka__box {
    flex-direction: column-reverse;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.reason .yawaraka__box .text__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .reason .yawaraka__box .text__box {
    margin-top: var(--space-xxs);
  }
}
.reason .yawaraka__box .text__box .yawaraka__title {
  font-size: var(--font-size-emphasis);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.reason .yawaraka__box .text__box .yawaraka__title::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/about_icon.svg") no-repeat;
  width: 38px;
  height: 38px;
  margin: 0px 10px -11px 0px;
}
.reason .yawaraka__box .text__box .yawaraka__link {
  background: #f7ede7;
  border-radius: var(--radius-xs);
  font-weight: 700;
  padding: 4px 8px;
  display: inline-block;
  margin-top: var(--space-xs);
  margin-left: auto;
}
.reason .yawaraka__box .text__box .yawaraka__link::after {
  content: "";
  display: inline-block;
  background: url("../../assets/img/link_icon.svg") no-repeat;
  width: 9px;
  height: 9px;
  margin: 0px 0px 3px 5px;
}
.reason .yawaraka__box .text__box .yawaraka__link:hover {
  opacity: var(--opacity-hover);
}
.reason .yawaraka__box .yawaraka__movie {
  max-width: 352px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.suggestion {
  padding-top: var(--space-l);
}
.suggestion .section-heading-img {
  background: url("../../assets/img/suggestion_title@2x.webp") no-repeat center/100%;
  max-width: 580px;
  height: 113px;
}
.suggestion .standard {
  border: 2px solid #fcd5b4;
  background: #fff;
  border-radius: var(--radius-l);
  padding: var(--space-m) var(--space-m);
  margin-bottom: var(--space-m);
}
@media screen and (max-width: 768px) {
  .suggestion .standard {
    margin: 0 calc(50% - 50vw) var(--space-m);
    width: 100vw;
  }
}
.suggestion .standard .menu__name {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #ff8f29;
  border-radius: var(--radius-xl);
  margin-top: var(--space-micro);
}
.suggestion .value {
  border: 2px solid #ffde52;
  background: #fff;
  border-radius: var(--radius-l);
  padding: var(--space-m) var(--space-m);
  margin-bottom: var(--space-m);
}
@media screen and (max-width: 768px) {
  .suggestion .value {
    margin: 0 calc(50% - 50vw) var(--space-m);
    width: 100vw;
  }
}
.suggestion .value .menu__name {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #f9bf08;
  border-radius: var(--radius-xl);
  margin-top: var(--space-micro);
}
.suggestion .souzai {
  border: 2px solid #f4a69a;
  background: #fff;
  border-radius: var(--radius-l);
  padding: var(--space-m) var(--space-m);
  margin-bottom: var(--space-m);
}
@media screen and (max-width: 768px) {
  .suggestion .souzai {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.suggestion .souzai .menu__name {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #e5897f;
  border-radius: var(--radius-xl);
  margin-top: var(--space-micro);
}
.suggestion .menu__title {
  font-weight: 700;
  font-size: 2.2rem;
}
.suggestion .menu__title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #ff8f29;
  margin-right: var(--space-micro);
}
.suggestion .intro__text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: var(--space-micro);
}
.suggestion .menu__wrapper {
  margin-top: var(--space-xs);
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: var(--space-m) var(--space-s);
}
@media screen and (max-width: 768px) {
  .suggestion .menu__wrapper {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.suggestion .menu__wrapper .menu {
  background: #fffbf8;
  border-radius: var(--radius-s);
  box-shadow: var(--menu-shadow);
  padding: var(--space-xs);
}
.suggestion .menu__wrapper .menu .meal-time {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #512c12;
}
.suggestion .menu__wrapper .menu .meal-time.morning::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/morning_icon.svg") no-repeat;
  width: 23px;
  height: 18px;
  margin: 0px var(--space-micro) 0px 0px;
}
.suggestion .menu__wrapper .menu .meal-time.day::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/day_icon.svg") no-repeat;
  width: 17px;
  height: 17px;
  margin: 0px var(--space-micro) 0px 0px;
}
.suggestion .menu__wrapper .menu .meal-time.night::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/night_icon.svg") no-repeat;
  width: 16px;
  height: 17px;
  margin: 0px var(--space-micro) 0px 0px;
}
.suggestion .menu__wrapper .menu .menu__name {
  margin-bottom: var(--space-micro);
}
.suggestion .menu__wrapper .menu img {
  max-width: 272px;
}
.suggestion .menu__type {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding-top: var(--space-xxs);
}
@media screen and (max-width: 768px) {
  .suggestion .table__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.suggestion .menu__table {
  width: 100%;
  border-top: 1px solid #efe7dc;
  border-right: 1px solid #efe7dc;
  margin-top: var(--space-m);
}
@media screen and (max-width: 768px) {
  .suggestion .menu__table {
    min-width: 1000px;
    overflow-x: scroll;
  }
}
.suggestion .menu__table th {
  border-bottom: 1px solid #efe7dc;
  border-left: 1px solid #efe7dc;
  padding: var(--space-micro) var(--space-xxs);
  text-align: center;
}
.suggestion .menu__table td {
  border-bottom: 1px solid #efe7dc;
  border-left: 1px solid #efe7dc;
  padding: var(--space-micro) var(--space-micro);
  text-align: center;
  background: #fff;
}
.suggestion .menu__table .menu__title-heading {
  font-weight: 700;
  background: #f7f2eb;
}
.suggestion .menu__table .ratio1 {
  width: 12.5%;
}
.suggestion .menu__table .ratio2 {
  width: 25%;
}

.voice {
  padding-top: var(--space-l);
}
.voice .section-heading-img {
  background: url("../../assets/img/voice_title@2x.webp") no-repeat center/100%;
  max-width: 480px;
  height: 137px;
}
.voice .voice__wrapper {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  gap: 80px 28px;
  margin-top: 80px;
}
@media screen and (max-width: 890px) {
  .voice .voice__wrapper {
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
}
.voice .voice__wrapper .voice__box {
  width: 33.3333333333%;
  background: #f7efe8;
  border-radius: var(--radius-m);
  position: relative;
  padding: 110px var(--space-xxs) var(--space-s);
}
@media screen and (max-width: 890px) {
  .voice .voice__wrapper .voice__box {
    width: 80vw;
  }
}
.voice .voice__wrapper .voice__box img {
  width: 143px;
  height: 143px;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.voice .voice__wrapper .voice__box .user {
  text-align: right;
  font-weight: 700;
  margin-top: var(--space-xxs);
}

.flow {
  padding-top: var(--space-l);
}
.flow .section-heading-img {
  background: url("../../assets/img/flow_title@2x.webp") no-repeat center/100%;
  max-width: 373px;
  height: 98px;
}
.flow .flow__list {
  display: grid;
  gap: 22px 22px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1099px) {
  .flow .flow__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .flow .flow__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 5%;
  }
}
.flow .flow__list .list-item {
  text-align: center;
  background: #fff2b9;
  border-radius: var(--radius-s);
  padding: var(--space-s) var(--space-xxs) 64px;
  position: relative;
}
.flow .flow__list .list-item img {
  width: 57px;
}
.flow .flow__list .list-item .list__text {
  font-weight: 700;
  font-size: var(--font-size-emphasis);
  line-height: 1.2;
  margin-top: 20px;
}
.flow .flow__list .list-item .step__num {
  font-family: "Barlow", sans-serif;
  font-size: 6rem;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0;
}

.faq {
  padding-top: var(--space-l);
}
.faq .section-heading-img {
  background: url("../../assets/img/faq@2x.webp") no-repeat center/100%;
  max-width: 437px;
  height: 46px;
}
.faq .faq__wrapper .faq__q {
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #f4eae6;
  padding-bottom: var(--space-micro);
  padding-left: 1.9em;
  text-indent: -1.9em;
  line-height: 1.4;
}
.faq .faq__wrapper .faq__q::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/q_icon.svg") no-repeat;
  width: 35px;
  height: 35px;
  margin: 0px var(--space-micro) -8px 0px;
}
.faq .faq__wrapper .faq__a {
  padding-top: var(--space-xxs);
}
.faq .faq__wrapper .faq__a:not(:last-child) {
  margin-bottom: var(--space-m);
}

.contact {
  margin-top: -160px;
}
@media screen and (max-width: 890px) {
  .contact {
    margin-top: -100px;
  }
}
.contact::before {
  content: "";
  display: inline-block;
  background: url("../../assets/img/cta_bg.svg") center top/cover no-repeat;
  max-width: 1920px;
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 890px) {
  .contact::before {
    height: 52.5vw;
  }
}
.contact .section-heading-img {
  background: url("../../assets/img/contact_title@2x.webp") no-repeat center/100%;
  max-width: 695px;
  height: 83px;
}
@media screen and (max-width: 768px) {
  .contact .section-heading-img {
    background: url("../../assets/img/contact_title_sp@2x.webp") no-repeat center/100%;
    max-width: 247px;
    height: 105px;
  }
}
.contact .contact__form {
  background: #fff7e6;
  margin-top: -10px;
  padding-bottom: var(--space-l);
}
@media screen and (max-width: 768px) {
  .contact .contact__form {
    margin-top: -7px;
  }
}
.contact .form {
  background: #fff;
  box-shadow: var(--contact-shadow);
  border-radius: var(--radius-xl);
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .contact .form {
    box-shadow: none;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.contact .contact__form-table {
  width: var(--inner-contact);
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0px 32px;
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table {
    width: 85vw;
  }
}
.contact .contact__form-table th {
  font-weight: 700;
  text-align: right;
  width: 30%;
  padding-right: 32px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px 0px 15px 0px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table td {
    display: block;
    width: 100%;
  }
}
.contact .required {
  font-size: 1.2rem;
  color: #fff;
  background: #d11c09;
  padding: 1px 3px 2px;
  margin-left: 10px;
  border-radius: var(--radius-xs);
}
.contact .any {
  font-size: 1.2rem;
  color: #fff;
  background: #a59489;
  padding: 1px 3px 2px;
  margin-left: 10px;
  border-radius: var(--radius-xs);
}
.contact .contact__form-table input {
  background: #f9f6f2;
  padding: var(--space-micro) var(--space-xxs);
  border: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table input {
    padding: var(--space-xxs);
  }
}
.contact .contact__form-table input.p-postal-code {
  max-width: 250px;
}
.contact .contact__form-table textarea {
  border: none;
  max-width: 500px;
  width: 100%;
  min-height: 160px;
  height: 100%;
  background: #f9f6f2;
  padding: var(--space-micro) var(--space-xxs);
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table textarea {
    max-width: 100%;
    padding: var(--space-xxs);
  }
}
.contact .contact__form-table .input--lg {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .contact__form-table .input--lg {
    max-width: 100%;
  }
}
.contact .form__choice {
  display: flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}
.contact .form__choice input {
  width: auto;
  padding: 0px;
}
.contact .form__choice .form__choice-radio {
  padding-left: var(--space-micro);
}
.contact .form__choice:not(:last-child) {
  margin-bottom: var(--space-micro);
}
.contact .form__button {
  text-align: center;
  margin-top: 30px;
}
.contact .form__button .form__button-submit {
  border: none;
  cursor: pointer;
  padding: 10px 30px 15px;
  font-size: 2.4rem;
  max-width: 320px;
  width: 100%;
  transition: 0.3s all;
}
.contact .form__button .form__button-submit:hover {
  opacity: var(--opacity-hover);
}
.contact .form__button .-button::before {
  content: none;
}
.contact .policy__wrapper {
  text-align: center;
}
.contact .policy__wrapper .external_link {
  text-decoration: underline;
}
.contact .policy__wrapper .external_link:hover {
  opacity: var(--opacity-hover);
}/*# sourceMappingURL=style.css.map */