@charset "UTF-8";
/* ========================= /
/  Global
/* =========================*/
:root {
  --lg-base: 1280 * 100vw;
  --sm-base: 375 * 100vw;
  --color-default: #333;
  --color-black: #000;
  --color-gray: #aaa;
  --color-yellow: #fde933;
  --color-primary: #e94709;
  --color-secondary: #898927;
  --color-tertiary: #4d6488;
  --color-bg-primary: #f8f9fa;
  --color-bg-secondary: #edeff3;
  --color-border-primary: #333;
  --font-sansSerif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", Garamond, "Times New Roman", serif;
  --font-noto-sans-jp: "Noto Sans JP", "Helvetica Neue", Helvetica, sans-serif;
  --font-noto-sans: "Noto Sans", "Helvetica Neue", Helvetica, sans-serif;
  --font-lato: "Lato", "Helvetica Neue", Helvetica, sans-serif;
  --transition: .25s ease;
  --transition-duration: .25s;
  --hover-opacity: .8;
}

:root {
  --vw: 100vw;
  --vh: 100vh;
  --svh: 100svh;
  --base-width: 1080;
  --sm-base: 375 * 100vw;
  --leading-trim: calc((1em - 1lh) / 2);
  --header-height: 85px;
  --box-shadow: 0 8px 12px 0 rgb(0,0,0 , 5%);
}
@media screen and (max-width: 767.98px) {
  :root {
    --vw: 100vw;
    --vh: 100vh;
    --svh: 100svh;
    --base-width: 375;
    --header-height: 55px;
    --border-radius1: 4px;
    --border-radius2: 8px;
  }
}

:root {
  --line-height_level1: 1;
  --line-height_level2: 1.25;
  --line-height_level3: 1.5;
  --line-height_level4: 1.75;
  --line-height_level5: 2;
}

/* ========================= /
/  Foundation
/* =========================*/
/* Reset
-------------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
    -webkit-transition-duration: 1ms !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;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       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 + 0.5rem);
}

ul:where([class]),
ol:where([class]),
nav ul,
nav ol {
  list-style: none;
}

ul:where(:not([class])) {
  margin-left: 0.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;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(template) {
  display: none;
}

:where(a) {
  background: transparent;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 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;
  -ms-touch-action: manipulation;
      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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  -webkit-transform: translate(-50%, -50%);
          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;
  -webkit-appearance: none;
          appearance: none;
}

:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}

:where(input[type=file]):disabled::-webkit-file-upload-button {
  cursor: not-allowed;
}

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

a {
  text-decoration: none;
}

/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  初期設定
/* =========================*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  background-color: var(--color_body_bg);
  color: var(--color_txt_black);
  font-weight: 400;
  font-size: calc(16 / var(--sm-base));
  line-height: 1.5;
  font-family: var(--font-sansSerif);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-open {
  overflow: hidden !important;
}

.form-reset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

img {
  image-rendering: auto;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

*::before,
*::after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  Layout
/* =========================*/
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  コンテナパーツ
/* =========================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(60 / var(--sm-base));
}

.l-header-logo {
  width: calc(125 / var(--sm-base));
  padding: calc(10 / var(--sm-base)) 0 0 calc(5 / var(--sm-base));
}

.l-header-logo a {
  display: block;
  padding: calc(10 / var(--sm-base));
}

.l-header-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: calc(2 / var(--sm-base)) 0 0 calc(-2 / var(--sm-base));
  font-size: calc(10 / var(--sm-base));
  font-weight: 500;
}

.l-header-link {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.l-header-link li {
  width: calc(75 / var(--sm-base));
}

.l-header-link li a {
  position: relative;
  display: block;
  height: 100%;
  padding-top: calc(34 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid;
  color: #fff;
  font-size: calc(10 / var(--sm-base));
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.l-header-link li a::before {
  content: "";
  position: absolute;
  left: 50%;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-header-link li:nth-of-type(1) a {
  background: #445166;
  border-color: #445166;
}

.l-header-link li:nth-of-type(1) a::before {
  top: calc(15 / var(--sm-base));
  width: calc(23 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  -webkit-mask: url(../img/icon-movie-white.webp) 0 0/contain no-repeat;
          mask: url(../img/icon-movie-white.webp) 0 0/contain no-repeat;
}

.l-header-link li:nth-of-type(2) a {
  background: var(--color-primary);
  border-color: var(--color-primary);
  letter-spacing: 0.1em;
}

.l-header-link li:nth-of-type(2) a::before {
  top: calc(12 / var(--sm-base));
  width: calc(18 / var(--sm-base));
  height: calc(18 / var(--sm-base));
  -webkit-mask: url(../img/icon-edit-white.webp) 0 0/contain no-repeat;
          mask: url(../img/icon-edit-white.webp) 0 0/contain no-repeat;
}

@media (hover: hover) and (pointer: fine) {
  .l-header-link li a {
    -webkit-transition: background var(--transition), color var(--transition);
    transition: background var(--transition), color var(--transition);
  }
  .l-header-link li a::before {
    -webkit-transition: background var(--transition);
    transition: background var(--transition);
  }
  .l-header-link li:nth-of-type(1) a:hover {
    background: #fff;
    color: #445166;
  }
  .l-header-link li:nth-of-type(1) a:hover::before {
    background: #445166;
  }
  .l-header-link li:nth-of-type(2) a:hover {
    background: #fff;
    color: var(--color-primary);
  }
  .l-header-link li:nth-of-type(2) a:hover::before {
    background: var(--color-primary);
  }
}
@media screen and (min-width: 1024px), print {
  .l-header-text br {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .l-header-inner {
    position: relative;
    width: min(100%, 1180px);
    height: 66px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .l-header-logo {
    width: 140px;
    padding: 10px 0 0;
  }
  .l-header-logo a {
    padding: 10px;
  }
  .l-header-text {
    margin: 0 0 0 0;
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .l-header-link {
    top: 8px;
    right: 10px;
    height: auto;
  }
  .l-header-link li {
    width: 174px;
    height: auto;
    margin-left: 5px;
  }
  .l-header-link li a {
    padding: 13px 0 12px 54px;
    border-width: 2px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .l-header-link li:nth-of-type(1) a::before {
    top: 15px;
    left: 15px;
    width: 29px;
    height: 20px;
    -webkit-transform: none;
            transform: none;
  }
  .l-header-link li:nth-of-type(2) a::before {
    top: 13px;
    left: 15px;
    width: 20px;
    height: 20px;
    -webkit-transform: none;
            transform: none;
  }
}
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  コンテナパーツ
/* =========================*/
.l-footer {
  padding: calc(40 / var(--sm-base)) 0 calc(30 / var(--sm-base));
  font-size: calc(13 / var(--sm-base));
  text-align: center;
}

.l-footer-inner {
  padding: 0 calc(20 / var(--sm-base));
}

.l-footer-copyright {
  letter-spacing: 0.05em;
}

.l-footer-nav-list {
  margin-top: calc(20 / var(--sm-base));
  text-align: center;
}

.l-footer-nav-list li {
  margin-top: calc(5 / var(--sm-base));
}

.l-footer-nav-list li a {
  display: inline-block;
  padding: calc(5 / var(--sm-base));
  color: var(--color-default);
  letter-spacing: 0.05em;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-nav-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1024px), print {
  .l-footer-row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .l-footer-copyright {
    margin: 0 15px;
  }
  .l-footer-nav-list {
    margin: 0 !important;
  }
}
@media screen and (min-width: 768px), print {
  .l-footer {
    padding: 40px 0;
    font-size: 13px;
  }
  .l-footer-inner {
    width: min(100%, 1160px);
    margin: 0 auto;
    padding: 0 30px;
  }
  .l-footer-copyright {
    letter-spacing: 0.125em;
  }
  .l-footer-nav-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 20px;
  }
  .l-footer-nav-list li {
    margin: 0 16px;
  }
  .l-footer-nav-list li a {
    padding: 5px;
  }
  .l-footer-copyright {
    padding: 5px 0;
    font-size: 13px;
  }
}
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  メイン
/* =========================*/
.l-main {
  margin-top: 60px;
}

/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  コンテナパーツ
/* =========================*/
.l-inner {
  padding: 0 calc(20 / var(--sm-base));
  width: 100%;
  max-width: initial;
}
@media screen and (min-width: 1024.02px) {
  .l-inner {
    padding: 0;
    width: 90%;
    max-width: 980px;
    margin: auto;
  }
}
.l-inner--w1100 {
  max-width: 1100px;
}
.l-inner--w1200 {
  max-width: 1200px;
}

/* ========================= /
/  Object
/* =========================*/
/* ========================= /
/  - Components
/* =========================*/
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  cv
/* =========================*/
.c-cv-button {
  position: relative;
  display: block;
  min-height: calc(80 / var(--sm-base));
  background: var(--color-primary);
  border: calc(2 / var(--sm-base)) solid var(--color-primary);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.c-cv-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(10 / var(--sm-base));
  width: calc(19 / var(--sm-base));
  height: calc(21 / var(--sm-base));
  background: #fff;
  -webkit-mask: url(../img/icon-arrow01.webp) 0 0/contain no-repeat;
          mask: url(../img/icon-arrow01.webp) 0 0/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-cv-button > span:nth-of-type(1) {
  display: block;
  padding: calc(7 / var(--sm-base)) 0 0;
  font-size: calc(16 / var(--sm-base));
}

.c-cv-button > span:nth-of-type(2) {
  display: block;
  font-size: calc(28 / var(--sm-base));
  letter-spacing: 0.1em;
}

@media (hover: hover) and (pointer: fine) {
  .c-cv-button {
    -webkit-transition: background var(--transition), color var(--transition);
    transition: background var(--transition), color var(--transition);
  }
  .c-cv-button::after {
    -webkit-transition: background var(--transition);
    transition: background var(--transition);
  }
  .c-cv-button:hover {
    background: #fff;
    color: var(--color-primary);
  }
  .c-cv-button:hover::after {
    background: var(--color-primary);
  }
}
.c-cv-label {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto calc(5 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}

.c-cv-label::before,
.c-cv-label::after {
  content: "";
  position: absolute;
  top: calc(12 / var(--sm-base));
  background: var(--color-default);
  width: calc(2 / var(--sm-base));
  height: calc(38 / var(--sm-base));
}

.c-cv-label::before {
  left: calc(-26 / var(--sm-base));
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.c-cv-label::after {
  right: calc(-22 / var(--sm-base));
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.c-cv-label span {
  font-family: var(--font-noto-sans);
}

@media screen and (min-width: 768px), print {
  .c-cv-button {
    width: min(100%, 600px);
    min-height: 120px;
    margin: 0 auto;
    border-width: 4px;
  }
  .c-cv-button::after {
    right: 24px;
    width: 23px;
    height: 26px;
  }
  .c-cv-button > span:nth-of-type(1) {
    padding: 10px 0 0;
    font-size: 24px;
    letter-spacing: 0.1em;
  }
  .c-cv-button > span:nth-of-type(2) {
    font-size: 40px;
  }
  .c-cv-label {
    margin: 0 auto 15px;
    font-size: 24px;
  }
  .c-cv-label::before,
  .c-cv-label::after {
    top: 0;
    width: 2px;
    height: 38px;
  }
  .c-cv-label::before {
    left: -26px;
  }
  .c-cv-label::after {
    right: -24px;
  }
}
/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  ボタン
/* =========================*/
.cta {
  margin-inline: auto;
  padding: 1.25em 0 1.25em 1.875em;
  padding-block: 0.625em;
  width: 323px;
  min-height: 56px;
  max-width: 100%;
  background: #F24822;
  color: #fff;
  border-radius: 6px;
  display: grid;
  grid-template-columns: -webkit-max-content 18px;
  grid-template-columns: max-content 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.875em;
     -moz-column-gap: 1.875em;
          column-gap: 1.875em;
  -webkit-box-shadow: 2px 3px 0 0 #D33512;
          box-shadow: 2px 3px 0 0 #D33512;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .cta {
    width: 420px;
  }
}
@media screen and (min-width: 1024.02px) {
  .cta {
    padding: 1.25em 0 1.25em 1.875em;
    width: 600px;
    min-height: 105px;
    grid-template-columns: -webkit-max-content 28px;
    grid-template-columns: max-content 28px;
    -webkit-box-shadow: 8px 8px 0 0 #D33512;
            box-shadow: 8px 8px 0 0 #D33512;
  }
}
.cta:hover {
  color: #fff !important;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.cta::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: url(../img/cta-arrow.svg) no-repeat center/contain;
}
@media screen and (min-width: 1024.02px) {
  .cta::after {
    width: 31px;
  }
}
.cta--blue {
  background: -webkit-gradient(linear, left top, right top, from(#25ACDD), to(#106F91));
  background: linear-gradient(to right, #25ACDD, #106F91);
}
.cta--blue::after {
  background-image: url(../img/cta-arrow_b.svg);
}
.cta--noshadow {
  -webkit-box-shadow: initial;
          box-shadow: initial;
  border-radius: 4px;
}
.cta--noshadow:hover {
  -webkit-transform: none;
          transform: none;
  opacity: 0.6;
}
.cta--small {
  padding-block: 12px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 1024.02px) {
  .cta--small {
    min-height: 80px;
  }
}
@media screen and (min-width: 1024.02px) {
  .cta--small::after {
    width: 22px;
  }
}
.cta__inner {
  text-align: center;
}
.cta__catch {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
@media screen and (min-width: 1024.02px) {
  .cta__catch {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .cta--small .cta__catch {
    font-size: 1.1rem;
  }
}
.cta__title {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
@media screen and (min-width: 1024.02px) {
  .cta__title {
    font-size: 3rem;
  }
}
.cta__catch + .cta__title {
  margin-top: 0.2352941176em;
}
@media screen and (min-width: 1024.02px) {
  .cta--small .cta__title {
    font-size: 2.1rem;
  }
}

/* ========================= /
/  - Project
/* =========================*/
/* ========================= /
/  Global
/* =========================*/
.fv__inner {
  padding-inline: 0;
}
.fv__heading {
  padding-block: 14px 7px;
  font-size: 1.4rem;
  text-align: center;
  color: #013974;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__heading {
    padding-block: 51px 18px;
    font-size: 2.9rem;
  }
}
.fv__heading span {
  display: block;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2px;
  font-size: 1.4rem;
  padding: 0.3571428571em 2.1428571429em;
  border: 2px solid #013974;
}
@media screen and (min-width: 768px) {
  .fv__heading span {
    margin-left: 20px;
    display: inline-block;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__heading span {
    padding: 0.1923076923em 1.1538461538em;
    font-size: 2.6rem;
  }
}
.fv__box {
  padding: 25px 0 19px;
  background: url(../img/fv-bg.png) no-repeat center/cover;
  position: relative;
  z-index: 0;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .fv__box {
    padding: 49px 0 12px;
  }
}
.fv__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__title {
    font-size: 4rem;
  }
}
.fv__title span {
  margin-inline: 0.1666666667em;
  padding: 0.1666666667em 0.5555555556em;
  color: #F24822;
  line-height: 1;
  background: #fff;
}
@media screen and (min-width: 1024.02px) {
  .fv__title span {
    padding-block: 0;
  }
}
.fv__catch {
  display: block;
  margin-top: 16.5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fv__catch {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__catch {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024.02px) and (min-width: 1024.02px) {
  .fv__catch {
    margin-top: 22px;
  }
}
.fv__img01 {
  margin-top: 7px;
  max-width: 72%;
  margin-left: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__img01 {
    margin-inline: auto;
    max-width: 320px;
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__img01 {
    margin-top: 12px;
    max-width: 470px;
  }
}
.fv__img01 picture,
.fv__img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv__img02 {
  position: absolute;
  bottom: 0;
  right: -20px;
  max-width: 40%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv__img02 {
    max-width: 180px;
    left: calc(50% + 246px);
    right: initial;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1024.02px) {
  .fv__img02 {
    max-width: 257px;
    right: 80px;
    left: initial;
    -webkit-transform: none;
            transform: none;
  }
}
.fv__img02 picture,
.fv__img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv__movie {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.fv__movie iframe {
  width: 92.8270042194%;
  height: auto;
  aspect-ratio: 470/307;
  border-radius: 6px;
  pointer-events: none;
}
.fv__cta {
  margin-top: -25px;
}

.teacher {
  margin-top: 24px;
}
@media screen and (min-width: 1024.02px) {
  .teacher {
    margin-top: 51px;
  }
}
.teacher__inner {
  padding-inline: 0;
}
.teacher__heading {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: -0.022em;
  text-align: center;
}
@media screen and (min-width: 1024.02px) {
  .teacher__heading {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.teacher__heading span {
  color: #013974;
}
.teacher__list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024.02px) {
  .teacher__list {
    margin-top: 50px;
  }
}
.teacher__item-box {
  padding: 20px 14.5px;
}
@media screen and (min-width: 768px) {
  .teacher__item-box {
    padding: 50px 70px;
  }
}
.teacher__item--blue .teacher__item-box {
  background: #D7E1EB;
}
.teacher__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 30px;
  }
}
.teacher__item-profile {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-profile {
    padding-inline: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.teacher__item-img {
  grid-row: 1/-1;
  max-width: 100px;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-img {
    margin-inline: auto;
    max-width: 180px;
  }
}
.teacher__item-position {
  margin-top: 6px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 0;
  -ms-flex-item-align: self-end;
      align-self: self-end;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-position {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.teacher__item-name {
  letter-spacing: -0.011em;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  -ms-flex-item-align: self-start;
      align-self: self-start;
  font-size: 1.6rem;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-name {
    margin-top: 2px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.teacher__item-name span {
  font-size: 1.8rem;
}
.teacher__item-body {
  display: contents;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-body {
    display: block;
  }
}
.teacher__item-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F24822;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .teacher__item-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-title {
    font-size: 2.2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.teacher__item-text {
  margin-top: 10px;
  font-size: 1.6rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 1024.02px) {
  .teacher__item-text {
    margin-top: 7px;
    font-size: 2rem;
    line-height: 1.7;
  }
}
.teacher__point {
  margin-top: 46px;
  padding: 35px 20px 25px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .teacher__point {
    margin-top: 30px;
    padding: 30px 20px 20px;
  }
}
.teacher__point-title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 15px;
  background: #fff;
  color: #D05613;
  border: 2px solid #D05613;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .teacher__point-title {
    font-size: 1.6rem;
  }
}
.teacher__point-list {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.teacher__point-item {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .teacher__point-item {
    font-size: 1.5rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.teacher__point-item::first-letter {
  color: #D05613;
  font-weight: 900;
}
.teacher__point-item span {
  color: #F24822;
}
.teacher__ctas {
  display: contents;
}
@media screen and (min-width: 1024.02px) {
  .teacher__ctas {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.teacher__cta01 {
  margin-top: 30px;
  border-radius: 2px;
}
@media screen and (min-width: 1024.02px) {
  .teacher__cta01 {
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
  }
}
.teacher__cta02 {
  margin-top: 15px;
  border-radius: 2px;
}
@media screen and (min-width: 1024.02px) {
  .teacher__cta02 {
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
  }
}

.point {
  margin-top: 30px;
}
.point__heading {
  padding-bottom: 40px;
  font-size: 2rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point__heading {
    padding-block: 60px;
    font-size: 2.8rem;
    position: relative;
    z-index: 0;
  }
}
@media screen and (min-width: 1024.02px) {
  .point__heading {
    padding-block: 87.5px;
    font-size: 3.8rem;
  }
}
.point__heading--blue {
  background: #013974;
  font-weight: bold;
}
.point__heading span {
  margin-right: 7px;
  padding: 0.1em 0.55em;
  border-radius: 5px;
  display: inline-block;
  background: #fff;
  color: #013974;
}
@media screen and (min-width: 768px) {
  .point__heading span {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .point__heading span {
    font-size: 3.5rem;
  }
}
.point__heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  background: url(../img/point-bg.webp) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .point__heading::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 669px;
    height: 100%;
    background-image: url(../img/point-bg_pc.webp);
    z-index: -1;
  }
}
.point__wrap {
  padding: 30px 0;
}
@media screen and (min-width: 1024.02px) {
  .point__wrap {
    padding-block: 81px 74px;
  }
}
.point__wrap--blue {
  background: #D7E1EB;
}
.point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
@media screen and (min-width: 1024.02px) {
  .point__list {
    row-gap: 62px;
  }
}
.point__item {
  padding: 30px 15px;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 1024.02px) {
  .point__item {
    padding: 60px 90px;
  }
}
.point__item-num {
  padding-inline: 30px;
  white-space: nowrap;
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100vmax;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: #fff;
}
@media screen and (min-width: 1024.02px) {
  .point__item-num {
    font-size: 2.5rem;
    padding: 3px 50px;
    white-space: initial;
  }
}
.point__wrap--blue .point__item-num {
  background: #0A3058;
}
.point__item-heading {
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.019em;
}
@media screen and (min-width: 768px) {
  .point__item-heading {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .point__item-heading {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}
.point__item-heading:has(+ .point__item-catch) {
  margin-bottom: 22px;
}
.point__item-profile {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024.02px) {
  .point__item-profile {
    display: block;
  }
}
.point__item-title {
  margin-top: 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: left;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024.02px) {
  .point__item-title {
    font-style: 1.6rem;
  }
}
.point__item-img {
  margin-inline: auto;
  max-width: 279px;
}
.point__item:nth-of-type(2) .point__item-img {
  margin-inline: auto;
  -webkit-transform: none;
          transform: none;
}
@media screen and (min-width: 1024.02px) {
  .point__item:nth-of-type(2) .point__item-img {
    max-width: 716px;
    -webkit-transform: translateX(-62px);
            transform: translateX(-62px);
  }
}
.point__item-position {
  margin-inline: auto;
}
.point__item-catch {
  color: #F24822;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 1024.02px) {
  .point__item-catch {
    font-size: 2.4rem;
  }
}
.point__item-movie {
  margin-top: 10px;
  margin-inline: auto;
  max-width: 300px;
  aspect-ratio: 590/328;
}
@media screen and (min-width: 1024.02px) {
  .point__item-movie {
    margin-top: 28px;
    max-width: 590px;
  }
}
.point__item-movie iframe {
  width: 100%;
  height: 100%;
}
.point__item-checks {
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1024.02px) {
  .point__item-checks {
    margin-top: 30px;
  }
}
.point__item-check {
  padding-left: 1em;
  text-indent: -0.7em;
  font-size: 1.6rem;
  text-align: left;
  color: #F24822;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 1024.02px) {
  .point__item-check {
    padding-left: 0;
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: -0.019em;
  }
}
.point__item-check--center {
  text-align: center;
  padding-left: 0;
  text-indent: 0;
}
.point__item-box {
  margin-top: 25px;
  margin-inline: auto;
  max-width: 760px;
  padding: 20px 40px;
  border: 2px solid #8599AE;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 190px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 42px;
     -moz-column-gap: 42px;
          column-gap: 42px;
}
@media screen and (min-width: 768px) {
  .point__item-box {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .point__item-box {
    margin-top: 15px;
    padding: 20px 15px;
    gap: 10px;
  }
}
.point__item-box:first-child {
  margin-top: 0;
}
.point__item-box-text {
  line-height: 1.7;
}
@media screen and (min-width: 1024.02px) {
  .point__item-box-text {
    font-size: 1.8rem;
  }
}
.point__item-box-check {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #F24822;
}
.point__item-box-img {
  max-width: 163px;
}
@media screen and (min-width: 768px) {
  .point__item-box-img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024.02px) {
  .point__item-box-img {
    max-width: initial;
    margin-inline: auto 0;
  }
}
.point__grid {
  margin-top: 30px;
  grid-template-columns: 100%;
  margin-inline: auto;
  display: grid;
  max-width: 787px;
  gap: 31px 30px;
}
@media screen and (min-width: 1024.02px) {
  .point__grid {
    margin-top: 48px;
    grid-template-columns: 283px 1fr;
    gap: 20px;
    max-width: initial;
  }
}
.point__grid-item {
  padding: 40px 0 20px;
  background: #F2F2F2;
  position: relative;
}
@media screen and (min-width: 1024.02px) {
  .point__grid-item {
    padding: 37px 17px 24px;
  }
}
.point__grid-item:nth-of-type(2) {
  margin-top: 60px;
}
@media screen and (min-width: 1024.02px) {
  .point__grid-item:nth-of-type(2) {
    margin-top: 0;
  }
}
.point__grid-item:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 103px;
  aspect-ratio: 103/29;
  background: #013974;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
@media screen and (min-width: 1024.02px) {
  .point__grid-item:nth-of-type(2)::before {
    display: none;
  }
}
.point__grid-item:nth-of-type(3) {
  grid-column: 1/-1;
}
.point__grid-item-heading {
  padding: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 100vmax;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.019em;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.point__grid-item-heading--blue {
  color: #013974;
  border: 3px solid #013974;
}
.point__grid-item-heading--orange {
  color: #F24822;
  border: 3px solid #F24822;
}
.point__grid-item-title {
  margin-bottom: 22px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.011em;
}
@media screen and (min-width: 1024.02px) {
  .point__grid-item-title {
    font-size: 1.8rem;
  }
}
.point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(1) .point__grid-item-img {
  margin-inline: auto;
  max-width: 124px;
}
@media screen and (min-width: 1024.02px) {
  .point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(1) .point__grid-item-img {
    max-width: 133px;
  }
}
.point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(2) .point__grid-item-img {
  margin-inline: auto;
  max-width: 291px;
}
@media screen and (min-width: 1024.02px) {
  .point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(2) .point__grid-item-img {
    max-width: 392px;
  }
}
.point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(3) .point__grid-item-img {
  margin-inline: auto;
  max-width: 274px;
}
@media screen and (min-width: 1024.02px) {
  .point__wrap--blue .point__item:nth-of-type(3) .point__grid-item:nth-of-type(3) .point__grid-item-img {
    max-width: 635px;
  }
}
.point__grid-item-text {
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.019em;
  text-align: center;
}
@media screen and (min-width: 1024.02px) {
  .point__grid-item-text {
    margin-top: 20px;
    font-size: 1.7rem;
  }
}
.point__cta {
  margin-block: 70px 40px;
}
@media screen and (min-width: 1024.02px) {
  .point__cta {
    margin-top: 60px;
    margin-block: 0;
  }
}
.point__cta:first-child {
  margin-top: 8px;
}
@media screen and (min-width: 1024.02px) {
  .point__cta:first-child {
    margin-bottom: 60px;
  }
}
.point__wrap--orange .point__cta {
  margin-top: 40px;
}
@media screen and (min-width: 1024.02px) {
  .point__wrap--orange .point__cta {
    margin-top: 0;
  }
}

.cbt {
  margin-top: 60px;
  margin-block: 71px;
}
@media screen and (max-width: 767.98px) {
  .cbt {
    margin-top: 30px;
    margin-bottom: 87px;
  }
}
.cbt__inner {
  padding-inline: 20px;
}
.cbt__head {
  padding: 30px 20px 20px;
  border: 3px solid #F24822;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .cbt__head {
    display: grid;
    grid-template-columns: 162.5px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024.02px) {
  .cbt__head {
    padding: 35px 40px;
    border-width: 5px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.cbt__head-main {
  display: contents;
}
@media screen and (min-width: 768px) {
  .cbt__head-main {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.cbt__head-icon {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 15px;
  margin-inline: auto;
  max-width: 105px;
}
@media screen and (min-width: 768px) {
  .cbt__head-icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 1024.02px) {
  .cbt__head-icon {
    margin-top: 0;
    margin-inline: auto 0;
    max-width: initial;
  }
}
.cbt__head-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #F24822;
}
@media screen and (min-width: 1024.02px) {
  .cbt__head-title {
    font-size: 2.8rem;
    text-align: left;
  }
}
.cbt__head-text {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 1024.02px) {
  .cbt__head-text {
    margin-top: 5px;
  }
}
.cbt__head-caption {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.011em;
  color: #757575;
}
@media screen and (min-width: 1024.02px) {
  .cbt__head-caption {
    margin-top: 2px;
    font-size: 1.1rem;
  }
}
.cbt__heading {
  text-align: center;
  margin-top: 40px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cbt__heading {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .cbt__heading {
    margin-top: 50px;
    font-size: 3.4rem;
  }
}
.cbt__catch {
  margin-top: 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cbt__catch {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024.02px) {
  .cbt__catch {
    font-size: 2.6rem;
  }
}
.cbt__cta {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .cbt__cta {
    margin-top: 30px;
  }
}

.price {
  padding: 40px 10px 30px;
  background: #013974;
}
@media screen and (min-width: 1024.02px) {
  .price {
    padding-block: 80px;
  }
}
.price__heading {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
@media screen and (min-width: 1024.02px) {
  .price__heading {
    font-size: 4rem;
  }
}
.price__campaign {
  margin-top: 10px;
  text-align: center;
  color: #FBFF00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 1024.02px) {
  .price__campaign {
    font-size: 2.4rem;
    gap: 20px;
  }
}
.price__campaign::before, .price__campaign::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #FBFF00;
}
@media screen and (min-width: 1024.02px) {
  .price__campaign::before, .price__campaign::after {
    width: 63px;
  }
}
.price__box {
  margin-top: 30px;
  padding: 20px 10px 10px;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024.02px) {
  .price__box {
    padding: 30px 32px;
  }
}
.price__campaign + .price__box {
  margin-top: 15px;
}
.price__year {
  padding: 0 10px;
  color: #fff;
  font-weight: bold;
  background: #F24822;
}
.price__campaign-cost {
  margin-top: 5px;
  font-size: 1.4rem;
  letter-spacing: -0.019em;
  font-weight: 500;
}
@media screen and (min-width: 1024.02px) {
  .price__campaign-cost {
    margin-top: 10px;
    font-size: 2rem;
  }
}
.price__campaign-cost .border {
  text-decoration: line-through;
}
.price__campaign-cost .large {
  font-size: 2rem;
}
@media screen and (min-width: 1024.02px) {
  .price__campaign-cost .large {
    font-size: 2.4rem;
  }
}
.price__cost {
  margin-top: 5px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 1024.02px) {
  .price__cost {
    font-size: 3rem;
  }
}
.price__cost span {
  font-size: 4rem;
}
@media screen and (min-width: 1024.02px) {
  .price__cost span {
    font-size: 5rem;
  }
}
.price__bunkatsu {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1024.02px) {
  .price__bunkatsu {
    margin-top: 10px;
    font-size: 2rem;
  }
}
.price__contents {
  margin-top: 26px;
  padding: 10px;
  background: #E9E9E9;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .price__contents {
    padding: 10px 28px 21px;
  }
}
@media screen and (min-width: 1024.02px) {
  .price__contents {
    margin-top: 25px;
  }
}
.price__contents-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #013974;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 1024.02px) {
  .price__contents-title {
    font-size: 2.4rem;
  }
}
.price__contents-title::before, .price__contents-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: #013974;
}
.price__contents-img {
  margin-top: 10px;
  margin-inline: auto;
  max-width: 305px;
}
@media screen and (min-width: 768px) {
  .price__contents-img {
    max-width: 861px;
  }
}

.cv {
  padding: calc(40 / var(--sm-base)) 0;
  background: rgba(233, 71, 9, 0.1);
}
.cv-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: calc(15 / var(--sm-base));
  background: #fff;
  color: var(--color-primary);
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.cv-heading::before, .cv-heading::after {
  content: "";
  top: calc(10 / var(--sm-base));
  position: absolute;
  width: calc(20 / var(--sm-base));
  height: 100%;
  background: #fff;
}
.cv-heading::before {
  left: calc(-23 / var(--sm-base));
  -webkit-clip-path: polygon(30% 50%, 0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(30% 50%, 0 0, 100% 0, 100% 100%, 0 100%);
}
.cv-heading::after {
  right: calc(-23 / var(--sm-base));
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
}
.cv-prologue {
  margin-top: calc(20 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.cv-note {
  margin-top: calc(8 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
  text-align: center;
}
.cv-body {
  margin-top: calc(25 / var(--sm-base));
  padding: calc(30 / var(--sm-base)) calc(13 / var(--sm-base)) calc(20 / var(--sm-base));
  background: #fff;
  border: calc(2 / var(--sm-base)) solid var(--color-primary);
}
.cv-label {
  position: absolute;
  top: calc(-12 / var(--sm-base));
  left: 50%;
  z-index: 2;
  min-width: calc(106 / var(--sm-base));
  padding: calc(7 / var(--sm-base)) 0 calc(9 / var(--sm-base));
  background: var(--color-primary);
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cv-col01 {
  position: relative;
  padding: calc(40 / var(--sm-base)) calc(20 / var(--sm-base)) calc(20 / var(--sm-base));
  background: var(--color-bg-primary);
}
.cv-col01:nth-of-type(2) {
  margin-top: calc(35 / var(--sm-base));
}
.cv-col01-heading {
  font-size: calc(20 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.cv-col01-heading span {
  display: block;
  margin-bottom: calc(5 / var(--sm-base));
  font-size: calc(16 / var(--sm-base));
  line-height: 1.4;
}
.cv-col01-image {
  width: calc(200 / var(--sm-base));
  margin: calc(10 / var(--sm-base)) auto 0;
}
.cv-col01-detail {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(14 / var(--sm-base));
}
.cv-col01-detail ul {
  margin: 0;
  list-style: none;
}
.cv-col01-detail ul li {
  position: relative;
  padding-left: 1em;
}
.cv-col01-detail ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.cv-col02 {
  position: relative;
  margin-top: calc(35 / var(--sm-base));
  padding: calc(40 / var(--sm-base)) calc(20 / var(--sm-base)) calc(20 / var(--sm-base));
  background: var(--color-bg-primary);
}
.cv-col02-heading {
  line-height: 1;
  text-align: center;
}
.cv-col02-heading > span:nth-of-type(1) {
  display: block;
  padding: calc(9 / var(--sm-base)) 0 calc(10 / var(--sm-base));
  background: var(--color-default);
  color: #fff;
  font-size: calc(16 / var(--sm-base));
}
.cv-col02-heading > span:nth-of-type(2), .cv-col02-heading > span:nth-of-type(3) {
  color: var(--color-primary);
  font-family: var(--font-noto-sans);
  letter-spacing: 0.025em;
}
.cv-col02-heading > span:nth-of-type(2) {
  font-size: calc(70 / var(--sm-base));
}
.cv-col02-heading > span:nth-of-type(3) {
  font-size: calc(40 / var(--sm-base));
}
.cv-col02-heading > span:nth-of-type(4) {
  display: block;
  margin-top: calc(-3 / var(--sm-base));
  font-size: calc(32 / var(--sm-base));
}
.cv-col02-note {
  margin-top: calc(10 / var(--sm-base));
  font-size: calc(12 / var(--sm-base));
  text-align: center;
}
.cv-col02-image {
  margin-top: calc(18 / var(--sm-base));
}
.cv-col02-image img {
  width: 100%;
}
.cv-action {
  margin-top: calc(25 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .cv {
    padding: 80px 0;
  }
  .cv-heading {
    padding: 13px 30px 17px;
    font-size: 40px;
  }
  .cv-heading::before, .cv-heading::after {
    top: 10px;
    width: 40px;
    height: 70px;
  }
  .cv-heading::before {
    left: -45px;
  }
  .cv-heading::after {
    right: -45px;
  }
  .cv-prologue {
    margin-top: 35px;
    font-size: 28px;
  }
  .cv-note {
    margin-top: 5px;
    font-size: 18px;
  }
  .cv-body {
    margin-top: 40px;
    padding: 55px 35px 40px;
    border-width: 4px;
  }
  .cv-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
  }
  .cv-label {
    top: -20px;
    min-width: 106px;
    padding: 11px 10px 13px;
    font-size: 16px;
  }
  .cv-col01 {
    width: calc(50% - 20px);
    margin: 0 10px;
    padding: 40px 20px 25px;
  }
  .cv-col01:nth-of-type(2) {
    margin-top: 0;
  }
  .cv-col01-heading {
    font-size: 24px;
  }
  .cv-col01:nth-of-type(1) .cv-col01-heading {
    padding: 0.5em 0 0.5em;
  }
  .cv-col01-heading span {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .cv-col01-image {
    width: 200px;
    margin: 15px auto 0;
  }
  .cv-col01-detail {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 15px auto 0;
    font-size: 14px;
  }
  .cv-col01:nth-of-type(2) .cv-col01-detail {
    margin: 32px auto 0;
  }
  .cv-col02 {
    width: calc(100% - 20px);
    margin: 40px 10px 0;
    padding: 45px 20px 25px;
  }
  .cv-col02-row {
    max-width: 790px;
    margin: 0 auto;
  }
  .cv-col02-heading > span:nth-of-type(1) {
    margin-bottom: 3px;
    padding: 9px 10px 12px;
    font-size: 24px;
  }
  .cv-col02-heading > span:nth-of-type(2) {
    font-size: 80px;
  }
  .cv-col02-heading > span:nth-of-type(3) {
    font-size: 50px;
  }
  .cv-col02-heading > span:nth-of-type(4) {
    position: relative;
    top: -4px;
    display: inline;
    margin: 0;
    font-size: 40px;
  }
  .cv-col02-note {
    margin-top: 8px;
    font-size: 14px;
  }
  .cv-col02-image {
    width: 350px;
    margin: 25px auto 0;
  }
  .cv-action {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px), print {
  .cv-col01:nth-of-type(1) .cv-col01-heading {
    padding: 0;
  }
  .cv-col01-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 22px;
  }
  .cv-col01-image {
    width: 200px;
    margin: 0 0 0 20px;
  }
  .cv-col01-detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: -3px 0 0 24px;
  }
  .cv-col01:nth-of-type(2) .cv-col01-detail {
    margin: -3px 0 0 24px;
  }
  .cv-col02-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cv-col02-detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cv-col02-heading {
    text-align: left;
  }
  .cv-col02-heading > span:nth-of-type(1) {
    text-align: center;
  }
  .cv-col02-heading > span:nth-of-type(2) {
    margin-left: -0.05em;
  }
  .cv-col02-note {
    text-align: left;
  }
  .cv-col02-image {
    margin: 0 0 0 40px;
  }
}

/* ========================= /
/  - Utility
/* =========================*/
/* ========================= /
/  Global
/* =========================*/
@media screen and (min-width: 1024.02px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 767.98px) {
  .no-sp {
    display: none !important;
  }
}

/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  カラー
/* =========================*/
.color-blue {
  color: #013974;
}

.color-orange {
  color: #F24822;
}

.color-orange2 {
  color: #FF2F00;
}

/* ========================= /
/  Global
/* =========================*/
/* ========================= /
/  テキスト関連
/* =========================*/
.u-marker {
  text-decoration: underline;
  text-decoration-color: #F24822;
  text-decoration-thickness: 6px;
  text-underline-offset: -3px;
}
@media screen and (min-width: 1024.02px) {
  .u-marker {
    text-decoration-thickness: 9px;
  }
}

.u-marker02 {
  background: #F6FFC2;
  font-weight: bold;
}

.text-bold {
  font-weight: bold;
}