@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 : #041052;
  --color-skyblue : #2989D7;
  --color-red     : #B02128;
  --color-yellow  : #FCFF00;
  --color-gold    : #DBCBA8;

  --font-sansSerif    : 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif        : 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', Garamond, 'Times New Roman', serif;
  --font-sansSerif-en : 'DM Sans', 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif-en     : 'EB Garamond', Garamond, 'Times New Roman', serif;

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

body {
  width: 100%;
  background: #fff;
  color: var(--color-default);
  font-family: var(--font-sansSerif);
  font-size: calc(16 / 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);
  }
}
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
-------------------------------------------------- */
.header {
  position: relative;
  z-index: 2;
  padding: calc(13 / var(--sm-base)) 0 calc(13 / var(--sm-base)) calc(16 / var(--sm-base));
  background: #fff;
  box-shadow: 0 calc(4 / var(--sm-base)) calc(4 / var(--sm-base)) rgba(0, 0, 0, .25);
}
.header-logo {
  width: calc(183 / var(--sm-base));
  font-size: 0;
}
.header-logo img {
  width: 100%;
}
.header-line {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-inline: calc(16 / var(--sm-base));
  background: #58C33C;
}
.header-line > span {
  position: relative;
  display: inline-block;
  padding-left: calc(40 / var(--sm-base));
  color: #fff;
  font-size: calc(14 / var(--sm-base));
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
}
.header-line > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(34 / var(--sm-base));
  height: calc(32 / var(--sm-base));
  background: url(../images/icn_line_01.webp) 0 0 / contain no-repeat;
  transform: translateY(-50%);
}
.header-line > span > span {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .header-line {
    transition: opacity var(--transition);
  }
  .header-line:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .header {
    padding: 13px 0 13px 40px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  }
  .header-logo {
    width: 300px;
  }
  .header-line {
    padding-inline: 30px;
  }
  .header-line > span {
    padding-left: 38px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .header-line > span::before {
    width: 30px;
    height: 29px;
  }
  .header-line > span br {
    display: none;
  }
  .header-line > span > span {
    display: inline;
  }
}

.cta {
  position: relative;
  padding-block: calc(40 / var(--sm-base));
  background: url(../images/bg_cta_01_sm.webp) 50% 50% / cover no-repeat;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  opacity: .8;
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding-inline: calc(15 / var(--sm-base));
}
.cta-heading {
  position: relative;
  margin-inline: calc(10 / var(--sm-base));
  padding: calc(12 / var(--sm-base));
  background: var(--color-default);
  border-radius: calc(5 / var(--sm-base));
  color: #fff;
  font-family: var(--font-serif);
  font-size: calc(20 / var(--sm-base));
  font-weight: 800;
  letter-spacing: -.05em;
  text-align: center;
}
.cta-heading::after {
  content: '';
  position: absolute;
  top: 99%;
  left: calc(50% - (7 / var(--sm-base)));
  width: calc(14 / var(--sm-base));
  height: calc(8 / var(--sm-base));
  background: var(--color-default);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.cta-heading span {
  color: var(--color-yellow);
}
.cta-lead {
  position: relative;
  width: fit-content;
  margin: calc(28 / var(--sm-base)) auto 0;
  padding-inline: calc(18 / var(--sm-base));
  font-family: var(--font-serif);
  font-size: calc(20 / var(--sm-base));
  font-weight: 800;
  text-shadow: 0 0 calc(8 / var(--sm-base)) #fff, 0 0 calc(4 / var(--sm-base)) #fff;
  line-height: 1.45;
  text-align: center;
}
.cta-lead::before,
.cta-lead::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: calc(1 / var(--sm-base));
  height: calc(34 / var(--sm-base));
  background: var(--color-default);
}
.cta-lead::before {
  left: 0;
  transform: rotate(-22deg);
}
.cta-lead::after {
  right: calc(15 / var(--sm-base));
  transform: rotate(22deg);
}
.cta02 .cta-lead {
  margin: calc(28 / var(--sm-base)) calc(-12 / var(--sm-base)) 0 calc(-7 / var(--sm-base));
  padding-inline: calc(10 / var(--sm-base));
  letter-spacing: -.1em;
}
.cta02 .cta-lead:before {
  left: calc(2 / var(--sm-base));
}
.cta02 .cta-lead:after {
  right: calc(8 / var(--sm-base));
}
.cta03 .cta-lead {
  margin: calc(28 / var(--sm-base)) calc(-14 / var(--sm-base)) 0 calc(-4 / var(--sm-base));
  letter-spacing: -.1em;
}
.cta03 .cta-lead:before {
  left: calc(7 / var(--sm-base));
}
.cta03 .cta-lead:after {
  right: calc(12 / var(--sm-base));
}
.cta-point {
  display: flex;
  margin: calc(20 / var(--sm-base)) calc(-3 / var(--sm-base)) 0;
}
.cta-point li {
  width: calc(33.33334% - (6 / var(--sm-base)));
  aspect-ratio: 111/96;
  padding-top: calc(8 / var(--sm-base));
  background: url(../images/bg_cta_02.webp) 0 0 / contain no-repeat;
  margin: 0 calc(3 / var(--sm-base));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.cta-point li strong {
  display: block;
  color: var(--color-gold);
  font-size: calc(20 / var(--sm-base));
}
.cta-point li:nth-of-type(1) strong span:nth-child(1) {
  display: inline-block;
  margin-top: calc(-10 / var(--sm-base));
  font-family: var(--font-serif-en);
  font-size: calc(58 / var(--sm-base));
  font-weight: 500;
  line-height: 1;
  transform: skew(-7deg);
}
.cta-point li:nth-of-type(1) strong span:nth-child(2) {
  position: relative;
  top: calc(-1 / var(--sm-base));
  left: calc(-1 / var(--sm-base));
  display: inline-block;
  transform: skew(-7deg);
}
.cta-point li:nth-of-type(2) strong {
  font-size: calc(23 / var(--sm-base));
}
.cta-point li:nth-of-type(2) sup {
  font-size: 60%;
}
.cta-point li:nth-of-type(3) strong {
  font-size: calc(21 / var(--sm-base));
  letter-spacing: -.05em;
}
.cta-action {
  margin-top: calc(26 / var(--sm-base));
}
.cta-button {
  position: relative;
  display: block;
  margin-top: calc(20 / var(--sm-base));
  border-radius: calc(8 / var(--sm-base));
  color: #fff;
  font-family: var(--font-sansSerif);
  font-weight: 700;
  text-align: center;
}
.cta-button > span {
  position: relative;
  display: inline-block;
}
.cta-line {
  padding: calc(14 / var(--sm-base)) calc(10 / var(--sm-base)) calc(11 / var(--sm-base));
  background: #58C33C;
  box-shadow: 0 calc(6 / var(--sm-base)) 0 #3C6132;
  font-size: calc(18 / var(--sm-base));
}
.cta-line > span {
  padding-left: calc(60 / var(--sm-base));
}
.cta-line > span::before {
  content: '';
  position: absolute;
  top: calc(2 / var(--sm-base));
  left: calc(-2 / var(--sm-base));
  width: calc(43 / var(--sm-base));
  height: calc(41 / var(--sm-base));
  background: url(../images/icn_line_01.webp) 0 0 / contain no-repeat;
}
.cta-line > span span {
  display: block;
  font-size: calc(14 / var(--sm-base));
}
.cta-tel {
  padding: calc(20 / var(--sm-base)) calc(10 / var(--sm-base)) calc(14 / var(--sm-base));
  background: var(--color-red);
  box-shadow: 0 calc(6 / var(--sm-base)) 0 #691611;
  font-family: var(--font-sansSerif-en);
  font-size: calc(22 / var(--sm-base));
  font-weight: 600;
  line-height: 1;
}
.cta-tel > span {
  padding-left: calc(48 / var(--sm-base));
  letter-spacing: .025em;
  text-align: left;
}
.cta-tel > span::before {
  content: '';
  position: absolute;
  top: calc(-4 / var(--sm-base));
  left: calc(2 / var(--sm-base));
  width: calc(31 / var(--sm-base));
  height: calc(41 / var(--sm-base));
  background: url(../images/icn_tel_01.webp) 0 0 / contain no-repeat;
}
.cta-tel > span > span {
  display: block;
  letter-spacing: 0;
}
.cta-tel > span > span span:nth-child(1) {
  font-family: var(--font-sansSerif);
  font-size: calc(13 / var(--sm-base));
  font-weight: 500;
}
.cta-tel > span > span span:nth-child(2) {
  margin-left: .75em;
  font-family: var(--font-sansSerif-en);
  font-size: calc(13 / var(--sm-base));
  font-weight: 500;
}
.cta-tel.--disabled {
  cursor: default;
  pointer-events: none;
}
.cta-notice {
  margin-top: calc(24 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  font-weight: 400;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .cta-button:not(.--disabled):hover {
    top: calc(6 / var(--sm-base));
    box-shadow: none;
  }
}
@media screen and (min-width: 768px), print {
  .cta {
    padding-block: 80px;
    background-image: url(../images/bg_cta_01_lg.webp);
  }
  .cta-inner {
    width: min(100%, 600px);
    margin-inline: auto;
    padding-inline: 20px;
  }
  .cta-heading {
    width: min(100%, 538px);
    margin-inline: auto;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
  }
  .cta-heading::after {
    left: calc(50% - 9px);
    width: 18px;
    height: 11px;
  }
  .cta-lead {
    left: 10px;
    margin: 24px auto 0;
    padding-inline: 25px;
    font-size: 20px;
    text-shadow: 0 0 12px #fff, 0 0 4px #fff;
  }
  .cta-lead::before,
  .cta-lead::after {
    bottom: -2px;
    width: 1px;
    height: 46px;
  }
  .cta-lead::after {
    right: 20px;
  }
  .cta02 .cta-lead {
    left: 0;
    margin: 24px auto 0;
    padding-inline: 25px;
    letter-spacing: 0;
  }
  .cta02 .cta-lead:before {
    left: 12px;
  }
  .cta02 .cta-lead:after {
    right: 12px;
  }
  .cta03 .cta-lead {
    margin: 20px auto 0;
    padding-inline: 25px;
    letter-spacing: 0;
  }
  .cta03 .cta-lead:before {
    left: -36px;
  }
  .cta03 .cta-lead:after {
    right: -16px;
  }
  .cta-point {
    margin: 34px -12px 0;
  }
  .cta-point li {
    width: calc(33.33334% - 24px);
    padding-top: 32px;
  }
  .cta-point li:nth-of-type(1) {
    padding-top: 18px;
  }
  .cta-point li strong {
    font-size: 30px;
  }
  .cta-point li:nth-of-type(1) strong span:nth-child(1) {
    margin-top: -14px;
    font-size: 90px;
  }
  .cta-point li:nth-of-type(1) strong span:nth-child(2) {
    top: -1px;
    left: -1px;
  }
  .cta-point li:nth-of-type(2) strong {
    margin-top: 3px;
    font-size: 31px;
  }
  .cta-point li:nth-of-type(3) strong {
    margin-top: 4px;
    font-size: 29px;
    letter-spacing: 0;
  }
  .cta-action {
    margin-top: 22px;
  }
  .cta-button {
    margin-top: 0;
    border-radius: 8px;
  }
  .cta-line {
    width: 400px;
    margin-inline: auto;
    padding: 18px 10px 11px;
    box-shadow: 0 6px 0 #3C6132;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .025em;
  }
  .cta-line > span {
    padding-left: 58px;
  }
  .cta-line > span::before {
    top: 0;
    left: 0;
    width: 43px;
    height: 41px;
  }
  .cta-line > span span {
    margin: 4px 0 0 4px;
    font-size: 14px;
    letter-spacing: 0;
  }
  .cta-tel {
    margin-top: 18px;
    padding: 0;
    background: none;
    box-shadow: none;
    color: var(--color-default);
    font-size: 24px;
  }
  .cta-tel > span {
    padding-left: 34px;
  }
  .cta-tel > span::before {
    top: -4px;
    left: 0;
    width: 23px;
    height: 30px;
    background: var(--color-default);
    -webkit-mask: url(../images/icn_tel_01.webp) 0 0 / cover no-repeat;
    mask: url(../images/icn_tel_01.webp) 0 0 / cover no-repeat;
  }
  .cta-tel > span > span {
    margin-left: 3px;
  }
  .cta-tel > span > span span:nth-child(1),
  .cta-tel > span > span span:nth-child(2) {
    font-size: 14px;
  }
  .cta-notice {
    margin-top: 15px;
    font-size: 12px;
  }
  @media (hover: hover) and (pointer: fine) {
    .cta-button:not(.--disabled):hover {
      top: 6px;
    }
  }
}

.u-red {
  color: var(--color-red);
}
.u-yellow {
  color: var(--color-yellow);
}
.c-heading-primary {
  color: #fff;
  font-family: var(--font-serif);
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.c-heading-primary-label {
  display: block;
  margin-bottom: calc(3 / var(--sm-base));
  font-family: var(--font-serif-en);
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  letter-spacing: .075em;
}
.c-heading-primary-bg {
  position: relative;
  display: block;
  width: calc(314 / var(--sm-base));
  height: calc(1.5 / var(--sm-base));
  margin: calc(18 / var(--sm-base)) auto 0;
  background: linear-gradient(90deg, #fff 54.7%, transparent 54.7%, transparent 69.7%, #fff 69.7%);
}
.c-heading-primary-bg::after {
  content: '';
  position: absolute;
  top: calc(1.5 / var(--sm-base));
  left: calc(171 / var(--sm-base));
  width: calc(1.5 / var(--sm-base));
  height: calc(54 / var(--sm-base));
  background: #fff;
  transform-origin: 0 0;
  transform: rotate(-60deg);
}
@media screen and (min-width: 768px), print {
  .c-heading-primary {
    font-size: 28px;
  }
  .c-heading-primary-label {
    margin-bottom: 4px;
    font-size: 20px;
    letter-spacing: .05em;
  }
  .c-heading-primary-bg {
    width: 378px;
    height: 1px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #fff 54.2%, transparent 54.2%, transparent 66.5%, #fff 66.5%);
  }
  .c-heading-primary-bg::after {
    top: 1px;
    left: 204px;
    width: 1px;
    height: 54px;
  }
}

.fv img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .fv {
    overflow: hidden;
  }
  .fv-image {
    width: 120vw;
    margin-left: -10vw;
  }
}
@media screen and (min-width: 1260px), print {
  .fv-image {
    width: 100%;
    margin: 0;
  }
}

.worries-contents01 {
  position: relative;
  padding-block: calc(38 / var(--sm-base)) calc(85 / var(--sm-base));
  background: url(../images/bg_worries_01_sm.webp) 50% 0 / cover no-repeat;
}
.worries-contents01::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3C8DD1;
  opacity: .9;
}
.worries-contents01-inner {
  position: relative;
  z-index: 2;
  padding-inline: calc(15 / var(--sm-base));
}
.worries-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(30 / var(--sm-base)) calc(-7 / var(--sm-base)) 0;
}
.worries-item {
  position: relative;
  width: calc(50% - (14 / var(--sm-base)));
  margin: calc(58 / var(--sm-base)) calc(7 / var(--sm-base)) 0;
  padding: calc(30 / var(--sm-base)) calc(10 / var(--sm-base)) calc(18 / var(--sm-base));
  background: #fff;
}
.worries-item::before {
  content: '';
  position: absolute;
  top: calc(-42 / var(--sm-base));
  left: 50%;
  width: calc(78 / var(--sm-base));
  height: calc(78 / var(--sm-base));
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}
.worries-item::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(27 / var(--sm-base));
  height: calc(17 / var(--sm-base));
  background: var(--color-default);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  pointer-events: none;
}
.worries-item img {
  position: absolute;
  top: calc(-32 / var(--sm-base));
  left: 50%;
  z-index: 2;
  width: calc(52 / var(--sm-base));
  transform: translateX(-50%);
}
.worries-item:nth-child(2) img {
  width: calc(47 / var(--sm-base));
}
.worries-item:nth-child(3) {
  padding: calc(30 / var(--sm-base)) calc(10 / var(--sm-base)) calc(34 / var(--sm-base));
}
.worries-item:nth-child(3) img {
  width: calc(47 / var(--sm-base));
}
.worries-item:nth-child(4) img {
  top: calc(-27 / var(--sm-base));
}
.worries-item:nth-child(6) img {
  top: calc(-27 / var(--sm-base));
}
.worries-item p {
  position: relative;
  z-index: 3;
  font-weight: 700;
  line-height: 1.4;
}
.worries-subheading {
  margin-top: calc(42 / var(--sm-base));
}
.worries-subheading span {
  display: block;
  width: fit-content;
  margin: calc(6 / var(--sm-base)) auto 0;
  padding: calc(3 / var(--sm-base)) calc(14 / var(--sm-base)) calc(6 / var(--sm-base));
  background: #fff;
  font-family: var(--font-serif);
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.worries-subheading span:nth-child(1) {
  color: var(--color-skyblue);
}
.worries-subheading span:nth-child(2) {
  color: var(--color-red);
}
.worries-contents02 {
  position: relative;
  z-index: 2;
  padding-block: calc(36 / var(--sm-base));
}
.worries-contents02::before,
.worries-contents02::after {
  content: '';
  position: absolute;
  top: calc(-44 / var(--sm-base));
  height: calc(44 / var(--sm-base));
  background: #fff;
}
.worries-contents02::before {
  left: 0;
  width: calc(50vw - (72.5 / var(--sm-base)));
}
.worries-contents02::after {
  right: 0;
  width: calc(50vw - (73.5 / var(--sm-base)));
}
.worries-contents02-bg::before,
.worries-contents02-bg::after {
  content: '';
  position: absolute;
  top: calc(-44 / var(--sm-base));
  height: calc(44 / var(--sm-base));
  background: #fff;
}
.worries-contents02-bg::before {
  left: calc(50% - (73 / var(--sm-base)));
  width: calc(73 / var(--sm-base));
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}
.worries-contents02-bg::after {
  right: calc(50% - (74 / var(--sm-base)));
  width: calc(74 / var(--sm-base));
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.worries-contents02-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.worries-text {
  position: relative;
  padding: calc(28 / var(--sm-base)) calc(15 / var(--sm-base));
  background: #BFDCF3;
  border-radius: calc(8 / var(--sm-base));
  font-weight: 700;
  line-height: 1.5;
}
.worries-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(20 / var(--sm-base));
  height: calc(22 / var(--sm-base));
  background: #BFDCF3;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transform: translateX(-50%);
}
.worries-image {
  width: calc(190 / var(--sm-base));
  margin: calc(36 / var(--sm-base)) auto 0;
}
.worries-image img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .worries-contents01 {
    padding-block: 80px 114px;
    background-image: url(../images/bg_worries_01_lg.webp);
  }
  .worries-contents01-inner {
    width: min(100%, 660px);
    margin-inline: auto;
    padding-inline: 20px;
  }
  .worries-list {
    margin: 40px -7px 0;
  }
  .worries-item {
    width: calc(33.33334% - 14px);
    margin: 76px 7px 0;
    padding: 34px 12px 12px;
  }
  .worries-item::before {
    top: -48px;
    width: 92px;
    height: 92px;
  }
  .worries-item::after {
    width: 32px;
    height: 20px;
  }
  .worries-item img {
    top: -38px;
    width: 62px;
  }
  .worries-item:nth-child(2) img {
    width: 56px;
  }
  .worries-item:nth-child(3) {
    padding: 34px 12px 12px;
  }
  .worries-item:nth-child(3) img {
    width: 56px;
  }
  .worries-item:nth-child(4) img {
    top: -32px;
  }
  .worries-item:nth-child(6) img {
    top: -30px;
  }
  .worries-item p {
    width: min(100%, 142px);
    margin-inline: auto;
  }
  .worries-item:nth-child(1) p {
    width: min(100%, 146px);
  }
  .worries-subheading {
    margin-top: 45px;
  }
  .worries-subheading span {
    margin-top: 7px;
    padding: 5px 22px 6px;
    font-size: 28px;
  }
  .worries-subheading span:nth-child(2) {
    padding: 5px 19px 6px;
  }
  .worries-contents02 {
    padding-block: 40px;
  }
  .worries-contents02::before,
  .worries-contents02::after {
    top: -56.5px;
    height: 57px;
  }
  .worries-contents02::before {
    width: calc(50vw - 94px);
  }
  .worries-contents02::after {
    width: calc(50vw - 95px);
  }
  .worries-contents02-bg::before,
  .worries-contents02-bg::after {
    top: -56.5px;
    height: 57px;
  }
  .worries-contents02-bg::before {
    left: calc(50% - 94px);
    width: 94px;
  }
  .worries-contents02-bg::after {
    right: calc(50% - 95px);
    width: 95px;
  }
  .worries-contents02-inner {
    width: min(100%, 804px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .worries-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .worries-text {
    flex: 1;
    padding: 28px 20px;
    border-radius: 8px;
  }
  .worries-text::after {
    top: 40px;
    right: 100%;
    left: auto;
    width: 25px;
    height: 23px;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
    transform: none;
  }
  .worries-text p {
    width: min(100%, 400px);
    margin-inline: auto;
  }
  .worries-image {
    width: 190px;
    margin: 0 56px 0 0;
  }
}

.know {
  padding-block: calc(38 / var(--sm-base)) calc(40 / var(--sm-base));
  background: var(--color-default);
}
.know-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.know-heading .c-heading-primary-bg {
  width: calc(234 / var(--sm-base));
  background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
}
.know-heading .c-heading-primary-bg::after {
  left: calc(130.5 / var(--sm-base));
}
.know-lead01 {
  margin-top: calc(40 / var(--sm-base));
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.know-lead01 strong {
  border-bottom: calc(4 / var(--sm-base)) solid var(--color-yellow);
  color: var(--color-yellow);
}
.know-lead01 strong span {
  font-size: calc(28 / var(--sm-base));
  font-weight: 900;
}
.know-image {
  margin-top: calc(25 / var(--sm-base));
}
.know-image-notice {
  margin-top: calc(5 / var(--sm-base));
  color: #fff;
  font-size: calc(10 / var(--sm-base));
  line-height: 1.4;
}
.know-image-notice li::before {
  content: '※';
}
.know-lead02 {
  position: relative;
  margin: calc(75 / var(--sm-base)) calc(-10 / var(--sm-base)) 0;
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.know-lead02::before {
  content: '';
  position: absolute;
  top: calc(-50 / var(--sm-base));
  left: 50%;
  width: calc(41 / var(--sm-base));
  height: calc(45 / var(--sm-base));
  background: url(../images/bg_know_01.webp) 0 0 / contain no-repeat;
  transform: translateX(-50%);
}
.know-lead02 strong {
  display: inline-block;
  margin-bottom: -3em;
  color: var(--color-yellow);
}
.know-lead02 strong span {
  font-size: calc(28 / var(--sm-base));
  font-weight: 900;
}
.know-lead03 {
  position: relative;
  margin-top: calc(50 / var(--sm-base));
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.know-lead03::after {
  content: '';
  position: absolute;
  bottom: calc(-68 / var(--sm-base));
  left: 50%;
  width: calc(41 / var(--sm-base));
  height: calc(45 / var(--sm-base));
  background: url(../images/bg_know_01.webp) 0 0 / contain no-repeat;
  transform: translateX(-50%);
}
.know-lead03 strong:nth-of-type(1) {
  border-bottom: calc(4 / var(--sm-base)) solid var(--color-yellow);
  color: var(--color-yellow);
}
.know-lead03 strong:nth-of-type(2) {
  color: var(--color-yellow);
}
.know-lead03 strong:nth-of-type(2) span {
  display: block;
  width: fit-content;
  border-bottom: calc(4 / var(--sm-base)) solid var(--color-yellow);
  font-size: calc(22 / var(--sm-base));
  line-height: 1.4;
}
.know-lead03 strong:nth-of-type(2) span:nth-of-type(1) {
  margin: calc(8 / var(--sm-base)) auto 0;
  padding-inline: calc(10 / var(--sm-base));
}
.know-lead03 strong:nth-of-type(2) span:nth-of-type(2) {
  margin-inline: auto;
  padding-inline: calc(8 / var(--sm-base)) 0;
}
.know-lead04 {
  position: relative;
  margin: calc(92 / var(--sm-base)) calc(-15 / var(--sm-base)) 0;
  padding-bottom: calc(42 / var(--sm-base));
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.know-lead04::before,
.know-lead04::after {
  content: '';
  position: absolute;
  bottom: calc(-3 / var(--sm-base));
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.know-lead04::before {
  left: calc(-10 / var(--sm-base));
  width: calc(114 / var(--sm-base));
  height: calc(129 / var(--sm-base));
  background-image: url(../images/img_know_03.webp);
}
.know-lead04::after {
  right: calc(14 / var(--sm-base));
  width: calc(77 / var(--sm-base));
  height: calc(130 / var(--sm-base));
  background-image: url(../images/img_know_04.webp);
}
.know-lead04 span {
  position: relative;
  z-index: 2;
}
.know-comparison {
  position: relative;
  z-index: 2;
  margin-inline: calc(-15 / var(--sm-base));
  padding-top: calc(32 / var(--sm-base));
  background: #fff;
}
.know-comparison::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  height: calc(52 / var(--sm-base));
  background: #fff;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 100% 0, 0 0);
}
.know-comparison-row {
  position: relative;
  z-index: 2;
}
.know-comparison-text {
  position: relative;
  margin: calc(20 / var(--sm-base)) calc(15 / var(--sm-base)) 0;
  padding: calc(18 / var(--sm-base)) calc(15 / var(--sm-base));
  background: #BFDCF3;
  border-radius: calc(8 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.5;
}
.know-comparison-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(20 / var(--sm-base));
  height: calc(22 / var(--sm-base));
  background: #BFDCF3;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transform: translateX(-50%);
}
.know-comparison-image {
  position: relative;
  bottom: calc(-20 / var(--sm-base));
  width: calc(190 / var(--sm-base));
  margin: calc(18 / var(--sm-base)) auto 0;
}
.know-comparison-image img {
  width: 100%;
}
.know-subheading {
  margin-top: calc(90 / var(--sm-base));
  color: #fff;
  font-size: calc(16 / var(--sm-base));
  font-family: var(--font-serif);
  line-height: 1.5;
  text-align: center;
}
.know-subheading span {
  display: block;
  margin-top: calc(2 / var(--sm-base));
  font-size: calc(40 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .know {
    padding-block: 80px;
  }
  .know-inner {
    width: min(100%, 860px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .know-heading .c-heading-primary-bg {
    width: 233px;
    background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
  }
  .know-heading .c-heading-primary-bg::after {
    left: 130px;
  }
  .know-lead01 {
    margin-top: 50px;
    font-size: 18px;
    line-height: 1.6;
  }
  .know-lead01 strong {
    border-bottom-width: 4px;
  }
  .know-lead01 strong span {
    font-size: 28px;
  }
  .know-image {
    width: min(100%, 565px);
    margin: 30px auto 0;
  }
  .know-image-notice {
    margin: 10px 25px 0;
    font-size: 12px;
  }
  .know-image:nth-of-type(2) .know-image-notice {
    font-size: 10px;
  }
  .know-lead02 {
    margin: 90px 0 0;
    font-size: 18px;
    line-height: 1.5;
  }
  .know-lead02::before {
    top: -75px;
    width: 41px;
    height: 45px;
  }
  .know-lead02 strong span {
    font-size: 28px;
  }
  .know-lead03 {
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.5;
  }
  .know-lead03::after {
    bottom: -80px;
    width: 41px;
    height: 45px;
  }
  .know-lead03 strong:nth-of-type(1) {
    border-bottom-width: 4px;
  }
  .know-lead03 strong:nth-of-type(2) {
    display: inline-block;
    margin-top: 3px;
  }
  .know-lead03 strong:nth-of-type(2) span {
    display: inline;
    width: auto;
    padding-bottom: 3px;
    border-bottom-width: 4px;
    font-size: 24px;
  }
  .know-lead03 strong:nth-of-type(2) span:nth-of-type(1) {
    margin: 0;
    padding-inline: 5px 0;
  }
  .know-lead03 strong:nth-of-type(2) span:nth-of-type(2) {
    margin: 0;
    padding-inline: 0;
  }
  .know-lead04 {
    margin: 135px 0 0;
    padding-bottom: 40px;
    font-size: 18px;
  }
  .know-lead04::before,
  .know-lead04::after {
    bottom: 0;
  }
  .know-lead04::before {
    left: calc(50% - 279px);
    width: 145px;
    height: 164px;
  }
  .know-lead04::after {
    right: calc(50% - 240px);
    width: 97px;
    height: 164px;
  }
  .know-comparison {
    width: min(100%, 780px);
    margin-inline: auto;
    padding: 40px 40px 15px;
    border-radius: 6px 6px 0 0;
  }
  .know-comparison::after {
    width: 100%;
    height: 83px;
    background: url(../images/bg_know_02.webp) 50% 0 / contain no-repeat;
    clip-path: none;
  }
  .know-comparison-table {
    width: min(100%, 587px);
    margin-inline: auto;
  }
  .know-comparison-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 20px 4px 0 2px;
  }
  .know-comparison-text {
    flex: 1;
    margin: 0;
    padding: 32px 10px 32px 34px;
    border-radius: 8px;
    font-size: 18px;
  }
  .know-comparison-text::after {
    top: 40px;
    right: 100%;
    left: auto;
    width: 25px;
    height: 23px;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
    transform: none;
  }
  .know-comparison-image {
    bottom: 0;
    width: 190px;
    margin: 0 26px 0 0;
  }
  .know-subheading {
    margin-top: 110px;
    font-size: 20px;
  }
  .know-subheading span {
    margin-top: -6px;
    font-size: 40px;
  }
}

.procedure {
  position: relative;
  padding-block: calc(38 / var(--sm-base)) calc(50 / var(--sm-base));
  background: url(../images/bg_procedure_01.webp) 50% 50% / cover no-repeat;
}
.procedure::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3C8DD1;
  opacity: .9;
}
.procedure-inner {
  position: relative;
  z-index: 2;
  padding-inline: calc(15 / var(--sm-base));
}
.procedure-point {
  position: relative;
  margin-top: calc(40 / var(--sm-base));
  padding-block: calc(28 / var(--sm-base));
  background: #fff;
  box-shadow: 0 calc(.6 / var(--sm-base)) calc(5 / var(--sm-base)) rgba(0, 0, 0, .25);
}
.procedure-point:nth-of-type(1) {
  margin-top: calc(68 / var(--sm-base));
}
.procedure-point-heading {
  font-family: var(--font-serif);
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.procedure-point-label {
  position: absolute;
  top: calc(-16 / var(--sm-base));
  left: 50%;
  min-width: calc(136 / var(--sm-base));
  padding: calc(2 / var(--sm-base)) 0 calc(6 / var(--sm-base));
  background: linear-gradient(90deg, #133D9A, #03123E);
  color: #fff;
  font-family: var(--font-serif-en);
  font-size: calc(16 / var(--sm-base));
  font-weight: 600;
  line-height: 1;
  letter-spacing: .075em;
  transform: translateX(-50%);
}
.procedure-point-label span {
  margin-left: .1em;
  font-size: calc(24 / var(--sm-base));
}
.procedure-image {
  width: 100%;
  margin-top: calc(14 / var(--sm-base));
}
.procedure-detail {
  padding: calc(10 / var(--sm-base)) calc(15 / var(--sm-base)) 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .procedure {
    padding-block: 80px;
  }
  .procedure-inner {
    width: min(100%, 645px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .procedure-point {
    margin-top: 50px;
    padding-block: 40px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .25);
  }
  .procedure-point:nth-of-type(1) {
    margin-top: 85px;
  }
  .procedure-point-heading {
    font-size: 24px;
    line-height: 1.45;
  }
  .procedure-point-label {
    top: -20px;
    min-width: 170px;
    padding: 2px 0 7px;
    font-size: 21px;
    letter-spacing: .015em;
  }
  .procedure-point-label span {
    margin-left: .05em;
    font-size: 31px;
  }
  .procedure-image {
    margin-top: 20px;
  }
  .procedure-detail {
    padding: 20px 20px 0;
  }
}

.consultation {
  padding-block: calc(38 / var(--sm-base)) calc(60 / var(--sm-base));
  background: var(--color-default);
}
.consultation-contents {
  position: relative;
  margin-top: calc(52 / var(--sm-base));
  padding-inline: calc(10 / var(--sm-base));
}
.consultation-carousel-item {
  height: auto;
  padding: 0 calc(20 / var(--sm-base));
}
.consultation-carousel-item-inner {
  height: 100%;
  padding: calc(32 / var(--sm-base)) calc(30 / var(--sm-base)) calc(30 / var(--sm-base));
  background: #fff;
  border-radius: calc(8 / var(--sm-base));
}
.consultation-carousel-item-label {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding: 0 calc(5 / var(--sm-base)) calc(4 / var(--sm-base));
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
}
.consultation-carousel-item-label span {
  font-size: calc(19 / var(--sm-base));
}
.consultation-carousel-item-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(4 / var(--sm-base));
  background: linear-gradient(90deg, var(--color-default) 50%, var(--color-skyblue) 50%);
}
.consultation-carousel-item-type {
  margin-top: calc(12 / var(--sm-base));
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}
.consultation-carousel-item-image {
  width: calc(120 / var(--sm-base));
  margin: calc(10 / var(--sm-base)) auto 0;
}
.consultation-carousel-item-image img {
  width: 100%;
}
.consultation-carousel-item-meta {
  width: fit-content;
  margin: calc(10 / var(--sm-base)) auto 0;
  padding: calc(1 / var(--sm-base)) calc(14 / var(--sm-base)) calc(3 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-size: calc(12 / var(--sm-base));
  letter-spacing: .05em;
  text-align: center;
}
.consultation-carousel-item-message {
  margin-top: calc(16 / var(--sm-base));
}
.consultation-carousel-nav .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  margin-top: calc(24 / var(--sm-base));
  font-size: 0;
}
.consultation-carousel-nav .swiper-pagination .swiper-pagination-bullet {
  width: calc(8 / var(--sm-base));
  height: calc(8 / var(--sm-base));
  margin: 0 calc(8 / var(--sm-base));
  background: #fff;
  opacity: 1;
}
.consultation-carousel-nav .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-skyblue);
}
.consultation-carousel-nav .swiper-button-prev,
.consultation-carousel-nav .swiper-button-next {
  position: absolute;
  top: calc(50% - calc(46 / var(--sm-base)));
  z-index: 2;
  width: calc(30 / var(--sm-base));
  height: calc(40 / var(--sm-base));
  transform: translateY(-50%);
}
.consultation-carousel-nav .swiper-button-prev::after,
.consultation-carousel-nav .swiper-button-next::after {
  position: absolute;
  top: 50%;
  width: calc(22 / var(--sm-base));
  height: calc(40 / var(--sm-base));
  background: url(../images/icn_arrow_01.webp) 0 0 / contain no-repeat;
  font-size: 0;
}
.consultation-carousel-nav .swiper-button-prev {
  left: 0;
}
.consultation-carousel-nav .swiper-button-prev::after {
  left: calc(6 / var(--sm-base));
  transform: translateY(-50%) scaleX(-1);
}
.consultation-carousel-nav .swiper-button-next {
  right: 0;
}
.consultation-carousel-nav .swiper-button-next::after {
  left: calc(2 / var(--sm-base));
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .consultation-carousel-nav .swiper-button-prev,
  .consultation-carousel-nav .swiper-button-next,
  .consultation-carousel-nav .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    transition: opacity var(--transition);
  }
  .consultation-carousel-nav .swiper-button-prev:hover,
  .consultation-carousel-nav .swiper-button-next:hover,
  .consultation-carousel-nav .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .consultation {
    padding-block: 80px;
  }
  .consultation-inner {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .consultation-contents {
    width: min(100%, 1080px);
    margin: 66px auto 0;
  }
  .consultation-carousel-item {
    padding: 0;
  }
  .consultation-carousel-item-inner {
    padding: 38px 30px 30px;
    border-radius: 8px;
  }
  .consultation-carousel-item-label {
    padding: 0 5px 10px;
    line-height: 1;
  }
  .consultation-carousel-item-label span {
    font-size: 19px;
  }
  .consultation-carousel-item-label::after {
    height: 4px;
  }
  .consultation-carousel-item-type {
    margin-top: 12px;
  }
  .consultation-carousel-item-image {
    width: 120px;
    margin: 8px auto 0;
  }
  .consultation-carousel-item-meta {
    margin: 10px auto 0;
    padding: 0 14px 1px;
    font-size: 12px;
  }
  .consultation-carousel-item-message {
    margin-top: 15px;
    line-height: 1.6;
  }
  .consultation-carousel-nav .swiper-pagination {
    margin-top: 45px;
  }
  .consultation-carousel-nav .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px;
  }
  .consultation-carousel-nav .swiper-button-prev,
  .consultation-carousel-nav .swiper-button-next {
    top: calc(50% - 6px);
    width: 22px;
    height: 40px;
  }
  .consultation-carousel-nav .swiper-button-prev::after,
  .consultation-carousel-nav .swiper-button-next::after {
    width: 22px;
    height: 40px;
  }
  .consultation-carousel-nav .swiper-button-prev {
    left: -8px;
  }
  .consultation-carousel-nav .swiper-button-prev::after {
    left: -2px;
  }
  .consultation-carousel-nav .swiper-button-next {
    right: -8px;
  }
  .consultation-carousel-nav .swiper-button-next::after {
    left: 2px;
  }
}

.flow {
  padding-block: calc(38 / var(--sm-base)) calc(40 / var(--sm-base));
}
.flow-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.flow-heading {
  color: var(--color-default);
}
.flow-heading .c-heading-primary-bg {
  width: calc(218 / var(--sm-base));
  background: linear-gradient(90deg, var(--color-default) 56%, transparent 56%, transparent 77%, var(--color-default) 77%);
}
.flow-heading .c-heading-primary-bg::after {
  left: calc(121 / var(--sm-base));
  background: var(--color-default);
}
.flow-step {
  position: relative;
  margin-top: calc(36 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-default);
}
.flow-step:nth-of-type(1) {
  margin-top: calc(48 / var(--sm-base));
}
.flow-step:not(:last-of-type)::after {
  content: '';
  position: absolute;
  top: calc(100% + (1 / var(--sm-base)));
  left: 50%;
  width: calc(130 / var(--sm-base));
  height: calc(32 / var(--sm-base));
  background: var(--color-default);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.flow-step-heading {
  padding: calc(12 / var(--sm-base)) 0 calc(18 / var(--sm-base));
  background: linear-gradient(90deg, #133D9A, #03123E);
  color: #fff;
  font-family: var(--font-serif);
  font-size: calc(18 / var(--sm-base));
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.flow-step-heading > span:nth-of-type(1) {
  position: relative;
  margin-right: calc(8 / var(--sm-base));
  padding-right: calc(12 / var(--sm-base));
  font-family: var(--font-serif-en);
  font-weight: 600;
  letter-spacing: .05em;
}
.flow-step-heading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: calc(-6 / var(--sm-base));
  right: 0;
  width: calc(1 / var(--sm-base));
  height: calc(100% + (6 / var(--sm-base)));
  background: #fff;
}
.flow-step-heading > span:nth-of-type(1) span {
  margin-left: .05em;
  font-size: calc(27 / var(--sm-base));
}
.flow-step-heading > span:nth-of-type(2) {
  position: relative;
  top: calc(-1 / var(--sm-base));
}
.flow-step-row {
  padding: calc(24 / var(--sm-base)) calc(14 / var(--sm-base)) calc(20 / var(--sm-base));
}
.flow-step-image img {
  width: 100%;
}
.flow-step-detail {
  margin-top: calc(20 / var(--sm-base));
  font-weight: 700;
}
.flow-step-point {
  margin-top: calc(12 / var(--sm-base));
  padding: calc(12 / var(--sm-base)) calc(15 / var(--sm-base)) calc(15 / var(--sm-base));
  background: #EAF3FB;
  border-radius: calc(8 / var(--sm-base));
}
.flow-step-point dt {
  padding: calc(1 / var(--sm-base)) 0;
  background: #fff;
  font-weight: 700;
  text-align: center;
}
.flow-step-point dd {
  position: relative;
}
.flow-step-point ul {
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(5 / var(--sm-base)) 0 0 calc(-16 / var(--sm-base));
  line-height: 1.4;
  list-style: none;
}
.flow-step-point ul li {
  position: relative;
  margin: calc(2 / var(--sm-base)) 0 0 calc(16 / var(--sm-base));
  padding-left: calc(20 / var(--sm-base));
}
.flow-step-point ul li::before {
  content: '';
  position: absolute;
  top: calc(4 / var(--sm-base));
  left: 0;
  width: calc(17 / var(--sm-base));
  height: calc(14 / var(--sm-base));
  background: url(../images/inc_check_01.webp) 0 0 / contain no-repeat;
}
.flow-step-point p {
  position: absolute;
  right: calc(4 / var(--sm-base));
  bottom: calc(3 / var(--sm-base));
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .flow {
    padding-block: 80px;
  }
  .flow-inner {
    width: min(100%, 810px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .flow-heading .c-heading-primary-bg {
    width: 220px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, var(--color-default) 56%, transparent 56%, transparent 77%, var(--color-default) 77%);
  }
  .flow-heading .c-heading-primary-bg::after {
    left: 122.5px;
  }
  .flow-step {
    margin-top: 32px;
    border-width: 2px;
  }
  .flow-step:nth-of-type(1) {
    margin-top: 66px;
  }
  .flow-step:not(:last-of-type)::after {
    top: calc(100% + 1px);
    width: 130px;
    height: 32px;
  }
  .flow-step-heading {
    padding: 12px 0;
    font-size: 20px;
  }
  .flow-step-heading > span:nth-of-type(1) {
    margin-right: 17px;
    padding: 4px 19px 0 0;
    font-size: 21px;
  }
  .flow-step-heading > span:nth-of-type(1)::after {
    top: -1px;
    width: 1px;
    height: calc(100% - 1px);
  }
  .flow-step-heading > span:nth-of-type(1) span {
    margin-left: .025em;
    font-size: 31px;
  }
  .flow-step-heading > span:nth-of-type(2) {
    top: -2px;
  }
  .flow-step-row {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .flow-step-image {
    width: 236px;
  }
  .flow-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .flow-step-detail {
    flex: 1;
    margin: 0;
    padding: 20px 36px 24px;
  }
  .flow-step-detail p {
    line-height: 1.5;
  }
  .flow-step-point {
    margin-top: 12px;
    padding: 12px 12px 15px;
    border-radius: 8px;
  }
  .flow-step-point dl {
    width: min(100%, 284px);
    margin-inline: auto;
  }
  .flow-step-point dt {
    padding: 0 0 1px;
    letter-spacing: .025em;
  }
  .flow-step-point ul {
    margin: 4px 0 0 -16px;
  }
  .flow-step-point ul li {
    margin: 2px 0 0 16px;
    padding-left: 20px;
  }
  .flow-step-point ul li::before {
    top: 4px;
    width: 17px;
    height: 14px;
  }
  .flow-step-point p {
    right: 6px;
    bottom: 0;
  }
}

.price {
  padding-block: calc(38 / var(--sm-base)) calc(40 / var(--sm-base));
  background: var(--color-default);
}
.price-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.price-heading .c-heading-primary-bg {
  width: calc(218 / var(--sm-base));
  background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
}
.price-heading .c-heading-primary-bg::after {
  left: calc(121 / var(--sm-base));
}
.price-list {
  margin-top: calc(50 / var(--sm-base));
}
.price-item {
  position: relative;
  margin-top: calc(20 / var(--sm-base));
  background: #fff;
  border-radius: calc(8 / var(--sm-base));
}
.price-item-inner {
  height: 100%;
  padding: calc(25 / var(--sm-base)) calc(35 / var(--sm-base));
}
.price-item::before,
.price-item::after,
.price-item-inner::before,
.price-item-inner::after {
  content: '';
  position: absolute;
  width: calc(3 / var(--sm-base));
  height: calc(3 / var(--sm-base));
  background: var(--color-default);
  border-radius: 50%;
}
.price-item::before {
  top: calc(15 / var(--sm-base));
  left: calc(15 / var(--sm-base));
}
.price-item::after {
  top: calc(15 / var(--sm-base));
  right: calc(15 / var(--sm-base));
}
.price-item-inner::before {
  bottom: calc(15 / var(--sm-base));
  left: calc(15 / var(--sm-base));
}
.price-item-inner::after {
  bottom: calc(15 / var(--sm-base));
  right: calc(15 / var(--sm-base));
}
.price-item-heading {
  width: calc(230 / var(--sm-base));
  margin-inline: auto;
  padding-bottom: calc(18 / var(--sm-base));
  border-bottom: calc(1 / var(--sm-base)) solid var(--color-default);
  font-family: var(--font-serif);
  font-size: calc(24 / var(--sm-base));
  text-align: center;
}
.price-item-text01 {
  margin-top: calc(-12 / var(--sm-base));
  font-family: var(--font-serif);
  font-size: calc(40 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: skew(-7deg);
}
.price-item-text01 span {
  position: relative;
  top: calc(4 / var(--sm-base));
  font-family: var(--font-serif-en);
  font-size: calc(118 / var(--sm-base));
  font-weight: 500;
}
.price-item:nth-of-type(3) .price-item-text01 span {
  margin-right: .075em;
  letter-spacing: -.075em;
}
.price-item-text02 {
  margin-top: calc(2 / var(--sm-base));
  letter-spacing: .025em;
}
.price-item:nth-of-type(1) .price-item-text02 {
  margin-right: -1em;
}
.price-payment {
  margin-top: calc(24 / var(--sm-base));
  padding: calc(2 / var(--sm-base)) calc(2 / var(--sm-base)) calc(20 / var(--sm-base));
  background: #fff;
}
.price-payment-heading {
  padding-block: calc(12 / var(--sm-base)) calc(14 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-family: var(--font-serif);
  font-size: calc(24 / var(--sm-base));
  font-weight: 600;
  text-align: center;
}
.price-payment-text01 {
  margin-top: calc(25 / var(--sm-base));
  text-align: center;
}
.price-payment-method {
  width: fit-content;
  margin: calc(16 / var(--sm-base)) auto 0;
}
.price-payment-method li {
  position: relative;
  margin-top: calc(2 / var(--sm-base));
  padding-left: calc(26 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  line-height: 1.4;
}
.price-payment-method li::before {
  content: '';
  position: absolute;
  top: calc(7 / var(--sm-base));
  left: 0;
  width: calc(17 / var(--sm-base));
  height: calc(14 / var(--sm-base));
  background: url(../images/inc_check_01.webp) 0 0 / contain no-repeat;
}
.price-payment-image {
  width: calc(315 / var(--sm-base));
  margin: calc(20 / var(--sm-base)) auto 0;
}
.price-payment-image img {
  width: 100%;
}
.price-payment-text02 {
  margin: calc(20 / var(--sm-base)) calc(16 / var(--sm-base)) 0;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .price {
    padding-block: 80px;
  }
  .price-inner {
    width: min(100%, 810px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .price-heading .c-heading-primary-bg {
    width: 220px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
  }
  .price-heading .c-heading-primary-bg::after {
    left: 122.5px;
  }
  .price-list {
    display: flex;
    flex-wrap: wrap;
    margin: 35px -15px 0;
  }
  .price-item {
    width: calc(50% - 30px);
    margin: 30px 15px 0;
    border-radius: 8px;
  }
  .price-item-inner {
    padding: 30px 20px;
  }
  .price-item::before,
  .price-item::after,
  .price-item-inner::before,
  .price-item-inner::after {
    width: 3px;
    height: 3px;
  }
  .price-item::before {
    top: 15px;
    left: 15px;
  }
  .price-item::after {
    top: 15px;
    right: 15px;
  }
  .price-item-inner::before {
    bottom: 15px;
    left: 15px;
  }
  .price-item-inner::after {
    bottom: 15px;
    right: 15px;
  }
  .price-item-heading {
    width: min(100%, 232px);
    margin-inline: auto;
    padding-bottom: 18px;
    border-bottom-width: 1px;
    font-size: 24px;
  }
  .price-item-text01 {
    margin-top: -12px;
    font-size: 40px;
  }
  .price-item-text01 span {
    top: 4px;
    font-size: 118px;
  }
  .price-item-text02 {
    width: min(100%, 280px);
    margin: 2px auto 0;
    line-height: 1.5;
  }
  .price-item:nth-of-type(1) .price-item-text02 {
    margin-right: auto;
  }
  .price-payment {
    margin-top: 75px;
    padding: 2px 2px 40px;
  }
  .price-payment-heading {
    padding: 10px 10px 12px;
    font-size: 28px;
  }
  .price-payment-text01 {
    margin-top: 40px;
  }
  .price-payment-method {
    margin: 22px auto 0;
  }
  .price-payment-method li {
    margin-top: 2px;
    padding-left: 26px;
    font-size: 18px;
  }
  .price-payment-method li::before {
    top: 7px;
    width: 17px;
    height: 14px;
  }
  .price-payment-image {
    width: 494px;
    margin: 24px auto 0;
  }
  .price-payment-text02 {
    width: fit-content;
    margin: 24px auto 0;
    text-align: left;
    line-height: 1.5;
  }
}

.question {
  position: relative;
  padding-block: calc(38 / var(--sm-base)) calc(50 / var(--sm-base));
  background: url(../images/bg_question_01_sm.webp) 50% 50% / cover no-repeat;
}
.question::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3C8DD1;
  opacity: .9;
}
.question-inner {
  position: relative;
  z-index: 2;
  padding-inline: calc(15 / var(--sm-base));
}
.question-heading .c-heading-primary-bg {
  width: calc(218 / var(--sm-base));
  background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
}
.question-heading .c-heading-primary-bg::after {
  left: calc(121 / var(--sm-base));
}
.question-accordion {
  margin-top: calc(32 / var(--sm-base));
}
.question-accordion[data-slide="action"] {
  pointer-events: none;
}
.question-accordion:nth-of-type(1) {
  margin-top: calc(52 / var(--sm-base));
}
.question-accordion-summary {
  position: relative;
  background: #fff;
  border-radius: calc(10 / var(--sm-base));
}
.question-accordion-summary::before {
  content: '';
  position: absolute;
  top: 50%;
  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%;
  transform: translateY(-50%);
  pointer-events: none;
}
.question-accordion-summary::after {
  content: 'Q';
  position: absolute;
  top: 48%;
  left: calc(35 / var(--sm-base));
  color: #fff;
  font-family: var(--font-serif-en);
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.question-accordion-summary > span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(68 / var(--sm-base));
  padding: calc(14 / var(--sm-base)) calc(68 / var(--sm-base)) calc(14 / var(--sm-base)) calc(84 / var(--sm-base));
}
.question-accordion-summary > span::before,
.question-accordion-summary > span::after {
  content: '';
  position: absolute;
  top: 50%;
  background: var(--color-default);
  transform: translateY(-50%);
}
.question-accordion-summary > span::before {
  right: calc(24 / var(--sm-base));
  width: calc(16 / var(--sm-base));
  height: calc(2 / var(--sm-base));
}
.question-accordion-summary > span::after {
  right: calc(31 / var(--sm-base));
  width: calc(2 / var(--sm-base));
  height: calc(16 / var(--sm-base));
}
.question-accordion[open] .question-accordion-summary > span::after {
  opacity: 0;
}
.question-accordion-contents-inner {
  position: relative;
  padding: calc(22 / var(--sm-base)) calc(24 / var(--sm-base)) 0 calc(86 / var(--sm-base));
  color: #fff;
}
.question-accordion-contents-inner::before {
  content: '';
  position: absolute;
  top: calc(24 / var(--sm-base));
  left: calc(24 / var(--sm-base));
  width: calc(36 / var(--sm-base));
  height: calc(36 / var(--sm-base));
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
}
.question-accordion-contents-inner::after {
  content: 'A';
  position: absolute;
  top: calc(42 / var(--sm-base));
  left: calc(36 / var(--sm-base));
  color: var(--color-skyblue);
  font-family: var(--font-serif-en);
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .question-accordion-summary {
    transition: opacity var(--transition);
  }
  .question-accordion-summary:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .question {
    padding-block: 80px;
    background-image: url(../images/bg_question_01_lg.webp);
  }
  .question-inner {
    width: min(100%, 810px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .question-heading .c-heading-primary-bg {
    width: 220px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, #fff 56%, transparent 56%, transparent 77%, #fff 77%);
  }
  .question-heading .c-heading-primary-bg::after {
    left: 122.5px;
  }
  .question-accordion {
    margin-top: 32px;
  }
  .question-accordion:nth-of-type(1) {
    margin-top: 64px;
  }
  .question-accordion-summary {
    border-radius: 10px;
  }
  .question-accordion-summary::before {
    left: 24px;
    width: 36px;
    height: 36px;
  }
  .question-accordion-summary::after {
    left: 35px;
  }
  .question-accordion-summary > span {
    min-height: 68px;
    padding: 12px 68px 12px 84px;
  }
  .question-accordion-summary > span::before {
    right: 24px;
    width: 16px;
    height: 2px;
  }
  .question-accordion-summary > span::after {
    right: 31px;
    width: 2px;
    height: 16px;
  }
  .question-accordion-contents-inner {
    padding: 24px 45px 0 84px;
    line-height: 1.6;
  }
  .question-accordion-contents-inner::before {
    top: 24px;
    left: 24px;
    width: 36px;
    height: 36px;
  }
  .question-accordion-contents-inner::after {
    top: 42px;
    left: 36px;
  }
}

.lowyer {
  padding-block: calc(38 / var(--sm-base)) calc(40 / var(--sm-base));
}
.lowyer-inner {
  padding-inline: calc(30 / var(--sm-base));
}
.lowyer-heading {
  color: var(--color-default);
}
.lowyer-heading .c-heading-primary-bg {
  width: calc(218 / var(--sm-base));
  background: linear-gradient(90deg, var(--color-default) 56%, transparent 56%, transparent 77%, var(--color-default) 77%);
}
.lowyer-heading .c-heading-primary-bg::after {
  left: calc(121 / var(--sm-base));
  background: var(--color-default);
}
.lowyer-row {
  margin-top: calc(45 / var(--sm-base));
}
.lowyer-image img {
  display: block;
  width: calc(286 / var(--sm-base));
  margin-inline: auto;
  box-shadow: 0 calc(4 / var(--sm-base)) calc(7 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.lowyer-image p {
  margin-top: calc(8 / var(--sm-base));
  text-align: center;
}
.lowyer-image p span {
  margin-left: .75em;
  font-size: calc(20 / var(--sm-base));
}
.lowyer-text {
  margin-top: calc(20 / var(--sm-base));
}
.lowyer-detail {
  margin-top: calc(15 / var(--sm-base));
}
.lowyer-detail div {
  display: flex;
  padding-block: calc(15 / var(--sm-base));
  border-bottom: calc(1 / var(--sm-base)) solid #DDD;
}
.lowyer-detail dt {
  width: calc(116 / var(--sm-base));
  padding-right: calc(10 / var(--sm-base));
  color: var(--color-skyblue);
  font-weight: 700;
}
.lowyer-detail dd {
  flex: 1;
}
@media screen and (min-width: 768px), print {
  .lowyer {
    padding-block: 80px;
  }
  .lowyer-inner {
    width: min(100%, 860px);
    margin-inline: auto;
    padding-inline: 40px;
  }
  .lowyer-heading .c-heading-primary-bg {
    width: 220px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, var(--color-default) 56%, transparent 56%, transparent 77%, var(--color-default) 77%);
  }
  .lowyer-heading .c-heading-primary-bg::after {
    left: 122.5px;
  }
  .lowyer-row {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 65px;
  }
  .lowyer-image {
    width: 286px;
  }
  .lowyer-image img {
    width: 100%;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .15);
  }
  .lowyer-image p {
    margin-top: 10px;
  }
  .lowyer-image p span {
    font-size: 20px;
  }
  .lowyer-text {
    flex: 1;
    margin: 0 40px 0 0;
    line-height: 1.5;
    letter-spacing: .025em;
  }
  .lowyer-detail {
    margin-top: 60px;
  }
  .lowyer-detail div {
    padding-block: 14px;
    border-bottom-width: 1px;
    line-height: 1.6;
  }
  .lowyer-detail dt {
    width: 196px;
    padding-right: 16px;
  }
}

.footer {
  background: var(--color-default);
}
.footer-inner {
  padding: calc(58 / var(--sm-base)) calc(20 / var(--sm-base)) calc(24 / var(--sm-base));
}
.footer-logo {
  width: calc(300 / var(--sm-base));
  margin-inline: auto;
  font-size: 0;
}
.footer-nav {
  margin-top: calc(40 / var(--sm-base));
}
.footer-nav-item {
  margin-top: calc(12 / var(--sm-base));
  text-align: center;
}
.footer-nav-anchor {
  color: #fff;
  font-size: calc(14 / var(--sm-base));
  font-weight: 400;
  text-decoration: none;
}
.footer-logo img {
  width: 100%;
}
.footer-copyright {
  display: block;
  margin-top: calc(30 / var(--sm-base));
  color: #fff;
  font-size: calc(13 / var(--sm-base));
  font-weight: 400;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-anchor {
    transition: opacity var(--transition);
  }
  .footer-nav-anchor:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .footer-inner {
    width: min(100%, 660px);
    margin-inline: auto;
    padding: 76px 20px 24px;
  }
  .footer-logo {
    width: 300px;
  }
  .footer-nav {
    margin-top: 38px;
  }
  .footer-nav-list {
    display: flex;
    justify-content: center;
  }
  .footer-nav-item {
    margin: 0 20px;
  }
  .footer-nav-anchor {
    font-size: 16px;
  }
  .footer-copyright {
    margin-top: 45px;
    font-size: 13px;
  }
}

.page-contents {
  padding: calc(40 / var(--sm-base)) calc(15 / var(--sm-base));
}
.page-heading {
  text-align: center;
}
.page-heading span {
  display: block;
}
.page-heading span:nth-of-type(1) {
  font-family: var(--font-serif-en);
  font-size: calc(14 / var(--sm-base));
}
.page-heading span:nth-of-type(2) {
  font-family: var(--font-serif);
  font-size: calc(24 / var(--sm-base));
}
.terms-list {
  margin-top: calc(40 / var(--sm-base));
  color: #333;;
}
.terms-list dt {
  margin-top: calc(30 / var(--sm-base));
}
.ptivacy-lead {
  margin-top: calc(40 / var(--sm-base));
  color: #333;;
}
.privacy-list li {
  margin-top: calc(30 / var(--sm-base));
  color: #333;;
}
.privacy-list ul {
  margin: calc(4 / var(--sm-base)) 0 0 calc(22 / var(--sm-base));
  list-style: disc;
}
.privacy-list ul li {
  margin-top: 0;
}
.page-back {
  display: block;
  width: fit-content;
  margin: calc(40 / var(--sm-base)) auto 0;
  padding: calc(10 / var(--sm-base)) calc(30 / var(--sm-base));
  color: var(--color-default);
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .page-back {
    transition: opacity var(--transition);
  }
  .page-back:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .page-contents {
    width: min(100%, 1080px);
    margin-inline: auto;
    padding: 105px 40px;
  }
  .page-heading span:nth-of-type(1) {
    font-size: 24px;
    letter-spacing: .05em;
  }
  .page-heading span:nth-of-type(2) {
    font-size: 48px;
    margin-top: 32px;
    letter-spacing: .05em;
  }
  .terms-list {
    margin-top: 65px;
    font-size: 20px;
  }
  .terms-list dt {
    margin-top: 40px;
  }
  .ptivacy-lead {
    margin-top: 65px;
    font-size: 20px;
  }
  .privacy-list li {
    margin-top: 40px;
    font-size: 20px;
  }
  .privacy-list ul {
    margin: 0 0 0 28px;
  }
  .page-back {
    margin: 80px auto 0;
    padding: 10px 30px;
    font-size: 22px;
  }
}