@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     : #3A3752;
  --color-blue        : #1A8FBB;
  --color-orange      : #FF6600;
  --color-green       : #02A387;

  --font-sansSerif  : 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif      : 'Hiragino Mincho ProN', 'Yu Mincho', Garamond, 'Times New Roman', serif;
  --font-roboto     : 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
  --font-montserrat : 'Montserrat', 'Helvetica Neue', 'Helvetica', sans-serif;
  --font-oswald     : 'Oswald', 'Helvetica Neue', 'Helvetica', sans-serif;
  --font-helvetica  : 'Helvetica', 'Helvetica Neue', sans-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);
  }
}
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: 20px;
    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
-------------------------------------------------- */
.fv {
  position: relative;
  padding-bottom: calc(30 / var(--sm-base));
  background: url(../images/bg_fv_01_sm.jpg) 50% 0 / cover no-repeat;
}
.logo {
  position: absolute;
  top: calc(6 / var(--sm-base));
  left: calc(10 / var(--sm-base));
  z-index: 2;
  width: calc(132 / var(--sm-base));
}
.fv-partner-inner {
  margin: calc(13 / var(--sm-base)) calc(15 / var(--sm-base)) 0;
  padding: calc(20 / var(--sm-base)) calc(6 / var(--sm-base)) calc(2 / var(--sm-base));
  background: #fff;
  box-shadow: calc(2 / var(--sm-base)) calc(2 / var(--sm-base)) calc(10 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.fv-partner-heading {
  width: fit-content;
  margin-inline: auto;
  padding: calc(4 / var(--sm-base)) calc(20 / var(--sm-base)) calc(7 / var(--sm-base));
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.fv-partner-image {
  display: block;
  width: calc(315 / var(--sm-base));
  margin: calc(10 / var(--sm-base)) auto calc(2 / var(--sm-base));
}
.fv-partner-notice {
  font-size: calc(10 / var(--sm-base));
  color: #707070;
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .fv {
    padding-bottom: 34px;
    background: none;
  }
  .logo {
    width: min(16%, 166px);
    top: 1vw;
    left: 4vw;
  }
  .fv-inner {
    background: url(../images/bg_fv_01_lg.jpg) 50% 0 / cover no-repeat;
  }
  .fv-contents {
    position: relative;
    overflow: hidden;
  }
  .fv-image {
    margin-left: -8vw;
  }
  .fv-partner {
    padding: 35px 30px 0;
  }
  .fv-partner-inner {
    width: min(100%, 1010px);
    margin: 0 auto;
    padding: 30px 20px 8px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, .15);
  }
  .fv-partner-heading {
    padding: 7px 30px 10px;
    font-size: 26px;
    letter-spacing: .025em;
  }
  .fv-partner-image {
    width: min(100%, 895px);
    margin: 45px auto 0;
  }
  .fv-partner-notice {
    font-size: 10px;
  }
}
@media screen and (min-width: 1280px), print {
  .logo {
    width: min(16%, 166px);
    top: 10px;
    left: 148px;
  }
  .fv-contents {
    width: min(100%, 1320px);
    margin-inline: auto;
  }
  .fv-image {
    margin: 0;
  }
}

.l-inner {
  padding-inline: calc(15 / var(--sm-base));
}
.cta-button {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  animation: cta-button-effect 1.5s ease-in-out infinite;
}
@keyframes cta-button-effect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.cta-button > span:nth-of-type(1) {
  position: absolute;
  top: calc(-17 / var(--sm-base));
  left: 50%;
  z-index: 2;
  padding: 0 calc(20 / var(--sm-base)) calc(2 / var(--sm-base));
  background: #fff;
  border: calc(2 / var(--sm-base)) solid #1B8001;
  border-radius: 100vmax;
  color: #1B8001;
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
}
.cta-button > span:nth-of-type(1)::before,
.cta-button > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(12 / var(--sm-base));
  height: calc(10 / var(--sm-base));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.cta-button > span:nth-of-type(1)::before {
  background: #1B8001;
}
.cta-button > span:nth-of-type(1)::after {
  top: calc(100% - (3.5 / var(--sm-base)));
  z-index: 3;
  background: #fff;
}
.cta-button > span:nth-of-type(1) span {
  font-size: calc(24 / var(--sm-base));
}
.cta-button > span:nth-of-type(2) {
  position: relative;
  display: block;
  padding: calc(20 / var(--sm-base)) 0 calc(12 / var(--sm-base)) calc(18 / var(--sm-base));
  background: url(../images/bg_cta-button_01.png) 0 50% / auto 101% repeat-x;
  border: calc(2 / var(--sm-base)) solid #1B8001;
  border-radius: 100vmax;
  box-shadow: 0 calc(4 / var(--sm-base)) calc(8 / var(--sm-base)) rgba(58, 76, 53, .2);
  color: #fff;
  font-size: calc(19.5 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
}
.cta-button > span:nth-of-type(2)::before {
  content: '';
  position: absolute;
  top: calc(32 / var(--sm-base));
  left: calc(36 / var(--sm-base));
  width: calc(32 / var(--sm-base));
  height: calc(30 / var(--sm-base));
  background: url(../images/icn_line_01.png) 0 0 / contain no-repeat;
}
.cta-button > span:nth-of-type(2)::after {
  content: '';
  position: absolute;
  top: calc(42 / var(--sm-base));
  right: calc(36 / var(--sm-base));
  width: calc(9 / var(--sm-base));
  height: calc(10 / var(--sm-base));
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (hover: hover) and (pointer: fine) {
  .cta-button {
    transition: opacity var(--transition);
  }
  .cta-button:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .l-inner {
    width: min(100%, 1080px);
    margin-inline: auto;
    padding-inline: 30px;
  }
  .cta-button > span:nth-of-type(1) {
    top: -27px;
    padding: 0 30px 4px;
    border-width: 3px;
    font-size: 30px;
  }
  .cta-button > span:nth-of-type(1) span {
    font-size: 36px;
  }
  .cta-button > span:nth-of-type(1)::before,
  .cta-button > span:nth-of-type(1)::after {
    width: 18px;
    height: 16px;
  }
  .cta-button > span:nth-of-type(1)::after {
    top: calc(100% - 6px);
  }
  .cta-button > span:nth-of-type(2) {
    padding: 40px 0 40px 32px;
    border-width: 3px;
    box-shadow: 0 6px 12px rgba(58, 76, 53, .2);
    font-size: 30px;
  }
  .cta-button > span:nth-of-type(2) br {
    display: none;
  }
  .cta-button > span:nth-of-type(2)::before {
    top: 38px;
    left: 50px;
    width: 48px;
    height: 45px;
  }
  .cta-button > span:nth-of-type(2)::after {
    top: 55px;
    right: 50px;
    width: 13px;
    height: 14px;
  }
}

.js-animation-element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(40 / var(--sm-base)));
  transition: transform .7s ease, opacity .7s ease, visibility .7s ease;
}
.js-animation-element.--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (min-width: 768px), print {
  .js-animation-element {
    transform: translateY(60px);
  }
}

.present {
  padding-block: calc(40 / var(--sm-base));
  background: #F0F5F9;
}
.present-heading > span:nth-of-type(1) {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: calc(3 / var(--sm-base)) calc(20 / var(--sm-base)) calc(5 / var(--sm-base));
  background: #1C8FBB;
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  line-height: 1;
}
.present-heading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: calc(2 / var(--sm-base));
  height: calc(12 / var(--sm-base));
  background: #1C8FBB;
  transform: translateX(-50%);
}
.present-heading > span:nth-of-type(2) {
  position: relative;
  display: block;
  width: fit-content;
  margin: calc(16 / var(--sm-base)) auto 0;
  padding-left: calc(2 / var(--sm-base));
  background: linear-gradient(-185deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(36 / var(--sm-base));
  text-align: center;
  line-height: 1.15;
  letter-spacing: .075em;
}
.present-heading > span:nth-of-type(2) span:nth-of-type(1),
.present-heading > span:nth-of-type(2) span:nth-of-type(2) {
  font-size: 80%;
}
.present-heading > span:nth-of-type(2) span:nth-of-type(3) {
  letter-spacing: -.075em;
}
.present-heading > span:nth-of-type(2)::before,
.present-heading > span:nth-of-type(2)::after {
  content: '';
  position: absolute;
  top: calc(-6 / var(--sm-base));
  width: calc(45 / var(--sm-base));
  height: calc(90 / var(--sm-base));
  background: url(../images/bg_present_01.png) 0 0 / contain no-repeat;
}
.present-heading > span:nth-of-type(2)::before {
  left: calc(-32 / var(--sm-base));
}
.present-heading > span:nth-of-type(2)::after {
  right: calc(-32 / var(--sm-base));
  transform: scaleX(-1);
}
.present-list {
  margin: calc(22 / var(--sm-base)) calc(-15 / var(--sm-base)) 0;
}
.present-list li {
  margin: calc(17 / var(--sm-base)) 0 0 calc(30 / var(--sm-base));
}
.present-list li:nth-of-type(even) {
  margin: calc(17 / var(--sm-base)) calc(30 / var(--sm-base)) 0 0;
}
.present-list li picture {
  display: block;
  filter: drop-shadow(calc(4 / var(--sm-base)) calc(4 / var(--sm-base)) calc(8 / var(--sm-base)) rgba(0, 0, 0, .1));
}
.present-cta {
  margin-top: calc(50 / var(--sm-base));
}
.present-footer .present-heading {
  position: relative;
}
.present-footer .present-heading img {
  position: absolute;
  top: calc(17 / var(--sm-base));
  left: 0;
  z-index: 2;
  width: calc(121 / var(--sm-base));
}
.present-footer .present-heading > span:nth-of-type(2) {
  background: linear-gradient(160deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-indent: -.5em;
  letter-spacing: -.01em;
}
.present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(1) {
  margin-left: -.675em;
  font-size: 85%;
}
.present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(2) {
  font-size: calc(34 / var(--sm-base));
}
.present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(3) {
  font-size: 80%;
}
.present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(4) {
  font-size: calc(34 / var(--sm-base));
  letter-spacing: -.05em;
}
@media screen and (min-width: 768px), print {
  .present {
    padding-block: 80px 90px;
  }
  .present-heading > span:nth-of-type(1) {
    padding: 4px 30px 7px;
    font-size: 30px;
  }
  .present-heading > span:nth-of-type(1)::after {
    width: 3px;
    height: 16px
  }
  .present-heading > span:nth-of-type(2) {
    margin: 20px auto 0;
    font-size: 54px;
  }
  .present-heading > span:nth-of-type(2) span:nth-of-type(1),
  .present-heading > span:nth-of-type(2) span:nth-of-type(2) {
    font-size: 85%;
  }
  .present-heading > span:nth-of-type(2)::before,
  .present-heading > span:nth-of-type(2)::after {
    top: -8px;
    width: 68px;
    height: 136px;
  }
  .present-heading > span:nth-of-type(2)::before {
    left: -80px;
  }
  .present-heading > span:nth-of-type(2)::after {
    right: -80px;
  }
  .present-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 70px 0 0;
  }
  .present-list li:nth-of-type(n) {
    width: calc(50% - 10px);
    margin: 0;
  }
  .present-list li picture {
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, .1));
  }
  .present-cta {
    width: min(100%, 720px);
    margin: 75px auto 0;
  }
  .present-footer .present-heading img {
    width: 180px;
    top: 40px;
    left: calc(50% - 260px);
  }
  .present-footer .present-heading > span:nth-of-type(2) {
    margin: 40px auto -20px;
    text-indent: -.75em;
  }
  .present-footer .present-heading > span:nth-of-type(2)::before {
    left: -60px;
  }
  .present-footer .present-heading > span:nth-of-type(2)::after {
    right: -60px;
  }
  .present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(1) {
    margin-left: -.5em;
    font-size: 48px;
  }
  .present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(2) {
    font-size: 52px;
  }
  .present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(3) {
    font-size: 80%;
  }
  .present-footer .present-heading > span:nth-of-type(2) span:nth-of-type(4) {
    font-size: 52px;
    letter-spacing: -.05em;
  }
}

.attention {
  padding-top: calc(45 / var(--sm-base));
}
.attention-heading {
  margin: 0 -.5em;
}
.attention-heading > span:nth-of-type(1) {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.attention-heading-bg {
  position: relative;
  display: block;
  margin: calc(8 / var(--sm-base)) auto 0;
  width: calc(145 / var(--sm-base));
  height: calc(1 / var(--sm-base));
  background: linear-gradient(90deg, var(--color-default) 42.7%, transparent 42.7%, transparent 57.9%, var(--color-default) 57.9%);
  pointer-events: none;
}
.attention-heading-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(84 / var(--sm-base));
  width: calc(1 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  background: var(--color-default);
  transform-origin: 0 0;
  transform: rotate(50deg);
}
.attention-heading > span:nth-of-type(3) {
  display: block;
  width: fit-content;
  margin: calc(20 / var(--sm-base)) auto 0;
  background: linear-gradient(-185deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(32 / var(--sm-base));
  font-weight: 900;
  letter-spacing: -.05em;
  text-align: center;
}
.attention-heading > span:nth-of-type(3) span:nth-of-type(1) {
  margin-left: -.375em;
}
.attention-heading > span:nth-of-type(3) span:nth-of-type(2) {
  margin-left: -.2em;
}
.attention-subheading {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: calc(20 / var(--sm-base)) auto 0;
  padding: calc(16 / var(--sm-base)) calc(26 / var(--sm-base)) calc(8 / var(--sm-base));
  background: var(--color-default);
  border-radius: 100vmax;
  color: #fff;
  text-align: center;
}
.attention-subheading::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(14 / var(--sm-base));
  height: calc(10 / var(--sm-base));
  background: var(--color-default);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.attention-subheading > span:nth-of-type(1) {
  display: block;
  font-size: calc(16 / var(--sm-base));
  line-height: 1;
}
.attention-subheading > span:nth-of-type(2) {
  display: block;
  margin-top: calc(2 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
  line-height: 1;
}
.attention-subheading > span:nth-of-type(2) > span:nth-of-type(1),
.attention-subheading > span:nth-of-type(2) > span:nth-of-type(2) span {
  font-family: var(--font-roboto);
  font-size: calc(38 / var(--sm-base));
}
.attention-subheading > span:nth-of-type(2) > span:nth-of-type(2) {
  color: #FFFF00;
}
.attention-image {
  margin-top: calc(-2 / var(--sm-base));
}
.attention-image img {
  width: 100%;
}
.attention-notice {
  width: fit-content;
  margin: calc(6 / var(--sm-base)) auto 0;
  font-size: calc(12 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .attention {
    padding-top: 90px;
  }
  .attention-heading > span:nth-of-type(1) {
    font-size: 30px;
  }
  .attention-heading-bg {
    width: 217px;
    height: 2px;
    margin: 11px auto 0;
  }
  .attention-heading-bg::after {
    left: 125px;
    width: 2px;
    height: 27px;
    transform: rotate(45deg);
  }
  .attention-heading > span:nth-of-type(3) {
    margin: 30px auto 0;
    padding-block: 5px;
    font-size: 48px;
    letter-spacing: -.025em;
  }
  .attention-subheading {
    margin: 30px auto 0;
    padding: 24px 40px 14px;
  }
  .attention-subheading::after {
    top: calc(100% - 1px);
    width: 20px;
    height: 16px;
  }
  .attention-subheading > span:nth-of-type(1) {
    font-size: 24px;
  }
  .attention-subheading > span:nth-of-type(2) {
    margin-top: 2px;
    font-size: 30px;
  }
  .attention-subheading > span:nth-of-type(2) > span:nth-of-type(1),
  .attention-subheading > span:nth-of-type(2) > span:nth-of-type(2) span {
    font-size: 56px;
  }
  .attention-image {
    width: min(100%, 720px);
    margin: -3px auto 0;
  }
  .attention-notice {
    margin: 8px auto 0;
    font-size: 18px;
    line-height: 1.4;
  }
}

.case {
  position: relative;
  margin-top: calc(32 / var(--sm-base));
  background: #EEF7FC;
}
.case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(40 / var(--sm-base));
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.case-label {
  position: absolute;
  top: calc(-15 / var(--sm-base));
  left: 50%;
  z-index: 3;
  background: linear-gradient(-185deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  transform: translateX(-50%);
}
.case-heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-top: calc(52 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.case-heading > span:nth-of-type(1) {
  display: block;
  margin-bottom: calc(6 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
}
.case-heading > span:nth-of-type(2) > span:nth-of-type(-n+5) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(28 / var(--sm-base));
  height: calc(28 / var(--sm-base));
  margin-inline: calc(1 / var(--sm-base));
  padding-bottom: calc(2 / var(--sm-base));
  background: linear-gradient(180deg, #FF5500, #FFC303);
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  line-height: 1;
}
.case-heading > span:nth-of-type(2) > span:nth-of-type(6) {
  margin-left: calc(3 / var(--sm-base));
  color: var(--color-orange);
  font-size: calc(20 / var(--sm-base));
}
.case-heading > span:nth-of-type(2) > span:nth-of-type(7) {
  color: var(--color-orange);
  font-size: calc(26 / var(--sm-base));
}
.case-heading-bg:nth-of-type(3)::before,
.case-heading-bg:nth-of-type(3)::after {
  content: '';
  position: absolute;
  bottom: calc(-6 / var(--sm-base));
  width: calc(1 / var(--sm-base));
  height: calc(64 / var(--sm-base));
  background: var(--color-default);
}
.case-heading-bg:nth-of-type(3)::before {
  left: calc(-18 / var(--sm-base));
  transform: rotate(-15deg);
}
.case-heading-bg:nth-of-type(3)::after {
  right: calc(-18 / var(--sm-base));
  transform: rotate(15deg) scaleX(-1);
}
.case-heading-bg:nth-of-type(4)::before,
.case-heading-bg:nth-of-type(4)::after {
  content: '';
  position: absolute;
  bottom: calc(-6 / var(--sm-base));
  width: calc(1 / var(--sm-base));
  height: calc(38 / var(--sm-base));
  background: var(--color-default);
}
.case-heading-bg:nth-of-type(4)::before {
  left: calc(-30 / var(--sm-base));
  transform: rotate(-38deg);
}
.case-heading-bg:nth-of-type(4)::after {
  right: calc(-30 / var(--sm-base));
  transform: rotate(38deg) scaleX(-1);
}
.case-comparison-label-row {
  display: flex;
  gap: calc(13 / var(--sm-base));
  margin-top: calc(24 / var(--sm-base));
}
.case-comparison-label {
  width: calc(50% - (6.5 / var(--sm-base)));
  padding-inline: calc(12 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
}
.case-comparison-label > span {
  position: relative;
  display: block;
  padding: calc(1 / var(--sm-base));
  background: linear-gradient(#1A8FBB, #103CDD);
  border-radius: 100vmax;
}
.case-comparison-label > span::before,
.case-comparison-label > span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(12 / var(--sm-base));
  height: calc(8 / var(--sm-base));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.case-comparison-label > span::before {
  background: #103CDD;
}
.case-comparison-label > span::after {
  top: calc(100% - (2 / var(--sm-base)));
  z-index: 3;
  width: calc(11 / var(--sm-base));
  background: #fff;
}
.case-comparison-label > span > span {
  display: block;
  background: #fff;
  border-radius: 100vmax;
}
.case-comparison-label > span > span > span {
  display: block;
  background: linear-gradient(#1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
}
.case-comparison-label:nth-of-type(2) > span {
  background: linear-gradient(#FF5500, #FFC303);
}
.case-comparison-label:nth-of-type(2) > span::before {
  background: #FFC303;
}
.case-comparison-label:nth-of-type(2) > span > span > span {
  background: linear-gradient(#FF5500, #FFC303);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-comparison-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: calc(19 / var(--sm-base)) calc(13 / var(--sm-base));
}
.case-comparison-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border: calc(2 / var(--sm-base)) solid var(--color-default);
}
.case-comparison-item .u-font-roboto {
  font-family: var(--font-roboto);
}
.case-comparison-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(80 / var(--sm-base));
  padding: calc(8 / var(--sm-base)) calc(8 / var(--sm-base)) calc(12 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.case-comparison-item-title span::after {
  position: relative;
  top: calc(4 / var(--sm-base));
  content: '';
  display: inline-block;
  width: calc(18 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  margin-left: calc(2 / var(--sm-base));
  background-position: 0 0;
  background-size: contain;
  background-position: 0 0;
}
.case-comparison-item-title[data-type="design"] span::after {
  background-image: url(../images/icn_comparison_03.png);
}
.case-comparison-item-title[data-type="writer"] span::after {
  background-image: url(../images/icn_comparison_04.png);
}
.case-comparison-item-title[data-type="data"] span::after {
  background-image: url(../images/icn_comparison_05.png);
}
.case-comparison-item-inner {
  padding-block: calc(10 / var(--sm-base)) calc(8 / var(--sm-base));
  background: #EDEDED;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.0175em;
  text-align: center;
}
.case-comparison-item-detail01 {
  display: inline-flex;
  align-items: center;
}
.case-comparison-item-detail01 > span:nth-of-type(1) {
  margin-right: calc(4 / var(--sm-base));
  padding: calc(1 / var(--sm-base)) calc(8 / var(--sm-base));
  background: var(--color-default);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(13 / var(--sm-base));
}
.case-comparison-item-detail01 > span:nth-of-type(1) .u-font-roboto {
  font-size: calc(15 / var(--sm-base));
  font-weight: 700;
}
.case-comparison-item-detail01.--case03after > span:nth-of-type(1) {
  font-size: calc(11 / var(--sm-base));
}
.case-comparison-item-detail01.--case03after > span:nth-of-type(1) .u-font-roboto {
  font-size: calc(13 / var(--sm-base));
}
.case-comparison-item-detail01.--case03after > span:nth-of-type(2) {
  font-size: calc(14 / var(--sm-base));
}
.case-comparison-item-detail02 {
  display: inline-flex;
  align-items: center;
  margin-top: calc(6 / var(--sm-base));
}
.case-comparison-item-detail02 > span:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / var(--sm-base));
  height: calc(40 / var(--sm-base));
  margin-right: calc(4 / var(--sm-base));
  background: var(--color-default);
  border-radius: 50%;
  color: #fff;
  font-size: calc(12 / var(--sm-base));
  line-height: 1.1;
}
.case-comparison-item-detail02 > span:nth-of-type(2) {
  font-size: calc(13 / var(--sm-base));
}
.case-comparison-item-detail02 > span:nth-of-type(2) .u-font-roboto {
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
}
.case-comparison-item-detail03 {
  margin-top: calc(5 / var(--sm-base));
}
.case-comparison-item-detail03 > span:nth-of-type(1) {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: calc(2 / var(--sm-base)) calc(14 / var(--sm-base)) calc(3 / var(--sm-base));
  background: var(--color-default);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(16 / var(--sm-base));
}
.case-comparison-item-detail03 > span:nth-of-type(1) span {
  position: relative;
  padding-right: calc(20 / var(--sm-base));
}
.case-comparison-item-detail03 > span:nth-of-type(1) span::after {
  content: '';
  position: absolute;
  top: calc(3 / var(--sm-base));
  right: 0;
  width: calc(17 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  background: url(../images/icn_comparison_01.png) 0 0 / contain no-repeat;
}
.case-comparison-item-detail03 > span:nth-of-type(2) {
  display: block;
  margin-top: calc(3 / var(--sm-base));
  font-size: calc(19 / var(--sm-base));
}
.case-comparison-item:nth-of-type(even) {
  position: relative;
  border-color: var(--color-orange);
}
.case-comparison-item:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(-22 / var(--sm-base));
  width: calc(27 / var(--sm-base));
  height: calc(27 / var(--sm-base));
  background: url(../images/icn_comparison_02.png) 0 0 / contain no-repeat;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 calc(8 / var(--sm-base)) rgba(0, 0, 0, .15));
}
.case-comparison-item:nth-of-type(even) .case-comparison-item-title {
  background: var(--color-orange);
}
.case-comparison-item:nth-of-type(even) .case-comparison-item-inner {
  background: #FFF3EB;
  color: var(--color-orange);
}
.case-comparison-item:nth-of-type(even) .case-comparison-item-detail01 {
  color: var(--color-orange);
}
.case-comparison-item:nth-of-type(even) .case-comparison-item-detail01 > span:nth-of-type(1),
.case-comparison-item:nth-of-type(even) .case-comparison-item-detail02 > span:nth-of-type(1),
.case-comparison-item:nth-of-type(even) .case-comparison-item-detail03 > span:nth-of-type(1) {
  background: var(--color-orange);
}
.case-summary {
  padding-block: calc(16 / var(--sm-base)) calc(24 / var(--sm-base));
  line-height: 1.5;
  text-align: center;
}
.case-summary strong {
  font-weight: 500;
}
.case-summary span {
  display: inline-block;
  padding: 0 calc(4 / var(--sm-base)) calc(2 / var(--sm-base)) calc(4 / var(--sm-base));
  background: linear-gradient(#1A8FBB, #103CDD);
  color: #fff;
  line-height: 1.2;
}
.case-summary span:nth-of-type(2) {
  margin-top: calc(6 / var(--sm-base));
  padding: 0 0 calc(2 / var(--sm-base)) calc(4 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .case {
    margin-top: 60px;
  }
  .case::before {
    left: 50%;
    width: 560px;
    height: 60px;
    transform: translateX(-50%);
  }
  .case-label {
    top: -30px;
    font-size: 36px;
  }
  .case-heading {
    padding-top: 75px;
  }
  .case-heading > span:nth-of-type(1) {
    margin-bottom: 18px;
    font-size: 30px;
  }
  .case-heading > span:nth-of-type(2) > span:nth-of-type(-n+5) {
    width: auto;
    height: auto;
    min-width: 42px;
    min-height: 42px;
    margin-inline: 1.5px;
    padding: 2px 2px 4px;
    font-size: 30px;
  }
  .case-heading > span:nth-of-type(2) > span:nth-of-type(6) {
    margin-left: 5px;
    font-size: 30px;
  }
  .case-heading > span:nth-of-type(2) > span:nth-of-type(7) {
    font-size: 38px;
  }
  .case-heading-bg:nth-of-type(3)::before,
  .case-heading-bg:nth-of-type(3)::after {
    bottom: -10px;
    width: 2px;
    height: 100px;
  }
  .case-heading-bg:nth-of-type(3)::before {
    left: -28px;
  }
  .case-heading-bg:nth-of-type(3)::after {
    right: -28px;
  }
  .case-heading-bg:nth-of-type(4)::before,
  .case-heading-bg:nth-of-type(4)::after {
    bottom: -8px;
    width: 2px;
    height: 56px;
  }
  .case-heading-bg:nth-of-type(4)::before {
    left: -46px;
  }
  .case-heading-bg:nth-of-type(4)::after {
    right: -46px;
  }
  .case-comparison-label-row {
    gap: 20px;
    margin-top: 30px;
  }
  .case-comparison-label {
    width: calc(50% - 10px);
    padding-inline: 0;
    font-size: 32px;
    line-height: 1;
  }
  .case-comparison-label > span {
    width: min(100%, 248px);
    margin-inline: auto;
    padding: 2px;
  }
  .case-comparison-label > span::before,
  .case-comparison-label > span::after {
    width: 17px;
    height: 12px;
  }
  .case-comparison-label > span::after {
    top: calc(100% - 3px);
    width: 16px;
  }
  .case-comparison-label > span > span {
    padding: 5px 0 7px;
  }
  .case-comparison-list {
    gap: 30px 20px;
  }
  .case-comparison-item {
    border-width: 2px;
  }
  .case-comparison-item-title {
    min-height: 75px;
    padding: 8px 10px 12px;
  }
  .case-comparison-item-title span::after {
    top: 6px;
    margin-top: -4px;
    width: 28px;
    height: 28px;
    margin-left: 6px;
  }
  .case-comparison-item-inner {
    padding-block: 30px 35px;
  }
  .case-comparison-item-detail01 > span:nth-of-type(1) {
    margin-right: 6px;
    padding: 1px 12px;
    font-size: 19px;
  }
  .case-comparison-item-detail01 > span:nth-of-type(1) .u-font-roboto {
    font-size: 22px;
  }
  .case-comparison-item-detail01 > span:nth-of-type(2) {
    font-size: 20px;
  }
  .case-comparison-item-detail01.--case03after > span:nth-of-type(1) {
    font-size: 19px;
  }
  .case-comparison-item-detail01.--case03after > span:nth-of-type(1) .u-font-roboto {
    font-size: 22px;
  }
  .case-comparison-item-detail01.--case03after > span:nth-of-type(2) {
    font-size: 20px;
  }
  .case-comparison-item-detail02 {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
  .case-comparison-item-detail02 > span:nth-of-type(1) {
    width: inherit;
    height: inherit;
    margin-right: 6px;
    padding: 2px 12px 4px;
    border-radius: 100vmax;
    font-size: 19px;
    line-height: 1.2;
  }
  .case-comparison-item-detail02 > span:nth-of-type(1) br {
    display: none;
  }
  .case-comparison-item-detail02 > span:nth-of-type(2) {
    font-size: 18px;
  }
  .case-comparison-item-detail02 > span:nth-of-type(2) .u-font-roboto {
    font-size: 20px;
  }
  .case-comparison-item-detail03 {
    margin-top: 10px;
  }
  .case-comparison-item-detail03 > span:nth-of-type(1) {
    padding: 2px 20px 4px;
    font-size: 20px;
  }
  .case-comparison-item-detail03 > span:nth-of-type(1) span {
    padding-right: 32px;
  }
  .case-comparison-item-detail03 > span:nth-of-type(1) span::after {
    top: 3px;
    width: 25px;
    height: 26px;
  }
  .case-comparison-item-detail03 > span:nth-of-type(2) {
    margin-top: 5px;
    font-size: 28px;
  }
  .case-comparison-item:nth-of-type(even)::before {
    left: -36px;
    width: 51px;
    height: 51px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, .15));
  }
  .case-summary {
    padding-block: 40px 80px;
    font-size: 24px;
  }
  .case-summary span {
    padding: 0 8px 2px 8px;
  }
  .case-summary span:nth-of-type(2) {
    display: block;
    width: fit-content;
    margin: 8px auto 0;
    padding: 0 0 2px 8px;
  }
}
@media screen and (min-width: 1024px), print {
  .case-comparison-item-title span br {
    display: none;
  }
  .case-comparison-item-detail02 {
    display: inline-flex;
    margin: 0 0 0 10px;
  }
  .case-summary span {
    padding: 0 0 2px 8px;
  }
  .case-summary span:nth-of-type(2) {
    display: inline-block;
    padding: 0 0 2px 0;
  }
}

.other-case {
  padding-block: calc(40 / var(--sm-base));
  background: url(../images/bg_other-case_01_sm.jpg) 50% 50% / cover no-repeat;
}
.other-case-heading {

}
.other-case-heading > span:nth-of-type(1) {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: calc(2 / var(--sm-base));
  background: #1A8FBB;
  border-radius: 100vmax;
  line-height: 1;
}
.other-case-heading > span:nth-of-type(1)::before,
.other-case-heading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(8 / var(--sm-base));
  height: calc(8 / var(--sm-base));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.other-case-heading > span:nth-of-type(1)::before {
  background: #1A8FBB;
}
.other-case-heading > span:nth-of-type(1)::after {
  top: calc(100% - (4 / var(--sm-base)));
  z-index: 3;
  width: calc(8 / var(--sm-base));
  background: #fff;
}
.other-case-heading > span:nth-of-type(1) > span {
  display: block;
  padding: calc(8 / var(--sm-base)) calc(16 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border-radius: 100vmax;
}
.other-case-heading > span:nth-of-type(1) > span > span {
  display: block;
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(16 / var(--sm-base));
}
.other-case-heading > span:nth-of-type(2) {
  display: block;
  margin-top: calc(-2 / var(--sm-base));
  padding-block: calc(7 / var(--sm-base)) calc(8 / var(--sm-base));
  background: #F0F5F9;
  font-size: calc(24 / var(--sm-base));
  text-align: center;
}
.other-case-heading > span:nth-of-type(2) span {
  display: block;
  background: linear-gradient(180deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.other-case-contents {
  margin: calc(20 / var(--sm-base)) calc(-15 / var(--sm-base)) 0;
}
.other-case-contents .swiper-slide {
  padding-inline: calc(15 / var(--sm-base));
}
.other-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: calc(12 / var(--sm-base));
}
.other-case-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  background: #fff;
  border: calc(1 / var(--sm-base)) solid var(--color-blue);
  border-top: none;
}
.other-case-item-title {
  padding: calc(4 / var(--sm-base)) calc(8 / var(--sm-base));
  background: #47AACD;
  color: #fff;
  font-size: calc(14 / var(--sm-base));
  text-align: center;
}
.other-case-item-detail {
  padding: calc(12 / var(--sm-base)) 0;
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.other-case-item-detail01 span,
.other-case-item-detail02 span {
  font-size: calc(14 / var(--sm-base));
}
.other-case-item-detail02 {
  color: var(--color-orange);
  margin-top: calc(5 / var(--sm-base));
}
.other-case-contents .swiper-pagination {
  position: static;
  margin-top: calc(15 / var(--sm-base));
  font-size: 0;
}
.other-case-contents .swiper-pagination .swiper-pagination-bullet {
  width: calc(10 / var(--sm-base));
  height: calc(10 / var(--sm-base));
  margin: 0 calc(6 / var(--sm-base));
  background: #fff;
  opacity: 1;
}
.other-case-contents .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-green);
}
.--item02 .other-case-item-detail01 {
  padding: calc(8 / var(--sm-base)) 0 calc(14 / var(--sm-base));
}
.--item03 .other-case-item-detail01 {
  padding: 0 0 calc(17 / var(--sm-base));
}
.--item04 .other-case-item-detail01 {
  padding: 0 0 calc(25 / var(--sm-base));
  line-height: 1.4;
}
.--item06 .other-case-item-detail01 {
  padding: 0 0 calc(15 / var(--sm-base));
}
.--item07 .other-case-item-detail01 {
  padding: 0 0 calc(5 / var(--sm-base));
}
.--item08 .other-case-item-detail01 {
  padding: calc(5 / var(--sm-base)) 0 0;
  line-height: 1.4;
}
.--item09 .other-case-item-detail01,
.--item10 .other-case-item-detail01 {
  padding: 0 0 calc(18 / var(--sm-base));
}
.--item11 .other-case-item-detail02 {
  letter-spacing: -.05em;
}
.--item12 .other-case-item-detail01 {
padding: 0 calc(4 / var(--sm-base)) calc(4 / var(--sm-base));
}
.--item12 .other-case-item-detail01 br:nth-of-type(1) {
  display: none;
}
@media screen and (min-width: 768px), print {
  .other-case {
    padding-block: 65px 80px;
    background-image: url(../images/bg_other-case_01_lg.jpg);
  }
  .other-case-heading > span:nth-of-type(1) {
    padding: 3px;
  }
  .other-case-heading > span:nth-of-type(1)::before,
  .other-case-heading > span:nth-of-type(1)::after {
    width: 15px;
    height: 13px;
  }
  .other-case-heading > span:nth-of-type(1)::after {
    top: calc(100% - 5px);
    width: 13px;
  }
  .other-case-heading > span:nth-of-type(1) > span {
    padding: 10px 24px 12px;
  }
  .other-case-heading > span:nth-of-type(1) > span > span {
    font-size: 24px;
  }
  .other-case-heading > span:nth-of-type(2) {
    width: 515px;
    margin: 0 auto 0;
    padding-block: 15px 17px;
    font-size: 36px;
  }
  .other-case-contents {
    margin: 30px -30px 0;
  }
  .other-case-contents .swiper-slide {
    padding-inline: 30px;
  }
  .other-case-list {
    gap: 20px;
  }
  .other-case-item {
    border-width: 2px;
  }
  .other-case-item-title {
    padding: 4px 8px;
    font-size: 20px;
  }
  .other-case-item-detail {
    padding: 32px 0;
    font-size: 20px;
  }
  .other-case-item-detail01 span,
  .other-case-item-detail02 span {
    font-size: 16px;
  }
  .other-case-item-detail02 {
    margin-top: 20px;
  }
  .other-case-contents .swiper-pagination {
    margin-top: 30px;
  }
  .other-case-contents .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 9px;
  }
  .--item02 .other-case-item-detail01,
  .--item03 .other-case-item-detail01,
  .--item04 .other-case-item-detail01,
  .--item06 .other-case-item-detail01,
  .--item07 .other-case-item-detail01,
  .--item08 .other-case-item-detail01,
  .--item09 .other-case-item-detail01,
  .--item10 .other-case-item-detail01,
  .--item11 .other-case-item-detail01,
  .--item12 .other-case-item-detail01 {
    padding: 0;
    line-height: inherit;
  }
  .--item12 .other-case-item-detail01 br:nth-of-type(2),
  .--item12 .other-case-item-detail02 br {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .other-case-item-detail br {
    display: none;
  }
  .--item12 .other-case-item-detail01 br:nth-of-type(1) {
    display: inline;
  }
}

.merit {
  padding-block: calc(40 / var(--sm-base));
  background: #F7FFFE;
}
.merit-heading {
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.merit-heading span:nth-of-type(1) {
  position: relative;
  display: inline-block;
  margin-bottom: calc(6 / var(--sm-base));
  padding: calc(8 / var(--sm-base)) calc(12 / var(--sm-base)) calc(8 / var(--sm-base)) 0;
  background: linear-gradient(-240deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(30 / var(--sm-base));
}
.merit-heading span:nth-of-type(1)::before,
.merit-heading span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  width: calc(12 / var(--sm-base));
  height: calc(12 / var(--sm-base));
}
.merit-heading span:nth-of-type(1)::before {
  top: calc(5 / var(--sm-base));
  left: calc(-6 / var(--sm-base));
  border-top: calc(1 / var(--sm-base)) solid var(--color-default);
  border-left: calc(1 / var(--sm-base)) solid var(--color-default);
}
.merit-heading span:nth-of-type(1)::after {
  right: calc(4 / var(--sm-base));
  bottom: calc(-1 / var(--sm-base));
  border-right: calc(1 / var(--sm-base)) solid var(--color-default);
  border-bottom: calc(1 / var(--sm-base)) solid var(--color-default);
}
.merit-heading span:nth-of-type(2) {
  color: var(--color-green);
  font-size: calc(23 / var(--sm-base));
}
.merit-list {
  margin-top: calc(52 / var(--sm-base));
}
.merit-item {
  position: relative;
  margin-top: calc(40 / var(--sm-base));
  padding-top: calc(28 / var(--sm-base));
  background: #fff;
  border: calc(1 / var(--sm-base)) solid var(--color-green);
}
.merit-item-heading {
  position: absolute;
  top: calc(-16 / var(--sm-base));
  left: 50%;
  padding: calc(2 / var(--sm-base)) calc(22 / var(--sm-base)) calc(3 / var(--sm-base));
  background: var(--color-green);
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  white-space: nowrap;
  transform: translateX(-50%);
}
.merit-item-heading span {
  font-family: var(--font-roboto);
  font-size: calc(26 / var(--sm-base));
}
.merit-item-subheading {
  background: linear-gradient(180deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(26 / var(--sm-base));
  line-height: 1.5;
  text-align: center;
}
.merit-item-row {
  display: flex;
  align-items: flex-end;
  margin-top: calc(5 / var(--sm-base));
}
.merit-item-image {
  width: calc(118 / var(--sm-base));
}
.merit-item-text {
  flex: 1;
  padding: 0 calc(5 / var(--sm-base)) calc(10 / var(--sm-base)) 0;
  font-size: calc(14 / var(--sm-base));
  letter-spacing: -.05em;
  line-height: 1.4;
  text-indent: -.5em;
}
.merit-item:nth-of-type(2) .merit-item-row {
  flex-direction: row-reverse;
  align-items: flex-start;
}
.merit-item:nth-of-type(2) .merit-item-text {
  padding: 0 0 calc(10 / var(--sm-base)) calc(10 / var(--sm-base));
  text-indent: 0;
}
.merit-more-heading {
  position: relative;
  z-index: 2;
  display: block;
  margin: calc(46 / var(--sm-base)) 0 calc(-43 / var(--sm-base));
  padding: calc(1 / var(--sm-base));
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  border-radius: 100vmax;
}
.merit-more-heading > span {
  display: block;
  background: #fff;
  border-radius: 100vmax;
}
.merit-more-heading > span > span:nth-of-type(1) {
  position: absolute;
  top: calc(-15 / var(--sm-base));
  left: 50%;
  z-index: 2;
  padding: calc(1 / var(--sm-base));
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  transform: translateX(-50%);
}
.merit-more-heading > span > span:nth-of-type(1) > span {
  display: block;
  background: #fff;
  padding: calc(2 / var(--sm-base)) calc(17 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
}
.merit-more-heading > span > span:nth-of-type(1) > span span {
  display: block;
  background: linear-gradient(-185deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.merit-more-heading > span > span:nth-of-type(2) {
  display: block;
  padding-block: calc(24 / var(--sm-base)) calc(22 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.merit-more-heading > span > span:nth-of-type(2) > span {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: calc(2 / var(--sm-base));
  background: linear-gradient(transparent 80%, #FFFF00 80%);
}
.merit-more-heading > span > span:nth-of-type(2) > span > span {
  display: block;
  background: linear-gradient(90deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.merit-more-heading > span > span:nth-of-type(2) > span > span > span {
  font-family: var(--font-roboto);
  font-size: calc(25 / var(--sm-base));
}
.merit-more-contents {
  padding: calc(50 / var(--sm-base)) calc(12 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #fff;
  box-shadow: 0 0 calc(12 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.merit-summary {
  margin-top: calc(24 / var(--sm-base));
  line-height: 1.5;
}
.merit-summary strong {
  color: var(--color-orange);
}
@media screen and (min-width: 768px), print {
  .merit {
    padding-block: 90px 80px;
  }
  .merit-heading {
    font-size: 30px;
  }
  .merit-heading span:nth-of-type(1) {
    margin: 0 0 20px 14px;
    padding: 4px 20px 4px 0;
    font-size: 45px;
  }
  .merit-heading span:nth-of-type(1)::before,
  .merit-heading span:nth-of-type(1)::after {
    width: 19px;
    height: 19px;
  }
  .merit-heading span:nth-of-type(1)::before {
    top: -4px;
    left: -10px;
    border-top-width: 2px;
    border-left-width: 2px;
  }
  .merit-heading span:nth-of-type(1)::after {
    right: 9px;
    bottom: -12px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
  .merit-heading span:nth-of-type(2) {
    font-size: 34px;
  }
  .merit-list {
    display: flex;
    margin-top: 65px;
    gap: 20px;
  }
  .merit-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    margin: 0;
    padding-top: 40px;
    border-width: 2px;
  }
  .merit-item-heading {
    top: -25px;
    padding: 5px 38px 6px;
    font-size: 26px;
  }
  .merit-item-heading span {
    font-size: 34px;
  }
  .merit-item-subheading {
    font-size: 24px;
    padding-bottom: 25px;
  }
  .merit-item:nth-of-type(n) .merit-item-row {
    flex-direction: row;
    align-items: flex-end;
    margin-top: auto;
  }
  .merit-item:nth-of-type(n) .merit-item-image {
    width: min(40%, 180px);
  }
  .merit-item:nth-of-type(n) .merit-item-text {
    padding: 0 15px 25px 2px;
    font-size: 18px;
    letter-spacing: 0;
  }
  .merit-more-heading {
    width: fit-content;
    margin: 85px auto 0;
    padding: 2px;
  }
  .merit-more-heading > span > span:nth-of-type(1) {
    top: -24px;
    padding: 2px;
  }
  .merit-more-heading > span > span:nth-of-type(1) > span {
    padding: 8px 24px;
    font-size: 30px;
  }
  .merit-more-heading > span > span:nth-of-type(2) {
    padding: 40px 22px 34px;
    font-size: 30px;
  }
  .merit-more-heading > span > span:nth-of-type(2) > span {
    padding-bottom: 2px;
    line-height: 1.1;
  }
  .merit-more-heading > span > span:nth-of-type(2) > span > span > span {
    font-size: 38px;
  }
  .merit-more-contents {
    padding: 10px 30px 80px;
    box-shadow: 0 0 18px rgba(0, 0, 0, .15);
  }
  .merit-more-contents picture {
    display: block;
    width: min(100%, 703px);
    margin-inline: auto;
  }
  .merit-summary {
    width: min(100%, 713px);
    margin: 35px auto 0;
  }
}
@media screen and (min-width: 1024px), print {
  .merit-item-heading {
    top: -25px;
    font-size: 30px;
  }
  .merit-item-heading span {
    font-size: 38px;
  }
  .merit-item-subheading {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px), print {
  .merit-item-subheading br {
    display: none;
  }
  .merit-item:nth-of-type(n) .merit-item-text {
    font-size: 20px;
  }
}

.worries-heading {
  padding: calc(22 / var(--sm-base));
  background: #2E6081;
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.worries-contents picture {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .worries-heading {
    padding: 35px 20px;
    font-size: 30px;
  }
  .worries-contents {
    padding: 30px 15px 0;
    background: url(../images/bg_worries_01_lg.jpg) 50% 50% / cover no-repeat;
  }
  .worries-contents picture {
    position: relative;
    left: 12px;
    width: min(100%, 1000px);
    margin-inline: auto;
  }
}

.topic {
  padding-bottom: calc(40 / var(--sm-base));
  background: #F0F5F9;
}
.topic-lead {
  position: relative;
  padding: calc(30 / var(--sm-base)) 0 calc(75 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: #fff;
}
.topic-lead::before {
  content: '';
  position: absolute;
  top: calc(-18 / var(--sm-base));
  left: 50%;
  width: calc(33 / var(--sm-base));
  height: calc(38 / var(--sm-base));
  background: url(../images/icn_topic_01.png) 0 0 / contain no-repeat;
  transform: translateX(-50%);
}
.topic-heading {
  position: relative;
  top: calc(-62 / var(--sm-base));
  margin-bottom: calc(-62 / var(--sm-base));
  padding: calc(16 / var(--sm-base)) 0;
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.topic-heading > span:nth-of-type(1) {
  display: block;
  font-size: calc(20 / var(--sm-base));
}
.topic-heading > span:nth-of-type(1) span {
  color: #FFFF00;
  font-weight: 700;
}
.topic-heading > span:nth-of-type(2) {
  display: block;
  font-size: calc(30 / var(--sm-base));
  font-weight: 300;
}
.topic-heading > span:nth-of-type(3) {
  display: block;
  font-family: var(--font-roboto);
  font-size: calc(14 / var(--sm-base));
  font-weight: 400;
}
.topic-heading > span:nth-of-type(3) img {
  display: inline-block;
  width: calc(66 / var(--sm-base));
  vertical-align: middle;
}
.topic-subheading {
  margin-top: calc(27 / var(--sm-base));
}
.topic-subheading > span:nth-of-type(1) {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: calc(22 / var(--sm-base));
  font-weight: 500;
}
.topic-subheading > span:nth-of-type(1)::before,
.topic-subheading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: calc(2 / var(--sm-base));
  width: calc(14 / var(--sm-base));
  height: calc(28 / var(--sm-base));
  background: url(../images/icn_topic_02.png) 0 0 / contain no-repeat;
}
.topic-subheading > span:nth-of-type(1)::before {
  left: calc(-33 / var(--sm-base));
}
.topic-subheading > span:nth-of-type(1)::after {
  right: calc(-33 / var(--sm-base));
  transform: scaleX(-1);
}
.topic-subheading > span:nth-of-type(1) span {
  font-family: var(--font-roboto);
}
.topic-subheading > span:nth-of-type(2) span {
  display: block;
  width: fit-content;
  padding: 0 calc(20 / var(--sm-base)) calc(1 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  font-weight: 500;
}
.topic-subheading > span:nth-of-type(2) span:nth-of-type(1) {
  margin: calc(18 / var(--sm-base)) auto 0;
}
.topic-subheading > span:nth-of-type(2) span:nth-of-type(2) {
  margin: calc(2 / var(--sm-base)) auto 0;
}
.topic-message01 {
  position: relative;
  width: fit-content;
  margin: calc(30 / var(--sm-base)) auto 0;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.topic-message01::before {
  content: '';
  position: absolute;
  top: calc(4 / var(--sm-base));
  left: calc(-14 / var(--sm-base));
  width: calc(148 / var(--sm-base));
  height: calc(57 / var(--sm-base));
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-default);
  border-left: calc(2 / var(--sm-base)) solid var(--color-default);
  pointer-events: none;
}
.topic-message01 span {
  position: relative;
  display: block;
}
.topic-message01 span::before {
  content: '';
  position: absolute;
  right: calc(-14 / var(--sm-base));
  bottom: calc(-10.5 / var(--sm-base));
  width: calc(126 / var(--sm-base));
  height: calc(2 / var(--sm-base));
  background: var(--color-default);
}
.topic-message01 span::after {
  content: '';
  position: absolute;
  bottom: calc(-28.5 / var(--sm-base));
  right: calc(110 / var(--sm-base));
  width: calc(2 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  background: var(--color-default);
  transform-origin: 0 0;
  transform: rotate(45deg);
}
.topic-message02 {
  position: relative;
  width: fit-content;
  margin: calc(32 / var(--sm-base)) auto 0;
  font-size: calc(28 / var(--sm-base));
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.topic-message02::before,
.topic-message02::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(14 / var(--sm-base));
  height: calc(11 / var(--sm-base));
  background: url(../images/icn_topic_03.png) 0 0 / contain no-repeat;
}
.topic-message02::after {
  top: auto;
  right: calc(-16 / var(--sm-base));
  bottom: calc(2 / var(--sm-base));
  left: auto;
  transform: scale(-1);
}
.topic-image {
  position: relative;
  margin-top: calc(12 / var(--sm-base));
}
.topic-image img {
  position: relative;
  left: calc(6 / var(--sm-base));
  display: block;
  width: calc(260 / var(--sm-base));
  margin-inline: auto;
}
.topic-image p {
  position: absolute;
  bottom: calc(33 / var(--sm-base));
  left: 0;
  z-index: 2;
}
.topic-image p > span {
  display: block;
  width: fit-content;
  background: #fff;
}
.topic-image p > span:nth-of-type(-n+3) {
  margin-top: calc(2 / var(--sm-base));
  padding: 0 calc(4 / var(--sm-base)) calc(1 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  line-height: 1.2;
}
.topic-image p > span:nth-of-type(4) {
  margin-top: calc(8 / var(--sm-base));
  padding: calc(1 / var(--sm-base)) calc(4 / var(--sm-base)) calc(2 / var(--sm-base));
  font-size: calc(24 / var(--sm-base));
  line-height: 1.2;
}
.topic-about {
  box-shadow: 0 calc(4 / var(--sm-base)) calc(4 / var(--sm-base)) rgba(0, 0, 0, .25);
}
.topic-about-heading {
  position: relative;
  padding-block: calc(18 / var(--sm-base));
  background: var(--color-blue);
  color: #fff;
  font-size: calc(20 / var(--sm-base));
  text-align: center;
  cursor: pointer;
}
.topic-about-heading::after {
  content: '';
  position: absolute;
  top: 54%;
  right: calc(26 / var(--sm-base));
  width: calc(16 / var(--sm-base));
  height: calc(11 / var(--sm-base));
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.topic-about-heading.--open::after {
  transform: translateY(-50%) scaleY(-1);
}
@media (hover: hover) and (pointer: fine) {
  .topic-about-heading {
    transition: opacity var(--transition);
  }
  .topic-about-heading:hover {
    opacity: var(--hover-opacity);
  }
}
.topic-about-contents {
  height: 0;
  overflow: hidden;
}
.topic-about-contents-inner {
  padding: calc(15 / var(--sm-base)) calc(15 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(2 / var(--sm-base)) solid var(--color-blue);
  border-top: none;
}
.topic-about-name {
  display: inline-block;
  padding-bottom: calc(8 / var(--sm-base));
  border-bottom: calc(1 / var(--sm-base)) solid var(--color-default);
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
}
.topic-about-description {
  margin-top: calc(8 / var(--sm-base));
  line-height: 1.5;
}
.topic-about-books {
  position: relative;
  width: fit-content;
  margin: calc(7 / var(--sm-base)) auto calc(10 / var(--sm-base));
  font-size: calc(15 / var(--sm-base));
  font-weight: 700;
}
.topic-about-books::before,
.topic-about-books::after {
  content: '';
  position: absolute;
  top: calc(3 / var(--sm-base));
  width: calc(1.5 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  background: var(--color-default);
}
.topic-about-books::before {
  left: calc(-10 / var(--sm-base));
  transform: rotate(-15deg);
}
.topic-about-books::after {
  right: calc(-10 / var(--sm-base));
  transform: rotate(15deg);
}
.topic-text {
  margin-top: calc(20 / var(--sm-base));
}
.topic-about-ai-heading {
  margin-top: calc(38 / var(--sm-base));
  padding-bottom: calc(1 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-size: calc(28 / var(--sm-base));
  font-weight: 500;
  text-align: center;
}
.topic-about-ai-heading span {
  display: inline-block;
  background: linear-gradient(90deg, #5AC3EA, #3A60EC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.topic-about-ai-text01 {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  font-weight: 400;
  line-height: 1.4;
}
.topic-about-ai-block01 {
  margin-top: calc(15 / var(--sm-base));
  padding: calc(12 / var(--sm-base)) calc(5 / var(--sm-base));
  background: #fff;
  box-shadow: 0 0 calc(4 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.topic-about-ai-block01-heading {
  margin-bottom: calc(8 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  text-align: center;
}
.topic-about-ai-block01 img {
  width: 100%;
}
.topic-about-ai-block01-notice {
  margin-top: calc(5 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  text-align: center;
}
.topic-about-ai-text02 {
  margin-top: calc(15 / var(--sm-base));
}
.topic-about-ai-block02 {
  margin-top: calc(20 / var(--sm-base));
  padding: calc(12 / var(--sm-base)) calc(5 / var(--sm-base)) calc(15 / var(--sm-base));
  background: #fff;
  box-shadow: 0 0 calc(4 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.topic-about-ai-block02-heading {
  margin-bottom: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  text-align: center;
}
.topic-about-ai-block02 img {
  width: 100%;
}
.topic-about-ai-block02-notice {
  margin: calc(15 / var(--sm-base)) calc(10 / var(--sm-base)) 0;
  font-size: calc(12 / var(--sm-base));
}
.topic-about-ai-text03 {
  margin-top: calc(15 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .topic {
    padding-bottom: 80px;
  }
  .topic-lead {
    padding: 48px 0 95px;
    font-size: 24px;
  }
  .topic-lead::before {
    top: -27px;
    width: 50px;
    height: 58px;
  }
  .topic-heading {
    top: -68px;
    margin-bottom: -68px;
    padding: 33px 0 21px;
  }
  .topic-heading > span:nth-of-type(1) {
    font-size: 30px;
  }
  .topic-heading > span:nth-of-type(1) span {
    font-size: 38px;
  }
  .topic-heading > span:nth-of-type(2) {
    margin-top: 8px;
    font-size: 44px;
  }
  .topic-heading > span:nth-of-type(3) {
    margin-top: 5px;
    font-size: 20px;
  }
  .topic-heading > span:nth-of-type(3) img {
    width: 100px;
  }
  .topic-subheading {
    margin-top: 50px;
    font-size: 0;
    text-align: center;
  }
  .topic-subheading > span:nth-of-type(1) {
    padding-top: 12px;
    font-size: 32px;
  }
  .topic-subheading > span:nth-of-type(1)::before,
  .topic-subheading > span:nth-of-type(1)::after {
    top: 0;
    width: 22px;
    height: 43px;
  }
  .topic-subheading > span:nth-of-type(1)::before {
    left: -50px;
  }
  .topic-subheading > span:nth-of-type(1)::after {
    right: -50px;
  }
  .topic-subheading > span:nth-of-type(2) {
    display: inline-flex;
    margin-top: 30px;
  }
  .topic-subheading > span:nth-of-type(2) span {
    display: block;
    width: auto;
    font-size: 30px;
    line-height: 1.2;
  }
  .topic-subheading > span:nth-of-type(2) span:nth-of-type(1) {
    margin: 0;
    padding: 0 0 4px 12px;
  }
  .topic-subheading > span:nth-of-type(2) span:nth-of-type(2) {
    margin: 0;
    padding: 0 12px 4px 0;
  }
  .topic-row {
    position: relative;
    width: min(100%, 720px);
    margin: 15px auto 0;
  }
  .topic-message01 {
    position: absolute;
    top: 19.5%;
    left: 4%;
    margin: 0;
    font-size: 26px;
    line-height: 1.45;
    white-space: nowrap;
  }
  .topic-message01:before {
    top: 6px;
    left: -30px;
    width: 222px;
    height: 88px;
    border-bottom-width: 3px;
    border-left-width: 3px;
  }
  .topic-message01 span::before {
    right: -25px;
    bottom: -18px;
    width: 190px;
    height: 3px;
  }
  .topic-message01 span::after {
    bottom: -45px;
    right: 161px;
    width: 3px;
    height: 30px;
  }
  .topic-message02 {
    position: absolute;
    bottom: 5%;
    left: 2%;
    font-size: 42px;
    line-height: 1.45;
  }
  .topic-message02::before,
  .topic-message02::after {
    width: 20px;
    height: 16px;
  }
  .topic-message02::before {
    top: -2px;
    left: -12px;
  }
  .topic-message02::after {
    right: 6px;
    bottom: 30px;
  }
  .topic-image {
    width: 54%;
    margin: 0 -12px 0 auto;
  }
  .topic-image img {
    width: 100%;
  }
  .topic-image p {
    right: 2%;
    bottom: 50px;
    left: auto;
  }
  .topic-image p > span:nth-of-type(-n+3) {
    margin-top: 3px;
    margin-left: auto;
    padding: 0 5px 1px;
    font-size: 18px;
  }
  .topic-image p > span:nth-of-type(4) {
    margin-top: 10px;
    margin-left: auto;
    padding: 1px 8px 4px 12px;
    font-size: 36px;
  }
  .topic-about {
    box-shadow: 0 6px 6px rgba(0, 0, 0, .25);
  }
  .topic-about-heading {
    padding-block: 14px 18px;
    font-size: 24px;
  }
  .topic-about-heading::after {
    top: 50%;
    right: calc(50% - 210px);
    width: 20px;
    height: 14px;
  }
  .topic-about-contents-inner {
    padding: 40px 30px 45px;
    border-width: 2px;
  }
  .topic-about-name {
    padding-bottom: 3px;
    border-bottom-width: 2px;
    font-size: 26px;
  }
  .topic-about-description {
    margin-top: 20px;
  }
  .topic-about-books {
    margin: 20px auto 0;
    font-size: 18px;
  }
  .topic-about-books::before,
  .topic-about-books::after {
    top: 8px;
    width: 1.5px;
    height: 18px;
  }
  .topic-about-books::before {
    left: -10px;
  }
  .topic-about-books::after {
    right: -10px;
  }
  .topic-about-image {
    width: min(100%, 570px);
    margin: 20px auto 0;
  }
  .topic-text {
    margin-top: 30px;
    line-height: 1.5;
  }
  .topic-about-ai-heading {
    margin-top: 40px;
    padding: 5px 0 8px;
    font-size: 36px;
  }
  .topic-about-ai-text01 {
    margin-top: 25px;
    font-size: 20px;
    text-align: center;
  }
  .topic-about-ai-block01 {
    width: min(100%, 500px);
    margin: 20px auto 0;
    padding: 15px 8px 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
  }
  .topic-about-ai-block01-heading {
    margin-bottom: 8px;
    font-size: 23px;
  }
  .topic-about-ai-block01-notice {
    margin-top: 3px;
    font-size: 20px;
  }
  .topic-about-ai-text02 {
    margin-top: 40px;
    line-height: 1.5;
  }
  .topic-about-ai-block02 {
    width: min(100%, 700px);
    margin: 40px auto 0;
    padding: 25px 8px 30px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
  }
  .topic-about-ai-block02-heading {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .topic-about-ai-block02-notice {
    margin: 35px 20px 0;
    font-size: 24px;
    line-height: 1.4;
  }
  .topic-about-ai-text03 {
    margin-top: 40px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1024px), print {
  .topic-heading > span:nth-of-type(1) {
    display: inline;
  }
  .topic-heading > span:nth-of-type(2) {
    display: inline;
    margin: 0 0 0 -5px;
  }
  .topic-about-ai-text03 {
    text-align: center;
  }
}

.gain {
  position: relative;
  padding-block: calc(40 / var(--sm-base));
  overflow: hidden;
}
.gain::before {
  content: '';
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: linear-gradient(0deg, transparent calc(100% - (1 / var(--sm-base))), #f1f4f9 calc(100% - (1 / var(--sm-base)))), linear-gradient(90deg, transparent calc(100% - (1 / var(--sm-base))), #f1f4f9 calc(100% - (1 / var(--sm-base))));
  background-size: calc(19 / var(--sm-base)) calc(19 / var(--sm-base));
  background-repeat: repeat;
  background-position: 20% 42%;
}
.gain-inner {
  position: relative;
  z-index: 2;
}
.gain-heading {
  margin-bottom: calc(60 / var(--sm-base));
}
.gain-heading > span:nth-of-type(1) {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: calc(2 / var(--sm-base));
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  border-radius: 100vmax;
  line-height: 1;
}
.gain-heading > span:nth-of-type(1)::before,
.gain-heading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(8 / var(--sm-base));
  height: calc(8 / var(--sm-base));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.gain-heading > span:nth-of-type(1)::before {
  background: #103CDD;
}
.gain-heading > span:nth-of-type(1)::after {
  top: calc(100% - (4 / var(--sm-base)));
  z-index: 3;
  width: calc(8 / var(--sm-base));
  background: #fff;
}
.gain-heading > span:nth-of-type(1) > span {
  display: block;
  padding: calc(8 / var(--sm-base)) calc(16 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border-radius: 100vmax;
}
.gain-heading > span:nth-of-type(1) > span > span {
  display: block;
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(16 / var(--sm-base));
}
.gain-heading > span:nth-of-type(2) {
  display: block;
  margin-top: calc(-2 / var(--sm-base));
  padding-block: calc(7 / var(--sm-base)) calc(8 / var(--sm-base));
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  color: #fff;
  font-size: calc(24 / var(--sm-base));
  text-align: center;
}
.gain-row {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin: calc(50 / var(--sm-base)) calc(15 / var(--sm-base)) 0 calc(-15 / var(--sm-base));
}
.gain-subheading {
  position: absolute;
  top: calc(-18 / var(--sm-base));
  left: calc(-15 / var(--sm-base));
  z-index: 2;
  display: flex;
  align-items: center;
  padding: calc(2 / var(--sm-base)) calc(20 / var(--sm-base)) calc(1 / var(--sm-base)) calc(28 / var(--sm-base));
  background: linear-gradient(160deg, #1A8FBB, #103CDD);
  color: #fff;
  font-family: var(--font-roboto);
  font-size: calc(34 / var(--sm-base));
  font-weight: 500;
  line-height: 1;
  transform: skew(-12deg);
}
.gain-subheading span {
  display: inline-block;
  padding: calc(2 / var(--sm-base)) 0 0 calc(6 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  transform: skew(12deg);
}
.gain-description {
  margin: calc(5 / var(--sm-base)) calc(-5 / var(--sm-base)) 0 calc(15 / var(--sm-base));
  line-height: 1.4;
}
.gain-row:nth-of-type(even) {
  margin: calc(50 / var(--sm-base)) calc(-15 / var(--sm-base)) 0 calc(15 / var(--sm-base));
}
.gain-row:nth-of-type(even) .gain-subheading {
  right: calc(-15 / var(--sm-base));
  left: auto;
  padding: calc(2 / var(--sm-base)) calc(38 / var(--sm-base)) calc(1 / var(--sm-base)) calc(15 / var(--sm-base));
}
.gain-row:nth-of-type(even) .gain-description {
  margin: calc(5 / var(--sm-base)) calc(15 / var(--sm-base)) 0 calc(-5 / var(--sm-base));
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .gain {
    padding-block: 75px 80px;
  }
  .gain::before {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f1f4f9 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f1f4f9 calc(100% - 1px));
    background-size: 29px 29px;
  }
  .gain-heading {
    margin-bottom: 90px;
  }
  .gain-heading > span:nth-of-type(1) {
    padding: 3px;
  }
  .gain-heading > span:nth-of-type(1)::before,
  .gain-heading > span:nth-of-type(1)::after {
    width: 14px;
    height: 12px;
  }
  .gain-heading > span:nth-of-type(1)::after {
    top: calc(100% - 5px);
    width: 13px;
  }
  .gain-heading > span:nth-of-type(1) > span {
    padding: 14px 24px 12px;
  }
  .gain-heading > span:nth-of-type(1) > span > span {
    font-size: 24px;
  }
  .gain-heading > span:nth-of-type(2) {
    margin-top: -2px;
    padding-block: 15px 17px;
    font-size: 36px;
  }
  .gain-row {
    flex-direction: row-reverse;
    align-items: center;
    margin: 75px 0 0;
  }
  .gain-subheading {
    top: -26px;
    left: -10px;
    padding: 3px 30px 2px;
    font-size: 50px;
    transform: skew(-10deg);
  }
  .gain-subheading span {
    padding: 3px 0 0 8px;
    font-size: 27px;
    transform: skew(10deg);
  }
  .gain-detail {
    flex: 1;
  }
  .gain-description {
    margin: 0 0 0 15px;
  }
  .gain-image {
    width: 60.8%;
  }
  .gain-row:nth-of-type(even) {
    flex-direction: row;
    margin: 75px 0 0;
  }
  .gain-row:nth-of-type(even) .gain-subheading {
    right: -10px;
    padding: 3px 30px 2px;
  }
  .gain-row:nth-of-type(even) .gain-description {
    margin: 0 15px 0 0;
  }
}

.recommend {
  padding-block: calc(60 / var(--sm-base));
  background: url(../images/bg_recommend_01_sm.jpg) 50% 0 / cover no-repeat;
}
.recommend-heading {
  position: relative;
  padding-bottom: calc(18 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
  font-weight: 500;
  text-align: center;
}
.recommend-heading span {
  display: inline-block;
  background: linear-gradient(#46AACD, #234BAD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(25 / var(--sm-base));
  font-weight: 700;
}
.recommend-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100 / var(--sm-base));
  height: calc(5 / var(--sm-base));
  background: linear-gradient(90deg, #1A8FBB, #103CDD);
  transform: translateX(-50%);
}
.recommend-list {
  margin-top: calc(-20 / var(--sm-base));
}
.recommend-item {
  margin-top: calc(65 / var(--sm-base));
  padding: calc(15 / var(--sm-base)) calc(15 / var(--sm-base)) calc(20 / var(--sm-base));
  background: #fff;
}
.recommend-row {
  display: flex;
  flex-direction: row-reverse;
}
.recommend-image {
  width: calc(127 / var(--sm-base));
  margin-top: calc(-50 / var(--sm-base));
}
.recommend-name {
  flex: 1;
  margin-left: calc(15 / var(--sm-base));
  padding-top: calc(10 / var(--sm-base));
  font-size: calc(28 / var(--sm-base));
  line-height: 1.3;
}
.recommend-name span {
  display: inline-block;
  font-size: calc(20 / var(--sm-base));
}
.recommend-description {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  font-weight: 400;
  line-height: 1.4;
}
.recommend-item:nth-of-type(even) .recommend-row {
  flex-direction: row;
}
.recommend-item:nth-of-type(even) .recommend-image {
  margin-right: 5px;
}
.recommend-item:nth-of-type(even) .recommend-name {
  margin: 0 15px 0 0;
}
@media screen and (min-width: 768px), print {
  .recommend {
    padding-block: 80px;
    background-image: url(../images/bg_recommend_01_lg.jpg);
  }
  .recommend-heading {
    padding-bottom: 27px;
    font-size: 30px;
    line-height: 1.4;
  }
  .recommend-heading span {
    font-size: 38px;
  }
  .recommend-heading::after {
    width: 150px;
    height: 7px;
  }
  .recommend-list {
    margin-top: -10px;
  }
  .recommend-item {
    width: 600px;
    margin: 83px auto 0;
    padding: 10px 20px 30px;
  }
  .recommend-image {
    width: 190px;
    margin: -63px 0 0 -5px;
  }
  .recommend-name {
    margin-left: 20px;
    padding-top: 10px;
    font-size: 42px;
  }
  .recommend-name span {
    font-size: 30px;
  }
  .recommend-description {
    margin-top: 30px;
    font-size: 18px;
  }
  .recommend-item:nth-of-type(even) .recommend-image {
    margin: -63px -3px 0 0;
  }
  .recommend-item:nth-of-type(even) .recommend-name {
    margin: 0 20px 0 10px;
    padding-top: 20px;
  }
  .recommend-item:nth-of-type(3) .recommend-name {
    margin: 0 -20px 0 50px;
    padding-top: 30px;
  }
  .recommend-item:nth-of-type(4) .recommend-name {
    margin: 0 20px 0 10px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .recommend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 83px 20px;
    margin-top: 70px;
  }
  .recommend-item {
    width: calc(50% - 10px);
    margin: 0;
    padding: 10px 20px 30px;
  }
}

.voice {
  padding-block: calc(60 / var(--sm-base)) calc(25 / var(--sm-base));
  background: #EEF7FC;
}
.voice-heading {
  position: relative;
  padding-bottom: calc(16 / var(--sm-base));
  font-size: calc(20 / var(--sm-base));
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.voice-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100 / var(--sm-base));
  height: calc(5 / var(--sm-base));
  background: linear-gradient(90deg, #1A8FBB, #103CDD);
  transform: translateX(-50%);
}
.voice-list {
  margin-top: calc(55 / var(--sm-base));
}
.voice-item {
  position: relative;
  margin-top: calc(60 / var(--sm-base));
  padding: calc(100 / var(--sm-base)) calc(26 / var(--sm-base)) calc(12 / var(--sm-base));
  background: #fff;
  border-radius: calc(10 / var(--sm-base));
  box-shadow: 0 0 calc(8 / var(--sm-base)) rgba(0, 0, 0, .1);
}
.voice-item-heading {
  position: relative;
  text-align: center;
}
.voice-item-heading::before,
.voice-item-heading::after {
  content: '';
  display: block;
  width: 100%;
  height: calc(3 / var(--sm-base));
  background: url(../images/bg_voice_01.png) 50% 0 / auto 100% repeat-x;
}
.voice-item-heading span {
  display: block;
  margin-inline: calc(-10 / var(--sm-base));
  padding-block: calc(16 / var(--sm-base)) calc(14 / var(--sm-base));
  background: linear-gradient(90deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  line-height: 1.4;
}
.voice-item-image {
  position: absolute;
  top: calc(-30 / var(--sm-base));
  left: 50%;
  width: calc(100 / var(--sm-base));
  transform: translateX(-50%);
}
.voice-item-comment {
  margin-top: calc(15 / var(--sm-base));
  line-height: 1.5;
}
.voice-item-comment strong {
  color: var(--color-orange);
}
.voice-item-meta ul {
  display: flex;
  justify-content: center;
  margin: calc(16 / var(--sm-base)) 0 0;
  padding: 0;
  list-style: none;
}
.voice-item-meta ul li {
  padding: calc(5 / var(--sm-base)) calc(14 / var(--sm-base)) calc(7 / var(--sm-base));
  min-width: calc(76 / var(--sm-base));
  background: var(--color-blue);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(11 / var(--sm-base));
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.voice-item-meta ul li:first-child {
  margin-right: calc(16 / var(--sm-base));
}
.voice-images {
  margin: calc(40 / var(--sm-base)) calc(-15 / var(--sm-base)) 0;
}
.voice-images .swiper-wrapper {
  transition-timing-function: linear;
}
.voice-images .swiper-slide {
  padding-left: calc(7 / var(--sm-base));
}
.voice-message {
  margin-top: calc(30 / var(--sm-base));
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.voice-message strong {
  display: inline-block;
  background: linear-gradient(#1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(25 / var(--sm-base));
  font-weight: 700;
}
.voice-message strong span {
  font-size: calc(20 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .voice {
    padding-block: 80px;
  }
  .voice-heading {
    padding-bottom: 27px;
    font-size: 30px;
    line-height: 1.4;
  }
  .voice-heading::after {
    width: 150px;
    height: 7px;
  }
  .voice-list {
    margin-top: 80px;
  }
  .voice-item {
    width: 600px;
    margin: 60px auto 0;
    padding: 100px 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  }
  .voice-item-heading::before,
  .voice-item-heading::after {
    height: 3px;
  }
  .voice-item-heading span {
    margin-inline: -15px;
    padding-block: 15px;
  }
  .voice-item-image {
    top: -30px;
    width: 100px;
  }
  .voice-item-comment {
    margin-top: 15px;
    font-size: 16px;
  }
  .voice-item-meta ul {
    margin: 0;
    padding-top: 18px;
  }
  .voice-item-meta ul li {
    min-width: 76px;
    padding: 5px 14px 7px;
    font-size: 11px;
  }
  .voice-item-meta ul li:first-child {
    margin-right: 16px;
  }
  .voice-images {
    margin: 50px -30px 0;
  }
  .voice-images .swiper-slide {
    padding-left: 11px;
  }
  .voice-message {
    margin-top: 16px;
    font-size: 27px;
  }
  .voice-message strong {
    margin-top: -3px;
    font-size: 37px;
  }
  .voice-message strong span {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    margin: 85px 0 0;
  }
  .voice-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    width: auto;
    margin: 0;
  }
}

.cta {
  position: relative;
  padding-block: calc(55 / var(--sm-base)) calc(25 / var(--sm-base));
  background: url(../images/bg_cta_01_sm.jpg) 50% 0 / cover no-repeat;
}
.cta-heading {
  width: fit-content;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
.cta-heading > span:nth-of-type(1) {
  position: relative;
  display: block;
  color: #FFFF00;
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
}
.cta-heading > span:nth-of-type(1)::before,
.cta-heading > span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: calc(7 / var(--sm-base));
  width: calc(1 / var(--sm-base));
  height: calc(15 / var(--sm-base));
  background: #FFFF00;
}
.cta-heading > span:nth-of-type(1)::after {
  left: calc(2 / var(--sm-base));
  transform: rotate(-20deg);
}
.cta-heading > span:nth-of-type(1)::before {
  right: calc(2 / var(--sm-base));
  transform: rotate(20deg);
}
.cta-heading > span:nth-of-type(2) {
  display: block;
  margin-top: calc(5 / var(--sm-base));
  font-size: calc(25 / var(--sm-base));
  font-weight: 300;
}
.cta-heading > span:nth-of-type(3) {
  display: block;
  margin-top: calc(2 / var(--sm-base));
  font-family: var(--font-roboto);
  font-size: calc(12 / var(--sm-base));
  font-weight: 400;
}
.cta-heading > span:nth-of-type(3) img {
  display: inline-block;
  width: calc(60 / var(--sm-base));
  vertical-align: middle;
}
.cta-text01 {
  display: inline-block;
  margin: calc(26 / var(--sm-base)) 0 0 calc(25 / var(--sm-base));
}
.cta-text01 > span > span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: calc(3 / var(--sm-base)) calc(14 / var(--sm-base)) calc(4 / var(--sm-base));
  background: #fff;
  line-height: 1;
}
.cta-text01 > span > span:nth-of-type(2) {
  margin: calc(3 / var(--sm-base)) auto 0;
  padding: calc(3 / var(--sm-base)) calc(2 / var(--sm-base)) calc(4 / var(--sm-base));
  letter-spacing: -.025em;
}
.cta-text01 > span > span > span {
  display: block;
  background: linear-gradient(90deg, #1A8FBB, #1668cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(22 / var(--sm-base));
  font-weight: 700;
}
.cta-text02 {
  position: relative;
  margin: calc(5 / var(--sm-base)) 0 0 calc(28 / var(--sm-base));
  padding-bottom: calc(22 / var(--sm-base));
  color: #fff;
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
}
.cta-text02::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(165 / var(--sm-base));
  height: calc(26 / var(--sm-base));
  background: url(../images/bg_cta_03.png) 0 0 / contain no-repeat;
}
.cta-point01,
.cta-point02 {
  position: absolute;
  right: calc(12 / var(--sm-base));
  width: calc(120 / var(--sm-base));
  height: calc(120 / var(--sm-base));
  background: url(../images/bg_cta_02.png) 0 0 / contain no-repeat;
  text-align: center;
}
.cta-point01 {
  top: calc(-15 / var(--sm-base));
}
.cta-point01 p:nth-of-type(1) {
  padding-top: calc(24 / var(--sm-base));
  line-height: 1.2;
}
.cta-point01 p:nth-of-type(2) {
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-roboto);
  font-size: calc(31 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.cta-point01 p:nth-of-type(2) span {
  font-size: calc(23 / var(--sm-base));
}
.cta-point02 {
  top: calc(108 / var(--sm-base));
}
.cta-point02 p:nth-of-type(1) {
  padding-top: calc(24 / var(--sm-base));
  line-height: 1.1;
}
.cta-point02 p:nth-of-type(1) span {
  display: inline-block;
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-point02 p:nth-of-type(2) {
  margin-top: calc(-3 / var(--sm-base));
  background: linear-gradient(#46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-roboto);
  font-size: calc(46 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.cta-point02 p:nth-of-type(2) span {
  font-size: calc(20 / var(--sm-base));
}
.cta-detail {
  margin-top: calc(20 / var(--sm-base));
  padding: calc(20 / var(--sm-base)) calc(8 / var(--sm-base)) calc(20 / var(--sm-base)) calc(13 / var(--sm-base));
  background: #fff;
  font-size: calc(14 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
}
.cta-step {
  margin-top: calc(15 / var(--sm-base));
  padding: calc(20 / var(--sm-base)) calc(12 / var(--sm-base)) calc(30 / var(--sm-base));
  background: #fff;
}
.cta-step-heading {
  color: var(--color-blue);
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.cta-step-list {
  display: flex;
  gap: calc(5 / var(--sm-base));
  margin: calc(16 / var(--sm-base)) 0 0;
  padding: 0;
}
.cta-step-item {
  width: calc(33.33334% - (3 / var(--sm-base)));
}
.cta-step-label {
  color: var(--color-blue);
  font-family: var(--font-roboto);
  font-size: calc(16 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.cta-step-description {
  margin-top: calc(1 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  line-height: 1.4;
  text-align: center;
}
.cta-action {
  margin-top: calc(50 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .cta {
    padding-block: 85px 80px;
    background-image: url(../images/bg_cta_01_lg.jpg);
  }
  .cta-heading {
    margin-inline: auto;
  }
  .cta-heading > span:nth-of-type(1) {
    width: fit-content;
    margin-inline: auto;
    font-size: 38px;
  }
  .cta-heading > span:nth-of-type(1)::before,
  .cta-heading > span:nth-of-type(1)::after {
    top: 4px;
    width: 1px;
    height: 46px;
  }
  .cta-heading > span:nth-of-type(1)::after {
    left: -16px;
  }
  .cta-heading > span:nth-of-type(1)::before {
    right: -16px;
  }
  .cta-heading > span:nth-of-type(2) {
    margin-top: 10px;
    font-size: 44px;
  }
  .cta-heading > span:nth-of-type(3) {
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: .025em;
  }
  .cta-heading > span:nth-of-type(3) img {
    width: 88px;
  }
  .cta-row {
    display: flex;
    width: fit-content;
    margin: 0 auto 0;
  }
  .cta-col01 {
    flex: 1;
    margin-right: 30px;
  }
  .cta-text01 {
    margin: 10px 0 0;
    font-size: 32px;
  }
  .cta-text01 > span > span {
    padding: 4px 14px 7px;
  }
  .cta-text01 > span > span:nth-of-type(2) {
    margin: 3px auto 0;
    padding: 4px 10px 7px;
  }
  .cta-text01 > span > span > span {
    font-size: 32px;
  }
  .cta-text02 {
    margin: 10px 0 0;
    padding-bottom: 28px;
    font-size: 24px;
  }
  .cta-text02::after {
    width: 248px;
    height: 39px;
  }
  .cta-col02 {
    display: flex;
    justify-content: space-between;
    width: 360px;
  }
  .cta-point01,
  .cta-point02 {
    position: static;
    width: 175px;
    height: 175px;
  }
  .cta-point01 p:nth-of-type(1) {
    padding-top: 34px;
    font-size: 24px;
  }
  .cta-point01 p:nth-of-type(2) {
    font-size: 46px;
  }
  .cta-point01 p:nth-of-type(2) span {
    font-size: 34px;
  }
  .cta-point02 p:nth-of-type(1) {
    padding-top: 34px;
    font-size: 24px;
  }
  .cta-point02 p:nth-of-type(2) {
    margin-top: -6px;
    font-size: 69px;
  }
  .cta-point02 p:nth-of-type(2) span {
    font-size: 30px;
  }
  .cta-detail {
    margin-top: 40px;
    padding: 30px 30px 32px;
    font-size: 20px;
  }
  .cta-detail p {
    width: fit-content;
    margin-inline: auto;
  }
  .cta-step {
    margin-top: 22px;
    padding: 34px 30px 100px;
  }
  .cta-step-heading {
    font-size: 30px;
  }
  .cta-step-list {
    width: min(100%, 750px);
    justify-content: space-between;
    gap: 0;
    margin: 25px auto 0;
  }
  .cta-step-item {
    width: auto;
    min-width: 180px;
  }
  .cta-step-item img {
    width: 155px;
    margin: 0 auto;
  }
  .cta-step-label {
    font-size: 24px;
  }
  .cta-step-description {
    margin-top: -2px;
    font-size: 18px;
  }
  .cta-action {
    width: min(100%, 720px);
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 1024px), print {
  .cta-row {
    align-items: flex-end;
  }
  .cta-text01 {
    background: #fff;
  }
  .cta-text01 > span {
    display: flex;
    background: linear-gradient(90deg, #1A8FBB, #103CDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .cta-text01 > span > span {
    display: inline;
    padding: 4px 0 6px 12px;
    background: none;
  }
  .cta-text01 > span > span:nth-of-type(2) {
    margin: 0;
    padding: 4px 0 6px 0;
  }
  .cta-text01 > span > span > span {
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
  }
  .cta-text02 {
    width: fit-content;
    margin: 5px auto -10px;
  }
}

.chance {
  padding-block: calc(45 / var(--sm-base)) calc(40 / var(--sm-base));
}
.chance-heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(90deg, #1A8FBB, #103CDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(30 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.chance-heading::before,
.chance-heading::after {
  content: '';
  position: absolute;
  top: calc(18 / var(--sm-base));
  width: calc(30 / var(--sm-base));
  height: calc(64 / var(--sm-base));
  background: url(../images/bg_chance_01.png) 0 0 / contain no-repeat;
}
.chance-heading::before {
  left: calc(-36 / var(--sm-base));
}
.chance-heading::after {
  right: calc(-36 / var(--sm-base));
  transform: scaleX(-1);
}
.chance-lead {
  margin-top: calc(28 / var(--sm-base));
  text-align: center;
}
.chance-lead strong {
  display: block;
  margin-bottom: calc(5 / var(--sm-base));
  color: var(--color-blue);
  font-size: calc(20 / var(--sm-base));
}
.chance-image {
  display: block;
  width: 100%;
  margin-top: calc(15 / var(--sm-base));
}
.chance-description {
  margin-top: calc(20 / var(--sm-base));
  line-height: 1.45;
}
.chance-description strong {
  color: var(--color-orange);
}
@media screen and (min-width: 768px), print {
  .chance {
    padding-block: 70px 80px;
  }
  .chance-contents {
    width: min(100%, 700px);
    margin-inline: auto;
  }
  .chance-heading {
    font-size: 44px;
    line-height: 1.45;
  }
  .chance-heading::before,
  .chance-heading::after {
    top: 30px;
    width: 46px;
    height: 98px;
  }
  .chance-heading::before {
    left: -58px;
  }
  .chance-heading::after {
    right: -56px;
  }
  .chance-lead {
    margin-top: 35px;
    font-size: 22px;
  }
  .chance-lead strong {
    margin-bottom: 5px;
    font-size: 30px;
  }
  .chance-image {
    margin-top: 20px;
  }
  .chance-description {
    margin-top: 25px;
    font-size: 18px;
  }
}

.limit {
  padding-block: calc(25 / var(--sm-base));
  background: url(../images/bg_limit_01_sm.jpg) 50% 50% / cover no-repeat;
}
.limit-heading {
  padding-block: calc(5 / var(--sm-base)) calc(7 / var(--sm-base));
  background: #fff;
  text-align: center;
}
.limit-heading span {
  display: block;
  background: linear-gradient(-185deg, #46AACD 17%, #234BAD 53%, #49388C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(23 / var(--sm-base));
}
.limit p {
  color: #fff;
  line-height: 1.45;
  text-align: center;
}
.limit p:nth-of-type(1) {
  margin-block: calc(15 / var(--sm-base)) calc(22 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .limit {
    padding-block: 80px;
    background-image: url(../images/bg_limit_01_lg.jpg);
  }
  .limit-heading {
    padding-block: 13px 16px;
  }
  .limit-heading span {
    font-size: 34px;
  }
  .limit p br {
    display: none;
  }
  .limit p:nth-of-type(1) {
    margin-block: 30px;
  }
  .limit p:nth-of-type(1) br:nth-of-type(2) {
    display: inline;
  }
}
@media screen and (min-width: 1024px), print {
  .limit p:nth-of-type(1) br:nth-of-type(2) {
    display: none;
  }
}

.header {
  padding: calc(6 / var(--sm-base)) calc(12 / var(--sm-base));
  background: var(--color-default);
  box-shadow: 0 calc(4 / var(--sm-base)) calc(4 / var(--sm-base)) rgba(0, 0, 0, .15);
}
.header-logo {
  width: calc(110 / var(--sm-base));
  font-size: 0;
}
@media screen and (min-width: 768px), print {
  .header {
    padding: 0 34px 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
  }
  .header-logo {
    width: 195px;
  }
}

.page-contents {
  padding-block: calc(60 / var(--sm-base));
}
.page-heading {
  text-align: center;
}
.page-heading span:nth-of-type(1) {
  font-size: calc(24 / var(--sm-base));
  letter-spacing: .075em;
}
.page-heading span:nth-of-type(2) {
  display: block;
  margin-top: calc(10 / var(--sm-base));
  font-family: var(--font-roboto);
  font-size: calc(15 / var(--sm-base));
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.company-contents p {
  margin-top: 2em;
}
.company-contents p a {
  color: #7366FF;
}
.privacy-contents p {
  margin-top: 2em;
}
.privacy-contents p a {
  color: #7366FF;
}
.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));
  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 {
    padding-block: 105px 110px;
  }
  .page-heading span:nth-of-type(1) {
    font-size: 34px;
  }
  .page-heading span:nth-of-type(2) {
    margin-top: 15px;
    font-size: 20px;
  }
  .company-contents,
  .privacy-contents {
    width: min(100%, 1000px);
    margin-inline: auto;
  }
  .company-contents p {
    font-size: 24px;
  }
  .privacy-contents p {
    font-size: 24px;
  }
  .page-back {
    margin-top: 60px;
    padding: 10px 30px;
    font-size: 24px;
  }
}

.cta-footer {
  padding-bottom: calc(60 / var(--sm-base));
}
.footer {
  padding-block: calc(12 / var(--sm-base)) calc(140 / var(--sm-base));
  background: var(--color-default);
}
.foote-logo {
  width: calc(110 / var(--sm-base));
  margin: 0 auto calc(-3 / var(--sm-base));
}
.footer-nav {
  text-align: center;
}
.footer-nav-list {
  display: inline-flex;
}
.footer-nav-item:first-child {
  margin-right: calc(18 / var(--sm-base));
}
.footer-nav-item a {
  color: #fff;
  font-size: calc(12 / var(--sm-base));
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-item a {
    transition: opacity var(--transition);
  }
  .footer-nav-item a:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .cta-footer {
    padding-bottom: 80px;
  }
  .footer {
    padding-block: 15px;
  }
  .foote-logo {
    width: 160px;
    margin: 0 auto;
  }
  .footer-nav-item:first-child {
    margin-right: 26px;
  }
  .footer-nav-item a {
    font-size: 18px;
  }
}

.floating-cta {
  position: fixed;
  bottom: calc(18 / var(--sm-base));
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}
.floating-cta.--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-inner {
  transform: scale(.8);
}
@media screen and (min-width: 768px), print {
  .floating-cta {
    display: none;
  }
}