@charset 'UTF-8';

/* Reset
-------------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
  }
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tab-size: 4;
}
body {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, iframe) {
  border: none;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(img) {
  image-rendering: -webkit-optimize-contrast;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}
ul:where([class]),
ol:where([class]),
nav ul,
nav ol {
  list-style: none;
}
ul:where(:not([class])) {
  margin-left: .875em;
}
ol:where(:not([class])) {
  margin-left: 1.25em;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(sub, sup) {
  font-size: 68.75%;
  line-height: 1.02;
}
:where(sub) {
  vertical-align: baseline;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(template) {
  display: none;
}
:where(a) {
  background: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .25);
}
:where(a:active, a:hover) {
  outline-width: 0;
}
:where(a img) {
  pointer-events: none;
}
:where(a, area, button, input, label[for], select, textarea, summary, [role='button'], [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(code, kbd, pre, samp) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
}
:where(pre) {
  display: block;
  overflow: auto;
}
:where(code) {
  overflow-wrap: break-word;
}
:where(pre code) {
  word-break: normal;
}
:where(dialog) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  transform: translate(-50%, -50%);
}
:where(dialog:not([open])) {
  display: none;
}
:where(fieldset) {
  border: none;
}
:where(input, textarea, select, button),
:where(input[type="file"])::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: bottom;
  appearance: none;
}
:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:disabled, :disabled + label),
:where(input[type="file"]):disabled::-webkit-file-upload-button,
:where(input[type="file"]):disabled::file-selector-button,
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}
:where([type="color"])::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where([type="color"])::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
:where([type="color"])::-moz-color-swatch {
  border: none;
  border-radius: 0;
}
:where([hidden]) {
  display: none;
}
:where([aria-busy="true"]) {
  cursor: progress;
}
:where([aria-controls]) {
  cursor: pointer;
}



/* Foundation
-------------------------------------------------- */
:root {
  --lg-base: 1440 * 100vw;
  --sm-base: 375 * 100vw;

  --color-default     : #6D4015;
  --color-orange      : #FFA822;
  --color-green       : #4BADA8;
  --color-light-green : #9CD5D1;
  --color-bg-primary  : #FCF9F2;

  --font-default       : 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif;
  --font-ZenMaruGothic : 'Zen Maru Gothic', sans-serif;
  --font-Montserrat    : 'Montserrat', sans-serif;

  --transition          : .25s ease;
  --transition-duration : .25s;
  --hover-opacity       : .6;
}

body {
  width: 100%;
  background: #fff;
  color: var(--color-default);
  font-family: var(--font-default);
  font-size: calc(15 / var(--sm-base));
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
}
a {
  color: var(--color-default);
  text-decoration: none;
  text-underline-offset: .275em;
}
a:where(:not([class])) {
  color: var(--color-default);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a:where(:not([class])):hover {
    text-decoration: none;
  }
  a img {
    transition: opacity var(--transition);
  }
  a:hover img {
    opacity: var(--hover-opacity);
  }
}
img {
  width: 100%;
}
input, textarea, button, select, option, optgroup {
  font-size: min(16px, calc(32 / var(--sm-base)));
}
::selection {
  background-color: var(--color-default);
  color: #fff;
  text-shadow: none;
}
::placeholder {
  color: #888;
  opacity: 1;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
  input, textarea, button, select, option, optgroup {
    font-size: 16px;
  }
}



/* Utility
-------------------------------------------------- */
.u-tl { text-align: left; }
.u-tc { text-align: center; }
.u-tr { text-align: right; }

.u-vt { vertical-align: top; }
.u-vm { vertical-align: middle; }
.u-vb { vertical-align: bottom; }

.u-fwn { font-weight: 400; }
.u-fwb { font-weight: 700; }

.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.smsizes\:hidden,
.xs\:hidden {
  display: none;
}
@media screen and (min-width: 360px), print {
  .xs\:hidden {
    display: inline;
  }
  .sm\:hidden {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .smsizes\:hidden,
  .xs\:hidden,
  .sm\:hidden {
    display: inline;
  }
  .lgsizes\:hidden,
  .md\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden {
    display: inline;
  }
  .lg\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden,
  .lg\:hidden {
    display: inline;
  }
  .xl\:hidden {
    display: none;
  }
}


/* Project
-------------------------------------------------- */
.l-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.c-cta-anchor {
  position: relative;
  display: block;
  padding-block: calc(21 / var(--sm-base)) calc(11 / var(--sm-base));
  background: #06C755;
  border-radius: 100vmax;
  border: calc(3 / var(--sm-base)) solid #fff;
  box-shadow: 0 calc(6 / var(--sm-base)) 0 #077E37;
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-cta-anchor {
    transition: opacity var(--transition);
  }
  .c-cta-anchor:hover {
    opacity: var(--hover-opacity);
  }
}
.c-cta-label {
  position: absolute;
  top: calc(-30 / var(--sm-base));
  left: 50%;
  z-index: 2;
  padding: calc(9 / var(--sm-base)) calc(13 / var(--sm-base)) calc(11 / var(--sm-base));
  background: #fff;
  border: calc(2 / var(--sm-base)) solid #06C755;
  border-radius: 100vmax;
  color: var(--color-default);
  font-size: calc(12 / var(--sm-base));
  font-weight: 700;
  transform: translateX(-50%);
  white-space: nowrap;
}
.c-cta-label span {
  color: var(--color-green);
}
.c-cta-title {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding-left: calc(34 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
}
.c-cta-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(25 / var(--sm-base));
  height: calc(23 / var(--sm-base));
  background: url(../images/icn_line_01.png) 0 0 / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}
.c-cta-title span {
  color: #FFFB00;
}
.c-cta-note {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  line-height: 1.7;
}
.c-section-label {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-right: calc(30 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(14 / var(--sm-base));
  font-weight: 700;
  letter-spacing: .075em;
}
.c-section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(22 / var(--sm-base));
  height: calc(22 / var(--sm-base));
  background: var(--color-default);
  -webkit-mask: url(../images/icn_heading_01.png) 0 0 / contain no-repeat;
  mask: url(../images/icn_heading_01.png) 0 0 / contain no-repeat;
  transform: translateY(-50%);
}
.c-section-label.--left {
  padding-right: 0;
  padding-left: calc(30 / var(--sm-base));
}
.c-section-label.--left::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
.c-section-label.--white::after {
  background: #fff;
}
.c-section-heading {
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(24 / var(--sm-base));
  line-height: 1.3;
  text-align: center;
}
.c-section-heading span {
  color: var(--color-orange);
}
@media screen and (min-width: 768px), print {
  .l-inner {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .c-cta-anchor {
    width: fit-content;
    margin-inline: auto;
    padding: 18px 68px 10px;
    border-width: 3px;
    box-shadow: 0 8px 0 #077E37;
  }
  .c-cta-label {
    top: -32px;
    left: calc(50% + 5px);
    padding: 7px 14px 9px;
    border-width: 2px;
    font-size: 14px;
  }
  .c-cta-title {
    padding-left: 46px;
    font-size: 26px;
  }
  .c-cta-title::before {
    width: 40px;
    height: 37px;
  }
  .c-cta-note {
    margin-top: 15px;
    font-size: 14px;
  }
  .c-section-label {
    padding-right: 30px;
    font-size: 14px;
  }
  .c-section-label::after {
    width: 22px;
    height: 22px;
  }
  .c-section-label.--left {
    padding-left: 30px;
  }
  .c-section-heading {
    font-size: 43px;
    line-height: 1.35;
  }
}

.header {
  position: relative;
  padding-block: calc(15 / var(--sm-base)) calc(40 / var(--sm-base));
  background: url(../images/bg_fv_01_sm.jpg) 50% 50% / cover no-repeat;
}
.header-logo {
  width: calc(157 / var(--sm-base));
  font-size: 0;
}
.header-logo img {
  width: 100%;
}
.fv-heading {
  position: relative;
  margin-top: calc(25 / var(--sm-base));
}
.fv-heading::before {
  content: '';
  position: absolute;
  top: calc(25 / var(--sm-base));
  left: 50%;
  width: calc(371 / var(--sm-base));
  height: calc(371 / var(--sm-base));
  background: url(../images/bg_fv_02_sm.png) 0 0 / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}
.fv-heading > * {
  position: relative;
  z-index: 2;
}
.fv-heading img {
  display: block;
  margin-bottom: calc(10 / var(--sm-base));
}
.fv-heading > span {
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(34 / var(--sm-base));
  font-weight: 700;
  text-shadow: 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff;
  line-height: 1.3;
}
.fv-heading > span:nth-of-type(1) {
  color: var(--color-green);
  letter-spacing: .1em;
}
.fv-heading > span:nth-of-type(3) {
  color: var(--color-orange);
  letter-spacing: -.05em;
}
.fv-lead {
  position: relative;
  z-index: 2;
  width: calc(280 / var(--sm-base));
  margin: calc(25 / var(--sm-base)) auto 0;
}
.fv-lead p {
  position: relative;
  padding: calc(10 / var(--sm-base)) calc(20 / var(--sm-base));
  background: #54B0A8;
  color: #fff;
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(14 / var(--sm-base));
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.fv-lead p::before,
.fv-lead p::after {
  content: '';
  position: absolute;
  top: calc(-16 / var(--sm-base));
  width: calc(41 / var(--sm-base));
  height: calc(94 / var(--sm-base));
  background: url(../images/bg_fv_03_sm.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.fv-lead p::before {
  left: calc(-24 / var(--sm-base));
}
.fv-lead p::after {
  right: calc(-24 / var(--sm-base));
  transform: scaleX(-1);
}
.fv-lead p strong {
  color: #FFFB00;
}
.fv-cta-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: calc(25 / var(--sm-base)) auto calc(30 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(15 / var(--sm-base));
  font-weight: 700;
  text-align: center;
  text-shadow: -2px -2px 0 #fff, -2px -1px 0 #fff, -2px 0 0 #fff, -2px 1px 0 #fff, -2px 2px 0 #fff, -1px -2px 0 #fff, -1px 2px 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, 1px -2px 0 #fff, 1px 2px 0 #fff, 2px -2px 0 #fff, 2px -1px 0 #fff, 2px 0 0 #fff, 2px 1px 0 #fff, 2px 2px 0 #fff;
}
.fv-cta-label::before,
.fv-cta-label::after {
  content: '';
  position: absolute;
  bottom: calc(-2 / var(--sm-base));
  width: calc(2 / var(--sm-base));
  height: calc(47 / var(--sm-base));
  background: var(--color-default);
  box-shadow: 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff;
  pointer-events: none;
}
.fv-cta-label::before {
  left: calc(-5 / var(--sm-base));
  transform: rotate(-30deg);
}
.fv-cta-label::after {
  right: calc(-5 / var(--sm-base));
  transform: rotate(30deg);
}
.fv-cta-label span {
  color: #06C755;
}
.header .c-cta-label span {
  color: var(--color-orange);
}
.fv-note {
  margin-top: calc(15 / var(--sm-base));
  color: #838383;
  font-size: calc(12 / var(--sm-base));
  text-shadow: 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff, 0 0 calc(5 / var(--sm-base)) #fff;
}
@media screen and (min-width: 768px), print {
  .header {
    padding-block: 15px 120px;
  }
  .header-logo {
    width: 188px;
  }
  .fv-heading {
    margin-top: 18px;
  }
  .fv-lead {
    width: min(100%, 834px);
    margin: 25px auto 0;
    padding-inline: 77px;
  }
  .fv-lead p {
    padding: 13px 20px 17px;
    font-size: 20px;
  }
  .fv-lead p::before,
  .fv-lead p::after {
    top: -16px;
    width: 99px;
    height: 76px;
    background-image: url(../images/bg_fv_03.png);
  }
  .fv-lead p::before {
    left: -77px;
  }
  .fv-lead p::after {
    right: -77px;
  }
  .fv-cta-label {
    margin: 25px auto 32px;
    font-size: 18px;
    line-height: 1.4;
  }
  .fv-cta-label::before,
  .fv-cta-label::after {
    bottom: -2px;
    width: 2px;
    height: 62px;
    box-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  }
  .fv-cta-label::before {
    left: -12px;
    transform: rotate(-25deg);
  }
  .fv-cta-label::after {
    right: -12px;
    transform: rotate(25deg);
  }
  .fv-note {
    width: fit-content;
    margin: 20px auto 0;
    font-size: 13px;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
  }
}
@media screen and (min-width: 1024px), print {
  .header {
    background-image: url(../images/bg_fv_01.jpg);
  }
  .header-logo {
    margin-left: 20px;
  }
  .fv-heading::before {
    top: -50px;
    left: 80px;
    width: 682px;
    height: 682px;
    background-image: url(../images/bg_fv_02.png);
    transform: none;
  }
  .fv-heading img {
    width: 752px;
    margin: 0 0 -25px 44px;
  }
  .fv-heading > span {
    font-size: 72px;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
    line-height: 1.3;
  }
  .fv-heading span:nth-of-type(1) {
    margin-left: 220px;
  }
  .fv-heading span:nth-of-type(3) {
    margin-left: 40px;
  }
  .fv-heading span:nth-of-type(3) br {
    display: none;
  }
  .fv-lead {
    margin: 25px 0 0 0;
  }
  .fv-cta-label {
    margin: 25px 0 32px 220px;
  }
  .header .c-cta-anchor {
    margin-inline: 140px 0;
  }
  .fv-note {
    margin: 20px 0 0 110px;
  }
}

.space {
  position: relative;
  background: #FCF9F2;
}
.space::before {
  content: '';
  position: absolute;
  bottom: 99.95%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/80;
  background: url(../images/bg_space_01.svg) 0 0 / contain no-repeat;
  pointer-events: none;
}
.space-body {
  overflow: hidden;
}
.space-inner {
  position: relative;
  padding-block: calc(45 / var(--sm-base)) calc(90 / var(--sm-base));
}
.space-inner::before {
  content: '';
  position: absolute;
  top: calc(40 / var(--sm-base));
  left: calc(10 / var(--sm-base));
  width: calc(261 / var(--sm-base));
  height: calc(266 / var(--sm-base));
  background: url(../images/bg_space_02.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.space-inner::after {
  content: '';
  position: absolute;
  right: calc(8 / var(--sm-base));
  bottom: calc(55 / var(--sm-base));
  width: calc(288 / var(--sm-base));
  height: calc(246 / var(--sm-base));
  background: url(../images/bg_space_03.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.space-contents {
  position: relative;
  z-index: 2;
}
.space-heading {
  position: relative;
  width: fit-content;
  margin: calc(15 / var(--sm-base)) auto 0;
}
.space-heading::before,
.space-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(62 / var(--sm-base));
  height: calc(35 / var(--sm-base));
  background: url(../images/bg_space_04.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.space-heading::before {
  left: calc(-60 / var(--sm-base));
}
.space-heading::after {
  right: calc(-60 / var(--sm-base));
  transform: scaleX(-1);
}
.space-description {
  margin-top: calc(25 / var(--sm-base));
  line-height: 1.8;
}
.space-note {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  line-height: 2;
}
.space-image {
  display: flex;
  flex-direction: column;
  gap: calc(6 / var(--sm-base));
  margin-top: calc(15 / var(--sm-base));
}
.space-image img {
  display: block;
  width: calc(277 / var(--sm-base));
  border-radius: calc(16 / var(--sm-base));
}
.space-image img:nth-of-type(2) {
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .space-inner {
    padding-block: 45px 130px;
  }
  .space-inner::before {
    top: 18px;
    left: -10px;
    width: 347px;
    height: 353px;
  }
  .space-inner::after {
    right: -70px;
    bottom: 130px;
    width: 400px;
    height: 341px;
  }
  .space-heading {
    margin: 12px auto 0;
  }
  .space-heading::before,
  .space-heading::after {
    width: 82px;
    height: 47px;
  }
  .space-heading::before {
    left: -80px;
  }
  .space-heading::after {
    right: -80px;
  }
  .space-description {
    margin-top: 30px;
    font-size: 18px;
  }
  .space-note {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
  .space-image {
    width: 554px;
    margin: 40px auto 0;
    gap: 0;
  }
  .space-image img {
    width: 277px;
    border-radius: 16px;
  }
  .space-image img:nth-of-type(1) {
    width: 426px;
  }
  .space-image img:nth-of-type(2) {
    margin: 27px 0 18px auto;
  }
  .space-image img:nth-of-type(3) {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .space-row {
    display: flex;
  }
  .space-detail {
    flex: 1;
  }
  .space-image {
    width: min(50%, 554px);
    margin: 0 0 0 20px;
  }
}

.problem {
  position: relative;
  top: calc(-48 / var(--sm-base));
  margin-bottom: calc(-48 / var(--sm-base));
  padding-block: calc(90 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #9c9582 url(../images/bg_problem_01.jpg) 50% 50% / cover no-repeat;
  border-radius: calc(48 / var(--sm-base)) calc(48 / var(--sm-base)) 0 0;
}
.problem::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: calc(57 / var(--sm-base));
  background: #9c9582;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.problem-heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.problem-heading::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  width: calc(375 / var(--sm-base));
  height: calc(250 / var(--sm-base));
  background: url(../images/bg_problem_02_sm.png) 50% 50% / cover no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.problem-heading > span {
  position: relative;
  z-index: 2;
}
.problem-heading > span > span {
  color: var(--color-green);
}
.problem-heading > span > span span {
  margin-right: -.5em;
}
.problem-lead {
  margin-top: calc(47 / var(--sm-base));
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.problem-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 / var(--sm-base)) 0;
  margin: calc(10 / var(--sm-base)) calc(-7 / var(--sm-base)) 0;
}
.problem-list::after {
  content: '';
  position: absolute;
  right: calc(12 / var(--sm-base));
  bottom: calc(-64 / var(--sm-base));
  width: calc(186 / var(--sm-base));
  height: calc(251 / var(--sm-base));
  background: url(../images/img_problem_01.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.problem-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/bg_problem_03.png) 50% 50% / contain no-repeat;
  color: #fff;
  font-size: calc(14 / var(--sm-base));
  line-height: 2.2;
  text-align: center;
}
.problem-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(10 / var(--sm-base));
  width: calc(38 / var(--sm-base));
  height: calc(44 / var(--sm-base));
  background: url(../images/icn_problem_01.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.problem-item:nth-of-type(2):before,
.problem-item:nth-of-type(5):before,
.problem-item:nth-of-type(6):before {
  background-image: url(../images/icn_problem_02.png);
}
.problem-item strong {
  color: #FFE100;
}
.problem-summary {
  margin-top: calc(65 / var(--sm-base));
  padding: calc(40 / var(--sm-base)) calc(15 / var(--sm-base)) calc(16 / var(--sm-base));
  background: #fff url(../images/bg_problem_04.png) 90% calc(28 / var(--sm-base)) / calc(99 / var(--sm-base)) auto no-repeat;
  border: calc(1.5 / var(--sm-base)) dotted var(--color-default);
  border-radius: calc(16 / var(--sm-base));
}
.problem-summary-detail {
  font-weight: 700;
  line-height: 2;
}
.problem-summary-detail p:not(:first-child) {
  margin-top: 1em;
}
.problem-summary-detail p strong {
  color: var(--color-orange);
}
.problem-summary-image {
  margin-top: calc(15 / var(--sm-base));
}
.problem-summary-image img {
  width: 100%;
  border-radius: calc(8 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .problem {
    top: -48px;
    margin-bottom: -48px;
    padding-block: 0 25px;
    border-radius: 48px 48px 0 0;
  }
  .problem::after {
    height: 56px;
  }
  .problem-body {
    padding-top: 160px;
    overflow: hidden;
  }
  .problem-heading {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: -.05em;
  }
  .problem-heading > span > span {
    margin-inline: -.375em -.5em;
  }
  .problem-heading::before {
    top: 58%;
    width: 971px;
    height: 378px;
    background-image: url(../images/bg_problem_02.png);
  }
  .problem-lead {
    margin-top: 95px;
    font-size: 18px;
  }
  .problem-list-outer {
    margin-inline: -10px;
  }
  .problem-list {
    width: min(100%, 700px);
    gap: 0;
    margin: 25px auto 0;
  }
  .problem-list::after {
    right: 50%;
    bottom: 20px;
    width: 297px;
    height: 400px;
    transform: translateX(50%);
  }
  .problem-item {
    width: 201px;
    margin-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 1.9;
  }
  .problem-item:nth-of-type(1) {
    margin-left: 24px;
  }
  .problem-item:nth-of-type(2) {
    margin-inline: 22px;
  }
  .problem-item:nth-of-type(4),
  .problem-item:nth-of-type(6) {
    margin-right: 294px;
  }
  .problem-item::before {
    top: 8px;
    left: 22px;
    width: 38px;
    height: 44px;
  }
  .problem-summary {
    margin-top: 10px;
    padding: 20px;
    background-position: 90% 20px;
    background-size: 99px auto;
    border-width: 2px;
    border-radius: 16px;
  }
  .problem-summary-detail {
    flex: 1;
    margin-left: 44px;
    font-size: 20px;
    line-height: 1.5;
  }
  .problem-summary-detail p:not(:first-child) {
    margin-top: .75em;
  }
  .problem-summary-image {
    width: 390px;
    margin: 30px auto 0;
  }
  .problem-summary-image img {
    border-radius: 16px;
  }
}
@media screen and (min-width: 1024px), print {
  .problem-heading {
    font-size: 39px;
    letter-spacing: 0;
  }
  .problem-summary {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 7px 14px;
    background-position: 97% 80%;
  }
  .problem-summary-image {
    width: min(37%, 390px);
    margin: 0;
  }
}

.problem-cta {
  background: url(../images/bg_problem-cta_01_sm.jpg) 50% 50% / cover no-repeat;
}
.problem-cta-inner {
  position: relative;
  padding: calc(275 / var(--sm-base)) calc(15 / var(--sm-base)) calc(40 / var(--sm-base));
}
.problem-cta-inner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(260 / var(--sm-base));
  height: calc(379 / var(--sm-base));
  background: url(../images/img_problem-cta_01_sm.png) 0 0 / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}
.problem-cta .c-cta {
  position: relative;
  z-index: 2;
}
.problem-cta .c-cta-note {
  color: #61716C;
  text-shadow: 0 0 calc(4 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .problem-cta {
    background-image: url(../images/bg_problem-cta_01.jpg);
  }
  .problem-cta-inner {
    width: min(100%, 960px);
    margin-inline: auto;
    padding: 210px 40px 135px;
  }
  .problem-cta-inner::before {
    left: auto;
    right: 30px;
    width: 321px;
    height: 393px;
    background-image: url(../images/img_problem-cta_01.png);
    transform: none;
  }
  .problem-cta .c-cta-anchor {
    margin: 0 0 0 10px;
  }
  .problem-cta .c-cta-note {
    text-align: left;
  }
}

.concept {
  padding-block: calc(50 / var(--sm-base)) calc(45 / var(--sm-base));
  background: #FCF9F2;
}
.concept-heading {
  position: relative;
  width: fit-content;
  margin: calc(15 / var(--sm-base)) auto 0;
}
.concept-heading::before,
.concept-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(63 / var(--sm-base));
  height: calc(36 / var(--sm-base));
  background: url(../images/bg_concept_01.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.concept-heading::before {
  left: calc(-5 / var(--sm-base));
}
.concept-heading::after {
  right: calc(-5 / var(--sm-base));
  transform: scaleX(-1);
}
.concept-detail {
  margin-top: calc(25 / var(--sm-base));
}
.concept-detail p {
  margin-top: .75em;
  line-height: 1.8;
}
.concept-image {
  margin-top: calc(12 / var(--sm-base));
}
.concept-image img {
  width: 100%;
  border-radius: calc(16 / var(--sm-base));
}
.concept-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(17 / var(--sm-base)) calc(8 / var(--sm-base));
  margin-top: calc(40 / var(--sm-base));
}
.concept-item {
  width: calc(50% - (4 / var(--sm-base)));
}
.concept-item img {
  display: block;
  width: 98%;
  margin-inline: auto;
}
.concept-item p {
  margin-top: calc(8 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.concept-item:last-child p {
  margin: calc(8 / var(--sm-base)) calc(-40 / var(--sm-base)) 0;
}
.concept-subheading {
  position: relative;
  width: fit-content;
  margin: calc(25 / var(--sm-base)) auto 0;
  color: var(--color-orange);
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.concept-subheading::before,
.concept-subheading::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(36 / var(--sm-base));
  height: calc(37 / var(--sm-base));
  background: url(../images/bg_concept_02.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.concept-subheading::before {
  left: calc(-40 / var(--sm-base));
}
.concept-subheading::after {
  right: calc(-40 / var(--sm-base));
  transform: scaleX(-1);
}
.concept-images {
  display: flex;
  flex-direction: column;
  gap: calc(16 / var(--sm-base));
  margin-top: calc(24 / var(--sm-base));
}
.concept-images img {
  display: block;
  width: calc(276 / var(--sm-base));
  border-radius: calc(16 / var(--sm-base));
}
.concept-images img:nth-of-type(2) {
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .concept {
    padding-block: 80px;
  }
  .concept-heading {
    margin: 15px auto 0;
  }
  .concept-heading::before,
  .concept-heading::after {
    width: 82px;
    height: 47px;
  }
  .concept-heading::before {
    left: 0;
  }
  .concept-heading::after {
    right: 0;
  }
  .concept-detail {
    margin-top: 30px;
    font-size: 20px;
  }
  .concept-image {
    margin-top: 40px;
  }
  .concept-image img {
    border-radius: 16px;
  }
  .concept-list {
    gap: 18px;
    width: 554px;
    margin: 40px auto 0;
  }
  .concept-item {
    width: calc(33.33334% - 12px);
  }
  .concept-item img {
    width: 100%;
  }
  .concept-item p {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.3;
  }
  .concept-item:last-child p {
    margin: 17px 0 0;
  }
  .concept-subheading {
    margin-top: 20px;
    font-size: 30px;
  }
  .concept-subheading::before,
  .concept-subheading::after {
    bottom: 3px;
    width: 36px;
    height: 37px;
  }
  .concept-subheading::before {
    left: -60px;
  }
  .concept-subheading::after {
    right: -60px;
  }
  .concept-images {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    margin-top: 35px;
  }
  .concept-images img {
    width: calc(33.33334% - 27px);
    margin-top: 3.5%;
    border-radius: 16px;
  }
  .concept-images img:nth-of-type(2) {
    margin: 0;
  }
}
@media screen and (min-width: 1024px), print {
  .concept-heading::before {
    left: -115px;
  }
  .concept-heading::after {
    right: -115px;
  }
  .concept-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .concept-detail {
    flex: 1;
    margin: 0;
  }
  .concept-image {
    width: 432px;
    margin: 0 0 0 15px;
  }
  .concept-list {
    width: min(100%, 934px);
  }
  .concept-item {
    width: calc(20% - 15px);
  }
  .concept-item:nth-of-type(even) {
    padding-top: 40px;
  }
}

.veterinarian {
  padding-block: calc(50 / var(--sm-base));
}
.veterinarian-heading {
  margin-top: calc(15 / var(--sm-base));
}
.veterinarian-lead {
  margin-top: calc(22 / var(--sm-base));
  line-height: 1.8;
  text-align: center;
}
.veterinarian-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(18 / var(--sm-base)) 0;
  margin-top: calc(40 / var(--sm-base));
}
.veterinarian-item {
  width: 50%;
  padding-inline: calc(3.5 / var(--sm-base));
}
.veterinarian-image {
  width: 100%;
}
.veterinarian-text {
  margin-top: calc(18 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.veterinarian-doctor {
  position: relative;
  margin: calc(65 / var(--sm-base)) calc(-15 / var(--sm-base)) 0;
  padding: calc(72 / var(--sm-base)) calc(15 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #FCF9F2;
  border-radius: calc(16 / var(--sm-base));
}
.veterinarian-doctor-label {
  position: absolute;
  top: calc(-23 / var(--sm-base));
  left: 50%;
  padding: calc(14 / var(--sm-base)) calc(12 / var(--sm-base)) calc(15 / var(--sm-base));
  background: var(--color-orange);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}
.veterinarian-doctor-label::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: calc(18 / var(--sm-base));
  height: calc(10 / var(--sm-base));
  background: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
  pointer-events: none;
}
.veterinarian-doctor-image {
  width: calc(300 / var(--sm-base));
  margin-inline: auto;
}
.veterinarian-doctor-image img {
  width: 100%;
}
.veterinarian-doctor-name {
  margin-top: calc(14 / var(--sm-base));
  font-size: calc(22 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.veterinarian-doctor-name span {
  display: block;
  color: var(--color-green);
  font-size: calc(14 / var(--sm-base));
  letter-spacing: .075em;
}
.veterinarian-doctor-comment p {
  margin-top: 1em;
  line-height: 2;
}
.veterinarian-doctor-comment h3 {
  margin-top: .75em;
  color: var(--color-orange);
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .veterinarian {
    padding-block: 80px 90px;
  }
  .veterinarian-inner {
    background: url(../images/bg_veterinarian_01.png) 88.75% 120px / 189px 193px no-repeat;
  }
  .veterinarian-heading {
    margin-top: 15px;
  }
  .veterinarian-lead {
    margin-top: 30px;
    font-size: 20px;
  }
  .veterinarian-list {
    gap: 18px;
    margin-top: 40px;
  }
  .veterinarian-item {
    width: 172px;
    padding: 0;
  }
  .veterinarian-item:nth-of-type(2) {
    padding-top: 40px;
  }
  .veterinarian-text {
    margin-top: 18px;
    font-size: 16px;
  }
  .veterinarian-doctor {
    margin: 65px 0 0;
    padding: 70px 40px 50px;
    border-radius: 16px;
  }
  .veterinarian-doctor-label {
    top: -24px;
    padding: 11px 32px 12px;
    font-size: 24px;
  }
  .veterinarian-doctor-label::after {
    width: 20px;
    height: 10px;
  }
  .veterinarian-doctor-row {
    display: flex;
  }
  .veterinarian-doctor-image {
    width: min(35%, 300px);
    margin: 0 40px 0 0;
  }
  .veterinarian-doctor-name {
    margin-top: 12px;
    font-size: 22px;
    line-height: 1.6;
  }
  .veterinarian-doctor-name span {
    font-size: 14px;
  }
  .veterinarian-doctor-comment {
    flex: 1;
  }
  .veterinarian-doctor-comment p {
    margin-top: .75em;
    line-height: 1.9;
  }
  .veterinarian-doctor-comment p:first-child {
    margin-top: 0;
  }
  .veterinarian-doctor-comment h3 {
    margin-block: .375em -.2em;
    font-size: 22px;
  }
}

.services {
  padding-block: calc(50 / var(--sm-base)) calc(95 / var(--sm-base));
  background: url(../images/bg_services_01.jpg) 0 0 / 450px 450px repeat;
  border-radius: calc(48 / var(--sm-base)) calc(48 / var(--sm-base)) 0 0;
}
.services-heading {
  position: relative;
  width: fit-content;
  margin: calc(15 / var(--sm-base)) auto calc(32 / var(--sm-base));
}
.services-heading::before,
.services-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(45 / var(--sm-base));
  height: calc(26 / var(--sm-base));
  background: url(../images/bg_services_02.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.services-heading::before {
  left: calc(-12 / var(--sm-base));
}
.services-heading::after {
  right: calc(-12 / var(--sm-base));
  transform: scaleX(-1);
}
.services-item {
  counter-increment: services;
  margin-top: calc(24 / var(--sm-base));
  padding: calc(26 / var(--sm-base)) calc(15 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #fff;
  border-radius: calc(16 / var(--sm-base));
}
.services-row {
  display: flex;
  flex-direction: column;
}
.services-detail {
  display: contents;
}
.services-subheading {
  order: 1;
  color: var(--color-orange);
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(22 / var(--sm-base));
  font-weight: 700;
}
.services-subheading::before {
  content: counter(services, decimal-leading-zero);
  display: block;
  margin-bottom: calc(6 / var(--sm-base));
  color: var(--color-light-green);
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(40 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.services-description {
  order: 3;
  margin-top: calc(-4 / var(--sm-base));
}
.services-description p {
  margin-top: 1em;
  line-height: 2;
}
.services-description strong {
  background: #FEF3D9;
}
.services-description .note {
  margin-top: 2em;
  font-size: calc(12 / var(--sm-base));
}
.services-image {
  order: 2;
  margin-top: calc(8 / var(--sm-base));
}
.services-image img {
  display: block;
  width: 100%;
  border-radius: calc(14 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .services {
    padding-block: 80px 130px;
    border-radius: 48px 48px 0 0;
  }
  .services-heading {
    margin: 15px auto 32px;
    font-size: 40px;
    line-height: 1.45;
  }
  .services-heading::before,
  .services-heading::after {
    width: 83px;
    height: 48px;
  }
  .services-heading::before {
    left: -82px;
  }
  .services-heading::after {
    right: -82px;
  }
  .services-item {
    margin-top: 24px;
    padding: 26px 26px 42px;
    border-radius: 16px;
  }
  .services-row {
    flex-direction: row;
    align-items: center;
    width: min(100%, 886px);
    margin-inline: auto;
    gap: 56px;
  }
  .services-detail {
    display: block;
    flex: 1;
  }
  .services-subheading {
    font-size: 28px;
  }
  .services-subheading::before {
    margin-bottom: 4px;
    font-size: 40px;
  }
  .services-description {
    margin-top: -8px;
  }
  .services-description p {
    line-height: 1.9;
  }
  .services-description .note {
    margin-top: 1.25em;
    font-size: 14px;
    line-height: 1.6;
  }
  .services-image {
    width: min(40%, 350px);
    margin: 0;
  }
  .services-image img {
    border-radius: 16px;
  }
  .services-item:nth-of-type(even) .services-row {
    flex-direction: row-reverse;
  }
}

.senior {
  position: relative;
  z-index: 2;
  top: calc(-50 / var(--sm-base));
  margin-bottom: calc(-100 / var(--sm-base));
  padding-block: calc(45 / var(--sm-base)) calc(40 / var(--sm-base));
  background: url(../images/bg_senior_01.jpg) 50% 50% / cover no-repeat;
  border-radius: calc(48 / var(--sm-base));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.senior::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 59, 35, .77);
  pointer-events: none;
}
.senior-inner {
  position: relative;
  z-index: 2;
}
.senior-heading {
  position: relative;
  width: fit-content;
  margin: calc(12 / var(--sm-base)) auto 0;
}
.senior-heading::before,
.senior-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(47 / var(--sm-base));
  height: calc(27 / var(--sm-base));
  background: url(../images/bg_senior_02.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.senior-heading::before {
  left: calc(-31 / var(--sm-base));
}
.senior-heading::after {
  right: calc(-31 / var(--sm-base));
  transform: scaleX(-1);
}
.senior-subheading {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .025em;
}
.senior-lead {
  margin-top: calc(25 / var(--sm-base));
  font-weight: 700;
  line-height: 2;
}
.senior-point {
  margin-top: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 2;
}
.senior-note {
  margin-top: calc(18 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  line-height: 2;
}
.senior .c-cta {
  margin-top: calc(40 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .senior {
    top: -50px;
    margin-bottom: -100px;
    padding-block: 100px;
    border-radius: 48px;
  }
  .senior-heading {
    margin: 25px auto 0;
  }
  .senior-heading::before,
  .senior-heading::after {
    width: 83px;
    height: 48px;
  }
  .senior-heading::before {
    left: -83px;
  }
  .senior-heading::after {
    right: -83px;
  }
  .senior-subheading {
    margin-top: 45px;
    font-size: 22px;
    letter-spacing: 0;
  }
  .senior-lead {
    margin-top: 35px;
    font-size: 18px;
    line-height: 1.7;
  }
  .senior-point {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.7;
  }
  .senior-note {
    margin-top: 27px;
    font-size: 14px;
  }
  .senior .c-cta {
    margin-top: 50px;
  }
}

.place {
  padding-block: calc(90 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #EBF5EC;
}
.place-heading {
  margin-top: calc(15 / var(--sm-base));
}
.place-lead {
  margin-top: calc(22 / var(--sm-base));
  line-height: 1.8;
  text-align: center;
}
.place-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 / var(--sm-base));
  margin-top: calc(24 / var(--sm-base));
}
.place-item {
  width: 100%;
}
.place-image {
  display: block;
  width: 100%;
  border-radius: calc(16 / var(--sm-base));
}
.place-text {
  margin-top: calc(10 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.place-summary {
  margin-top: calc(25 / var(--sm-base));
  color: var(--color-green);
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(22 / var(--sm-base));
  text-align: center;
}
.place-summary span {
  background: linear-gradient(#fee101, #fee101) 100% 100% / 100% calc(4 / var(--sm-base)) no-repeat;
}
@media screen and (min-width: 768px), print {
  .place {
    padding-block: 125px 90px;
  }
  .place-heading {
    margin-top: 15px;
  }
  .place-lead {
    margin-top: 32px;
    font-size: 22px;
  }
  .place-list {
    margin-top: 24px;
    gap: 16px;
  }
  .place-item {
    width: calc(33.33334% - 11px);
  }
  .place-image {
    border-radius: 16px;
  }
  .place-text {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.4;
  }
  .place-summary {
    margin-top: 35px;
    font-size: 28px;
  }
  .place-summary span {
    padding-bottom: 2px;
    background: linear-gradient(#fee101, #fee101) 100% 100% / 100% 8px no-repeat;
  }
}
@media screen and (min-width: 1024px), print {
  .place-text {
    font-size: 22px;
  }
  .place-summary span {
    padding-bottom: 8px;
  }
}

.recommended {
  padding-block: calc(40 / var(--sm-base)) calc(60 / var(--sm-base));
}
.recommended-heading {
  position: relative;
  width: fit-content;
  margin: calc(28 / var(--sm-base)) auto 0;
}
.recommended-heading::before,
.recommended-heading::after {
  content: '';
  position: absolute;
  bottom: calc(2 / var(--sm-base));
  width: calc(43 / var(--sm-base));
  height: calc(24 / var(--sm-base));
  background: url(../images/bg_recommended_01.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.recommended-heading::before {
  left: calc(-42 / var(--sm-base));
}
.recommended-heading::after {
  right: calc(-42 / var(--sm-base));
  transform: scaleX(-1);
}
.recommended-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(24 / var(--sm-base)) calc(7 / var(--sm-base));
  margin-top: calc(40 / var(--sm-base));
}
.recommended-item {
  width: calc(50% - (3.5 / var(--sm-base)));
}
.recommended-image {
  width: 100%;
}
.recommended-text {
  margin-top: calc(16 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .recommended {
    padding-block: 80px 160px;
  }
  .recommended-heading {
    margin-top: 13px;
  }
  .recommended-heading::before,
  .recommended-heading::after {
    bottom: 0;
    width: 83px;
    height: 48px;
  }
  .recommended-heading::before {
    left: -95px;
  }
  .recommended-heading::after {
    right: -95px;
  }
  .recommended-list {
    gap: 32px 16px;
    margin-top: 32px;
  }
  .recommended-item {
    width: calc(33.33334% - 12px);
  }
  .recommended-item:nth-of-type(4) {
    margin-left: 120px;
  }
  .recommended-image {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .recommended-text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1024px), print {
  .recommended-item {
    width: calc(25% - 12px);
  }
  .recommended-item:nth-of-type(4) {
    margin-left: 0;
  }
  .recommended-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1240px), print {
  .recommended-text {
    font-size: 22px;
  }
  .recommended-item:nth-of-type(4) .recommended-text {
    margin: 16px 3px 0;
  }
}

.membership {
  position: relative;
  background: #FCF9F2;
}
.membership::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/80;
  background: url(../images/bg_membership_01.svg) 0 0 / contain no-repeat;
  pointer-events: none;
}
.membership-body {
  padding-block: calc(45 / var(--sm-base)) calc(40 / var(--sm-base));
  overflow: hidden;
}
.membership-inner {
  position: relative;
}
.membership-inner::before,
.membership-inner::after {
  content: '';
  position: absolute;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.membership-inner::before {
  top: calc(10 / var(--sm-base));
  left: calc(32 / var(--sm-base));
  width: calc(224 / var(--sm-base));
  height: calc(227 / var(--sm-base));
  background-image: url(../images/bg_membership_02.png);
}
.membership-inner::after {
  bottom: calc(328 / var(--sm-base));
  right: calc(-24 / var(--sm-base));
  width: calc(198 / var(--sm-base));
  height: calc(162 / var(--sm-base));
  background-image: url(../images/bg_membership_03.png);
}
.membership-contents {
  position: relative;
  z-index: 2;
}
.membership-heading {
  position: relative;
  width: fit-content;
  margin: calc(28 / var(--sm-base)) auto 0;
}
.membership-heading::before,
.membership-heading::after {
  content: '';
  position: absolute;
  bottom: calc(2 / var(--sm-base));
  width: calc(47 / var(--sm-base));
  height: calc(27 / var(--sm-base));
  background: url(../images/bg_membership_04.png) 0 0 / contain no-repeat;
  pointer-events: none;
}
.membership-heading::before {
  left: calc(-47 / var(--sm-base));
}
.membership-heading::after {
  right: calc(-47 / var(--sm-base));
  transform: scaleX(-1);
}
.membership-subheading {
  margin-top: calc(40 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 2.2;
}
.membership-detail p {
  margin-top: 1em;
  line-height: 1.9;
}
.membership-image {
  margin-top: calc(24 / var(--sm-base));
}
.membership-image img {
  display: block;
  width: 100%;
  border-radius: calc(10 / var(--sm-base));
}
.membership .c-cta {
  margin-top: calc(60 / var(--sm-base));
}
.membership .c-cta-note {
  color: #61716C;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .membership-body {
    padding-block: 80px;
  }
  .membership-inner::before {
    top: -60px;
    right: 76%;
    left: auto;
    width: 401px;
    height: 406px;
  }
  .membership-inner::after {
    bottom: 10px;
    right: auto;
    left: 78.5%;
    width: 363px;
    height: 297px;
  }
  .membership-heading {
    margin: 15px auto 0;
  }
  .membership-heading::before,
  .membership-heading::after {
    bottom: 0;
    width: 82px;
    height: 47px;
  }
  .membership-heading::before {
    left: -83px;
  }
  .membership-heading::after {
    right: -83px;
  }
  .membership-subheading {
    margin: 18px 0 -4px;
    font-size: 24px;
  }
  .membership-detail p {
    margin-top: .75em;
    line-height: 2;
  }
  .membership-image {
    margin-top: 40px;
  }
  .membership-image img {
    border-radius: 16px;
  }
  .membership .c-cta {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px), print {
  .membership-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .membership-detail {
    flex: 1;
  }
  .membership-subheading {
    margin-top: 0;
  }
  .membership-image {
    width: min(47.5%, 510px);
    margin: 0 0 0 40px;
  }
}

.line {
  padding-block: calc(40 / var(--sm-base));
  background: url(../images/bg_line_01.jpg) 50% 50% / cover no-repeat;
}
.line-heading {
  margin-top: calc(15 / var(--sm-base));
}
.line-lead {
  margin-top: calc(30 / var(--sm-base));
  font-size: calc(17 / var(--sm-base));
  letter-spacing: .05em;
  text-align: center;
}
.line-list {
  margin-top: calc(30 / var(--sm-base));
}
.line-item {
  margin-top: calc(8 / var(--sm-base));
  padding: calc(16 / var(--sm-base)) calc(8 / var(--sm-base));
  background: var(--color-green);
  border-radius: calc(8 / var(--sm-base));
  color: #fff;
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
}
.line-item span {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding-left: calc(34 / var(--sm-base));
}
.line-item span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(21 / var(--sm-base));
  height: calc(21 / var(--sm-base));
  background: #fff;
  border-radius: calc(2 / var(--sm-base));
  transform: translateY(-50%);
  pointer-events: none;
}
.line-item span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(6 / var(--sm-base));
  width: calc(17 / var(--sm-base));
  height: calc(12 / var(--sm-base));
  background: url(../images/icn_check_01.png) 0 0 / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}
.line-summary {
  position: relative;
  width: fit-content;
  margin: calc(23 / var(--sm-base)) auto calc(50 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  text-align: center;
  letter-spacing: .05em;
}
.line-summary::before,
.line-summary::after {
  content: '';
  position: absolute;
  bottom: calc(1 / var(--sm-base));
  width: calc(1 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  background: var(--color-default);
}
.line-summary::before {
  left: calc(-10 / var(--sm-base));
  transform: rotate(-45deg);
}
.line-summary::after {
  right: calc(-10 / var(--sm-base));
  transform: rotate(45deg);
}
.line .c-cta-note {
  color: #61716C;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .line {
    padding-block: 90px 80px;
  }
  .line-heading {
    margin: 12px -10px 0;
  }
  .line-lead {
    margin-top: 24px;
    font-size: 22px;
    letter-spacing: .0375em;
  }
  .line-list {
    display: flex;
    flex-wrap: wrap;
    width: 560px;
    margin: 26px auto 0;
    gap: 10px;
  }
  .line-item {
    width: 100%;
    margin: 0;
    padding: 8px 8px 9px;
    border-radius: 8px;
    font-size: 24px;
  }
  .line-item span {
    padding-left: 38px;
  }
  .line-item span::before {
    width: 25px;
    height: 25px;
    border-radius: 2px;
  }
  .line-item span::after {
    left: 6px;
    width: 21px;
    height: 15px;
  }
  .line-summary {
    margin: 20px auto 55px;
    font-size: 22px;
  }
  .line-summary::before,
  .line-summary::after {
    bottom: 5px;
    width: 1px;
    height: 28px;
  }
  .line-summary::before {
    left: -16px;
  }
  .line-summary::after {
    right: -16px;
  }
}
@media screen and (min-width: 1024px), print {
  .line-list {
    width: auto;
  }
  .line-item {
    width: calc(50% - 5px);
  }
}

.flow {
  padding-block: calc(50 / var(--sm-base));
  background: #FCF9F2;
}
.flow-heading {
  margin-block: calc(28 / var(--sm-base)) calc(-18 / var(--sm-base));
}
.flow-item {
  position: relative;
  margin-top: calc(56 / var(--sm-base));
}
.flow-item:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: calc(-35 / var(--sm-base));
  left: 50%;
  width: calc(26 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  background: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
  pointer-events: none;
}
.flow-image {
  width: calc(140 / var(--sm-base));
  margin-inline: auto;
}
.flow-image img {
  width: 100%;
}
.flow-step {
  margin-top: calc(3 / var(--sm-base));
  color: var(--color-orange);
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  letter-spacing: .075em;
}
.flow-subheading {
  margin-top: calc(15 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
}
.flow-description {
  margin-top: calc(20 / var(--sm-base));
  line-height: 1.8;
  letter-spacing: .05em;
}
.flow-note {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .flow {
    padding-block: 95px;
    overflow: hidden;
  }
  .flow-inner {
    position: relative;
  }
  .flow-inner::before,
  .flow-inner::after {
    content: '';
    position: absolute;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }
  .flow-inner::before {
    top: -50px;
    left: 72.2%;
    width: 283px;
    height: 243px;
    background-image: url(../images/bg_flow_01.png);
  }
  .flow-inner::after {
    right: 88.5%;
    bottom: -60px;
    width: 90px;
    height: 138px;
    background-image: url(../images/bg_flow_02.png);
  }
  .flow-contents {
    position: relative;
    z-index: 2;
  }
  .flow-heading {
    margin-block: 26px -35px;
  }
  .flow-item {
    display: flex;
    align-items: center;
    width: min(100%, 880px);
    margin: 80px auto 0;
  }
  .flow-item:not(:first-of-type)::before {
    top: -42px;
    width: 26px;
    height: 18px;
  }
  .flow-image {
    width: 200px;
  }
  .flow-detail {
    flex: 1;
    margin-left: 48px;
  }
  .flow-step {
    margin: 0;
    font-size: 18px;
  }
  .flow-subheading {
    margin-top: 12px;
    font-size: 24px;
  }
  .flow-description {
    margin-top: 20px;
  }
  .flow-note {
    margin-top: 22px;
    font-size: 14px;
  }
}

.faq {
  padding-block: calc(35 / var(--sm-base));
}
.faq-heading {
  margin-block: calc(28 / var(--sm-base)) calc(46 / var(--sm-base));
}
.faq-item {
  margin-top: calc(32 / var(--sm-base));
  overflow: hidden;
}
.faq-item-summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(68 / var(--sm-base));
  padding: calc(16 / var(--sm-base)) 0 calc(16 / var(--sm-base)) calc(84 / var(--sm-base));
  background: #FCF9F2;
  border-radius: calc(10 / var(--sm-base));
}
.faq-item-summary::before,
.faq-item-summary::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.faq-item-summary::before {
  left: calc(24 / var(--sm-base));
  width: calc(36 / var(--sm-base));
  height: calc(36 / var(--sm-base));
  background: var(--color-default);
  border-radius: 50%;
}
.faq-item-summary::after {
  content: 'Q';
  left: calc(35 / var(--sm-base));
  z-index: 2;
  color: #fff;
  font-size: calc(16 / var(--sm-base));
  font-family: var(--font-Montserrat);
  font-weight: 600;
  line-height: 1;
}
.faq-item-summary span {
  position: relative;
  display: block;
  padding-right: calc(64 / var(--sm-base));
  width: 100%;
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.7;
}
.faq-item-summary span::before,
.faq-item-summary span::after {
  content: '';
  position: absolute;
  top: 50%;
  background: var(--color-default);
  transform: translateY(-50%);
  pointer-events: none;
}
.faq-item-summary span::before {
  right: calc(24 / var(--sm-base));
  width: calc(16 / var(--sm-base));
  height: calc(2 / var(--sm-base));
}
.faq-item-summary span::after {
  right: calc(31 / var(--sm-base));
  width: calc(2 / var(--sm-base));
  height: calc(16 / var(--sm-base));
  transition: opacity var(--transition);
}
.faq-item-contents-inner {
  position: relative;
  padding: calc(24 / var(--sm-base)) calc(24 / var(--sm-base)) 0 calc(84 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  line-height: 1.8;
  letter-spacing: .05em;
}
.faq-item-contents-inner::after {
  content: 'A';
  position: absolute;
  top: calc(24 / var(--sm-base));
  left: calc(24 / var(--sm-base));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(36 / var(--sm-base));
  height: calc(36 / var(--sm-base));
  background: var(--color-orange);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-Montserrat);
  font-size: calc(16 / var(--sm-base));
  font-weight: 600;
  line-height: 1;
}
.faq-item-contents .note {
  font-size: 90%;
}
.faq-item[open] .faq-item-summary > span::after {
  opacity: 0;
}
@media screen and (min-width: 768px), print {
  .faq {
    padding-block: 80px;
  }
  .faq-heading {
    margin-block: 13px 32px;
  }
  .faq-item {
    width: min(100%, 880px);
    margin: 32px auto 0;
  }
  .faq-item-summary {
    min-height: 68px;
    padding: 16px 0 16px 84px;
    border-radius: 10px;
  }
  .faq-item-summary::before {
    left: 24px;
    width: 36px;
    height: 36px;
  }
  .faq-item-summary::after {
    left: 35px;
    font-size: 16px;
  }
  .faq-item-summary span {
    padding-right: 64px;
    font-size: 16px;
  }
  .faq-item-summary span::before {
    right: 24px;
    width: 16px;
    height: 2px;
  }
  .faq-item-summary span::after {
    right: 31px;
    width: 2px;
    height: 16px;
  }
  .faq-item-contents-inner {
    padding: 24px 30px 0 84px;
    font-size: 16px;
    letter-spacing: .0375em;
  }
  .faq-item-contents-inner::after {
    top: 24px;
    left: 24px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.message {
  position: relative;
  padding-block: calc(40 / var(--sm-base));
  background: url(../images/bg_message_01.jpg) 50% 50% / cover no-repeat;
  color: #fff;
  text-align: center;
}
.message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 59, 35, .77);
  pointer-events: none;
}
.message-inner {
  position: relative;
  z-index: 2;
}
.message-heading {
  margin-top: calc(15 / var(--sm-base));
  color: #fff;
}
.message-lead {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  line-height: 1.9;
}
.message-text01 {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
}
.message-text02 {
  margin-block: calc(10 / var(--sm-base)) calc(40 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .message {
    padding-block: 100px 110px;
  }
  .message-heading {
    width: min(100%, 820px);
    margin: 13px auto 0;
  }
  .message-lead {
    margin-top: 25px;
    font-size: 22px;
  }
  .message-text01 {
    margin-top: 18px;
    font-size: 22px;
  }
  .message-text02 {
    margin-block: 6px 48px;
    font-size: 16px;
  }
}


.footer {
  padding-block: calc(40 / var(--sm-base)) calc(104 / var(--sm-base));
  background: #FFFDF8;
}
.footer-logo {
  width: calc(157 / var(--sm-base));
  margin-inline: auto;
  font-size: 0;
}
.footer-logo img {
  width: 100%;
}
.footer-name {
  margin-top: calc(12 / var(--sm-base));
  font-family: var(--font-ZenMaruGothic);
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.footer-name span {
  display: block;
  margin-top: calc(12 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  line-height: 2.2;
}
.footer-info {
  margin-top: calc(15 / var(--sm-base));
  letter-spacing: .075em;
  line-height: 1.5;
  text-align: center;
}
.footer-notice {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  font-weight: 400;
  line-height: 2;
}
.footer-copyright {
  margin-top: calc(35 / var(--sm-base));
  font-size: calc(10 / var(--sm-base));
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer {
    padding-block: 40px 190px;
  }
  .footer-logo {
    width: 188px;
  }
  .footer-name {
    margin-top: 4px;
    font-size: 30px;
  }
  .footer-name span {
    margin-top: 2px;
    font-size: 16px;
  }
  .footer-info {
    margin-top: 15px;
    font-size: 15px;
  }
  .footer-notice {
    margin-top: 14px;
    font-size: 16px;
  }
  .footer-copyright {
    margin-top: 42px;
    font-size: 10px;
  }
}
@media screen and (min-width: 1024px), print {
  .footer-notice {
    width: min(100%, 870px);
    margin-inline: auto;
    text-align: center;
  }
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #FCF9F2;
}
.fixed-cta-inner {
  display: flex;
  gap: calc(8 / var(--sm-base));
  padding: calc(8 / var(--sm-base)) calc(25 / var(--sm-base)) calc(14 / var(--sm-base));
}
.fixed-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46%;
  background: var(--color-orange);
  border: calc(3 / var(--sm-base)) solid #fff;
  box-shadow: 0 calc(3 / var(--sm-base)) 0 #AC6A03;
  border-radius: calc(16 / var(--sm-base));
  color: #fff;
  font-size: calc(14 / var(--sm-base));
  font-weight: 700;
  text-decoration: none;
}
.fixed-cta-tel span {
  position: relative;
  display: inline-block;
  padding-left: calc(28 / var(--sm-base));
}
.fixed-cta-tel span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(21 / var(--sm-base));
  height: calc(21 / var(--sm-base));
  background: url(../images/icn_tel_01.png) 0 0 / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-cta-tel {
    transition: opacity var(--transition);
  }
  .fixed-cta-tel:hover {
    opacity: var(--hover-opacity);
  }
}
.fixed-cta .c-cta-anchor {
  flex: 1;
  padding: calc(7 / var(--sm-base)) calc(8 / var(--sm-base)) calc(8 / var(--sm-base));
  box-shadow: 0 calc(3 / var(--sm-base)) 0 #077E37;
  border-radius: calc(16 / var(--sm-base));
}
.fixed-cta .c-cta-label {
  display: none;
}
.fixed-cta .c-cta-title {
  padding-left: calc(32 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .fixed-cta-inner {
    width: min(100%, 1000px);
    gap: 20px;
    margin-inline: auto;
    padding: 40px 20px 22px;
  }
  .fixed-cta-tel {
    width: 37.5%;
    border-width: 3px;
    border-radius: 100vmax;
    box-shadow: 0 8px 0 #AC6A03;
    font-size: 22px;
  }
  .fixed-cta-tel span {
    padding-left: 38px;
  }
  .fixed-cta-tel span::before {
    width: 31px;
    height: 31px;
  }
  .fixed-cta .c-cta-anchor {
    padding: 26px 10px 18px;
    border-radius: 100vmax;
    box-shadow: 0 8px 0 #077E37;
  }
  .fixed-cta .c-cta-label {
    display: block;
  }
  .fixed-cta .c-cta-title {
    padding-left: 46px;
    font-size: 22px;
  }
  .fixed-cta .c-cta-title br {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .fixed-cta-inner {
    gap: 40px;
  }
  .fixed-cta-tel,
  .fixed-cta .c-cta-title {
    font-size: 26px;
  }
}