@charset "UTF-8";
/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* custom.cssは直接編集しないでください。
* custom.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > custom.css 
*   > custom.sass
*   > custom.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > custom.css 
* 
* --------------------------------------------*/
/* ===============================================================
  デザインに合わせるよう
=============================================================== */
#new-container p {
  font-size: 16px;
  font-weight: 400;
}

.c-lead {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 979.8px) {
  .c-lead {
    text-align: left;
  }
}

.c-text {
  font-size: 16px;
  font-weight: 400;
}

/* ===============================================================
  アクセシビリティ
=============================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===============================================================
  layout
=============================================================== */
/* ────────── 背景色　padding ────────── */
.l-cta-container {
  padding-bottom: 40px;
  padding-top: 40px;
}

.l-bg-container {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-container {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

.l-bg-title-area {
  padding-top: 100px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-title-area {
    padding-top: 60px;
  }
}
.l-bg-title-area + .l-bg-content-area {
  padding-top: 50px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-title-area + .l-bg-content-area {
    padding-top: 30px;
  }
}

.l-bg-content-area {
  padding-top: 80px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-content-area {
    padding-top: 60px;
  }
}
.l-bg-content-area.--mdl {
  padding-top: 50px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-content-area.--mdl {
    padding-top: 30px;
  }
}
.l-bg-content-area.--end-content {
  padding-bottom: 100px;
}
@media screen and (max-width: 689.8px) {
  .l-bg-content-area.--end-content {
    padding-bottom: 60px;
  }
}

/* ===============================================================
  component
=============================================================== */
/* ────────── title decolation ────────── */
.c-title__under-line {
  border-bottom: solid 1px #0E3E98;
  color: #0E3E98;
  line-height: 1.3;
  padding-bottom: 10px;
}
.c-title__center-line {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 979.8px) {
  .c-title__center-line {
    padding-bottom: 15px;
  }
}
.c-title__center-line::after {
  content: "";
  position: absolute;
  background-color: #278FCE;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  width: 60px;
}
.c-title__strong {
  color: #278FCE;
  line-height: 1.3;
  font-size: calc(30px + 18 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .c-title__strong {
    font-size: 48px;
  }
}
.c-title__left-line {
  position: relative;
  text-align: left;
  margin: 0;
  padding-bottom: 20px;
}
@media screen and (max-width: 979.8px) {
  .c-title__left-line {
    padding-bottom: 15px;
  }
}
.c-title__left-line::after {
  content: "";
  position: absolute;
  background-color: #278FCE;
  border-radius: 5px;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 60px;
}

.c-bubble {
  border-radius: 10px;
  color: #fff;
  margin-bottom: 15px;
  padding: 10px;
  position: relative;
  text-align: center;
}
.c-bubble::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 15px;
  width: 30px;
}
.c-bubble.--color-main {
  background-color: #278FCE;
}
.c-bubble.--color-main::after {
  background-color: #278FCE;
}
.c-bubble.--color-accent01 {
  background-color: #314FA0;
}
.c-bubble.--color-accent01::after {
  background-color: #314FA0;
}

/* ────────── list styles ────────── */
.c-list__dot {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}
.c-list__dot li {
  display: block;
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .c-list__dot li {
    font-size: 18px;
  }
}
.c-list__dot li:last-child {
  margin-bottom: 0;
}
.c-list__dot li::before {
  content: "";
  position: relative;
  display: inline-block;
  background-color: #278FCE;
  border-radius: 50%;
  top: 0;
  left: -8px;
  height: 14px;
  width: 14px;
}
.c-list__dot.--color-accent01 li::before {
  background-color: #314FA0;
}

.c-list__asterisk {
  list-style: none;
}
.c-list__asterisk li {
  display: block;
  font-weight: 400;
  margin-top: 8px;
  padding-left: 18px;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-list__asterisk li:first-child {
  margin-top: 0;
}
.c-list__asterisk li::before {
  content: "※";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
}

/* ===============================================================
  Utility
=============================================================== */
/* ────────── heading font-size ────────── */
.u-h1 {
  line-height: 1.3;
  font-size: calc(30px + 10 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h1 {
    font-size: 40px;
  }
}
.u-h2-l {
  line-height: 1.3;
  font-size: calc(26px + 10 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h2-l {
    font-size: 36px;
  }
}
.u-h2 {
  line-height: 1.3;
  font-size: calc(24px + 8 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h2 {
    font-size: 32px;
  }
}
.u-h3 {
  line-height: 1.3;
  font-size: calc(22px + 6 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h3 {
    font-size: 28px;
  }
}
.u-h4 {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h4 {
    font-size: 24px;
  }
}
.u-h5 {
  line-height: 1.3;
  font-size: calc(18px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h5 {
    font-size: 20px;
  }
}
.u-h6 {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .u-h6 {
    font-size: 18px;
  }
}

/* ────────── font-weight ────────── */
.u-fw100 {
  font-weight: 100;
}

.u-fw200 {
  font-weight: 200;
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw500 {
  font-weight: 500;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw800 {
  font-weight: 800;
}

.u-fw900 {
  font-weight: 900;
}

/* ────────── indent ────────── */
.u-indent1 {
  text-indent: -1em;
  padding-left: 1em;
}

.u-indent2 {
  text-indent: -2em;
  padding-left: 2em;
}

/* ────────── 改行 ────────── */
.only-pc {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc {
    display: none;
  }
}
.only-pc-tb {
  display: block;
}
@media screen and (max-width: 689.8px) {
  .only-pc-tb {
    display: none;
  }
}
.only-pc-sp {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc-sp {
    display: none;
  }
}
@media screen and (max-width: 689.8px) {
  .only-pc-sp {
    display: block;
  }
}
.only-tb {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tb {
    display: block;
  }
}
@media screen and (max-width: 689.8px) {
  .only-tb {
    display: none;
  }
}
.only-tb-sp {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tb-sp {
    display: block;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 689.8px) {
  .only-sp {
    display: block;
  }
}

/* ────────── text-color ────────── */
.u-fc__main {
  color: #278FCE !important;
}

.u-fc__l-main {
  color: #EEFCFF !important;
}

.u-fc__accent01 {
  color: #314FA0 !important;
}

.u-fc__l-accent01 {
  color: #ECF1FF !important;
}

.u-fc__accent02 {
  color: #0E3E98 !important;
}

.u-fc__gry-ddd {
  color: #ddd !important;
}

.u-fc__gry-f5 {
  color: #f5f5f5 !important;
}

.u-fc__blk {
  color: #333 !important;
}

.u-fc__text {
  color: #000 !important;
}

.u-fc__wht {
  color: #fff !important;
}

.u-fc__currentColor {
  color: currentColor !important;
}

/* ────────── background-color ────────── */
.u-bg__main {
  background-color: #278FCE;
}

.u-bg__l-main {
  background-color: #EEFCFF;
}

.u-bg__accent01 {
  background-color: #314FA0;
}

.u-bg__l-accent01 {
  background-color: #ECF1FF;
}

.u-bg__accent02 {
  background-color: #0E3E98;
}

.u-bg__gry-ddd {
  background-color: #ddd;
}

.u-bg__gry-f5 {
  background-color: #f5f5f5;
}

.u-bg__blk {
  background-color: #333;
}

.u-bg__text {
  background-color: #000;
}

.u-bg__wht {
  background-color: #fff;
}

.u-bg__currentColor {
  background-color: currentColor;
}

/* ────────── box ────────── */
.c-box--shadow {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
}
@media screen and (max-width: 689.8px) {
  .c-box--shadow {
    padding: 20px;
  }
}

/* ────────── width styles ────────── */
.u-w180 {
  max-width: 180px;
  width: 100%;
}
.u-w260 {
  max-width: 260px;
  width: 100%;
}
.u-w360 {
  max-width: 360px;
  width: 100%;
}
.u-w430 {
  max-width: 430px;
  width: 100%;
}

/* ────────── Image styles ────────── */
.u-ojf-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.u-ojf-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ────────── margin ────────── */
.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-ml0 {
  margin-left: 0;
}

.u-mr0 {
  margin-right: 0;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mt-auto {
  margin-top: auto;
}

/* ────────── grid ────────── */
.u-grid {
  display: grid;
}
.u-grid.--repeat221 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 689.8px) {
  .u-grid.--repeat221 {
    grid-template-columns: 1fr;
  }
}
.u-grid.--repeat211 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 979.8px) {
  .u-grid.--repeat211 {
    grid-template-columns: 1fr;
  }
}
.u-grid.--auto-fill-300 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.u-grid.--auto-fit-300 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/*gap*/
.gap5 {
  gap: 5px!important;
}

.gap10 {
  gap: 10px!important;
}

.gap15 {
  gap: 15px!important;
}

.gap20 {
  gap: 20px!important;
}

.gap25 {
  gap: 25px!important;
}

.gap30 {
  gap: 30px!important;
}

.gap35 {
  gap: 35px!important;
}

.gap40 {
  gap: 40px!important;
}

.gap45 {
  gap: 45px!important;
}

.gap50 {
  gap: 50px!important;
}

.gap55 {
  gap: 55px!important;
}

.gap60 {
  gap: 60px!important;
}

.gap65 {
  gap: 65px!important;
}

.gap70 {
  gap: 70px!important;
}

.gap75 {
  gap: 75px!important;
}

.gap80 {
  gap: 80px!important;
}

.gap85 {
  gap: 85px!important;
}

.gap90 {
  gap: 90px!important;
}

.gap95 {
  gap: 95px!important;
}

.gap100 {
  gap: 100px!important;
}

@media screen and (max-width: 979.8px) {
  .gap5-tab {
    gap: 5px!important;
  }
  .gap10-tab {
    gap: 10px!important;
  }
  .gap15-tab {
    gap: 15px!important;
  }
  .gap20-tab {
    gap: 20px!important;
  }
  .gap25-tab {
    gap: 25px!important;
  }
  .gap30-tab {
    gap: 30px!important;
  }
  .gap35-tab {
    gap: 35px!important;
  }
  .gap40-tab {
    gap: 40px!important;
  }
  .gap45-tab {
    gap: 45px!important;
  }
  .gap50-tab {
    gap: 50px!important;
  }
  .gap55-tab {
    gap: 55px!important;
  }
  .gap60-tab {
    gap: 60px!important;
  }
  .gap65-tab {
    gap: 65px!important;
  }
  .gap70-tab {
    gap: 70px!important;
  }
  .gap75-tab {
    gap: 75px!important;
  }
  .gap80-tab {
    gap: 80px!important;
  }
  .gap85-tab {
    gap: 85px!important;
  }
  .gap90-tab {
    gap: 90px!important;
  }
  .gap95-tab {
    gap: 95px!important;
  }
  .gap100-tab {
    gap: 100px!important;
  }
}
@media screen and (max-width: 689.8px) {
  .gap5-sp {
    gap: 5px!important;
  }
  .gap10-sp {
    gap: 10px!important;
  }
  .gap15-sp {
    gap: 15px!important;
  }
  .gap20-sp {
    gap: 20px!important;
  }
  .gap25-sp {
    gap: 25px!important;
  }
  .gap30-sp {
    gap: 30px!important;
  }
  .gap35-sp {
    gap: 35px!important;
  }
  .gap40-sp {
    gap: 40px!important;
  }
  .gap45-sp {
    gap: 45px!important;
  }
  .gap50-sp {
    gap: 50px!important;
  }
  .gap55-sp {
    gap: 55px!important;
  }
  .gap60-sp {
    gap: 60px!important;
  }
  .gap65-sp {
    gap: 65px!important;
  }
  .gap70-sp {
    gap: 70px!important;
  }
  .gap75-sp {
    gap: 75px!important;
  }
  .gap80-sp {
    gap: 80px!important;
  }
  .gap85-sp {
    gap: 85px!important;
  }
  .gap90-sp {
    gap: 90px!important;
  }
  .gap95-sp {
    gap: 95px!important;
  }
  .gap100-sp {
    gap: 100px!important;
  }
}
/* ===============================================================
  2カラムフォームページ用スタイル
=============================================================== */
/* ────────── フォーム用header ────────── */
.l-form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 86px;
  gap: 8px;
}
@media screen and (max-width: 689.8px) {
  .l-form-header {
    height: 60px;
  }
}
.l-form-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: auto;
}
.l-form-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}
.l-form-header__logo a img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}

/* ────────── フォーム本体 ────────── */
.c-form__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  margin: 60px auto 200px;
}
@media screen and (max-width: 979.8px) {
  .c-form__container {
    margin: 40px auto 150px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-form__container {
    margin: 40px auto 120px;
  }
}
.c-form__title {
  line-height: 1.3;
  font-size: calc(26px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1920px) {
  .c-form__title {
    font-size: 30px;
  }
}

.js-con_wrap {
  width: calc(50% - 30px);
}
@media screen and (max-width: 979.8px) {
  .js-con_wrap {
    width: 100%;
  }
}

.js-left-con {
  margin-top: 40px;
}
.js-left-con:first-child {
  margin-top: 0px;
}

.js-right-con {
  border: solid 1px #ddd;
  padding: 40px;
}

/* ────────── 資料スライドエリア ────────── */
.c-form__slider-area .swiper-main {
  border: solid 1px #ddd;
  margin-bottom: 10px;
}
.c-form__slider-area .swiper-main .swiper-slide {
  aspect-ratio: 531/367.85;
}
.c-form__slider-area .swiper-thumbnails .swiper-slide {
  aspect-ratio: 171/118;
}
.c-form__slider-area .swiper-slide img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: auto;
}

/* ===============================================================
  新topページ
=============================================================== */
/* ────────── button ────────── */
.c-button a {
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  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;
  line-height: 1.3;
  padding: 20px 30px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  height: 100%;
  width: 100%;
}
.c-button a::before {
  content: "";
  position: absolute;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  top: 50%;
  right: 20px;
  height: 10px;
  width: 10px;
}
.c-button a:hover {
  background-color: #fff !important;
}
.c-button a:hover::before {
  right: 17px;
}
.c-button.--color-main a {
  background-color: #278FCE;
  border-color: #278FCE;
}
.c-button.--color-main a:hover {
  color: #278FCE;
}
.c-button.--color-main a:hover::before {
  border-color: #278FCE;
}
.c-button.--color-accent a {
  background-color: #314FA0;
  border-color: #314FA0;
}
.c-button.--color-accent a:hover {
  color: #314FA0;
}
.c-button.--color-accent a:hover::before {
  border-color: #314FA0;
}

/* ────────── text-link ────────── */
.c-text-link {
  color: #278FCE;
  font-weight: 700;
}

/* ────────── First view ────────── */
.c-top-fv__bg {
  background: url(/dcms_media/image/c-top-fv-bg.webp) no-repeat center/cover;
  padding-top: 90px;
  overflow: hidden;
  height: auto;
  max-height: 75vh;
  min-height: 600px;
}
@media screen and (max-width: 1023.8px) {
  .c-top-fv__bg {
    min-height: auto;
    max-height: none;
  }
}
.c-top-fv__content {
  display: grid;
  grid-template-columns: 620px 1fr;
  margin-right: calc(50% - 50vw);
  gap: 30px;
  max-width: 1600px;
}
@media screen and (max-width: 1023.8px) {
  .c-top-fv__content {
    grid-template-columns: 1fr;
    margin-right: 0;
  }
}
.c-top-fv__text-area {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 979.8px) {
  .c-top-fv__text-area {
    width: 100%;
  }
}
.c-top-fv__info-title {
  line-height: 1.3;
  font-size: calc(24px + 29 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  font-weight: 900;
  margin-bottom: 30px;
}
@media (min-width: 1920px) {
  .c-top-fv__info-title {
    font-size: 53px;
  }
}
.c-top-fv__info-text {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  color: #555;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .c-top-fv__info-text {
    font-size: 18px;
  }
}
.c-top-fv__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.c-top-fv__desc-item {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
  padding: 40px 16px 16px 16px;
  position: relative;
  width: calc(33.3333333333% - 11px);
}
@media screen and (max-width: 689.8px) {
  .c-top-fv__desc-item {
    width: 100%;
  }
}
.c-top-fv__desc-icon {
  position: absolute;
  left: 50%;
  top: -30px;
  height: 60px;
  width: 70px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-top-fv__desc-icon img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-top-fv__desc-title {
  border-bottom: solid 3px #278FCE;
  border-radius: 5px;
  line-height: 1.3;
  font-size: calc(30px + 10 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
}
@media (min-width: 1920px) {
  .c-top-fv__desc-title {
    font-size: 40px;
  }
}
.c-top-fv__desc-text {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  color: #278FCE;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 1920px) {
  .c-top-fv__desc-text {
    font-size: 18px;
  }
}
.c-top-fv__image {
  position: relative;
  top: calc(24px + 29 * (100vw - 375px) / 1545 + 30px);
  right: -5%;
  max-height: 500px;
  z-index: 0;
}
@media screen and (min-width: 1920.2px) {
  .c-top-fv__image {
    max-height: 500px;
    top: calc(24px + 29 * (100vw - 375px) / 1545);
    right: 0;
  }
}
@media screen and (max-width: 1023.8px) {
  .c-top-fv__image {
    top: 0;
    right: 0;
    max-height: 45vh;
  }
}
@media screen and (max-width: 979.8px) {
  .c-top-fv__image {
    max-height: 30vh;
  }
}
@media screen and (max-width: 689.8px) {
  .c-top-fv__image {
    max-height: none;
  }
}
.c-top-fv__image img {
  vertical-align: bottom;
  width: auto;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 1023.8px) {
  .c-top-fv__image img {
    width: 100%;
  }
}

/* ────────── point ────────── */
.c-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 979.8px) {
  .c-point {
    gap: 40px;
  }
}
.c-point__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 460px;
  position: relative;
}
@media screen and (max-width: 979.8px) {
  .c-point__heading {
    width: 100%;
  }
}
@media screen and (max-width: 689.8px) {
  .c-point__heading {
    gap: 10px;
  }
}
.c-point__heading::after {
  content: "";
  border: solid 1px #ddd;
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
}
@media screen and (max-width: 979.8px) {
  .c-point__heading::after {
    height: initial;
    width: 100%;
    right: 0;
    top: auto;
    bottom: -20px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-point__label {
  background-color: #278FCE;
  border-radius: 10px;
  color: #fff;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  height: 100%;
  line-height: 1;
  padding: 20px;
  text-align: center;
  width: 100px;
}
@media screen and (max-width: 979.8px) {
  .c-point__label {
    width: 70px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-point__label {
    width: 100%;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    padding: 10px;
  }
}
.c-point__label-text {
  font-size: 18px;
  font-weight: 700;
}
.c-point__label-number {
  font-family: Roboto;
  line-height: 1.3;
  font-size: calc(40px + 10 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .c-point__label-number {
    font-size: 50px;
  }
}
.c-point__title {
  line-height: 1.3;
  font-size: calc(22px + 6 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  margin: 0;
  padding: 10px 0;
  width: calc(100% - 120px);
}
@media (min-width: 1920px) {
  .c-point__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 979.8px) {
  .c-point__title {
    width: calc(100% - 90px);
  }
}
@media screen and (max-width: 689.8px) {
  .c-point__title {
    padding: 0;
    width: 100%;
  }
}
.c-point__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 0;
}
@media screen and (max-width: 979.8px) {
  .c-point__content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 689.8px) {
  .c-point__content {
    padding: 0;
  }
}
.c-point__text {
  font-size: 18px;
  font-weight: 400;
}

/* ────────── cta ────────── */
.c-cta {
  background: url(/dcms_media/image/c-cta-bg.webp) no-repeat center/cover;
  padding: 80px 0;
}
@media screen and (max-width: 979.8px) {
  .c-cta {
    padding: 60px 0;
  }
}
@media screen and (max-width: 689.8px) {
  .c-cta {
    grid-template-columns: 1fr;
  }
}
.c-cta__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 689.8px) {
  .c-cta__content {
    grid-template-columns: 1fr;
  }
}
.c-cta-card {
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
}
@media screen and (max-width: 689.8px) {
  .c-cta-card {
    padding: 30px 20px;
  }
}
.c-cta-card__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cta-card__title {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  text-align: center;
}
@media (min-width: 1920px) {
  .c-cta-card__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 979.8px) {
  .c-cta-card__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.c-cta-card .c-button {
  margin: auto auto 0;
  max-width: 300px;
  width: 100%;
}
.c-cta-card .c-button a {
  padding: 15px 30px;
}
.c-cta__caption {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 1920px) {
  .c-cta__caption {
    font-size: 24px;
  }
}
.c-cta__caption a {
  color: #fff;
  text-decoration: underline;
}
.c-cta__caption a:hover {
  opacity: 0.7;
}

/* ────────── feature ────────── */
.c-feature__item {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-feature__icon {
  aspect-ratio: 1/1;
  margin: auto;
  height: 40px;
  width: 40px;
}
.c-feature__title {
  line-height: 1.3;
  font-size: calc(19px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  margin: 0;
  text-align: center;
}
@media (min-width: 1920px) {
  .c-feature__title {
    font-size: 23px;
  }
}
.c-feature__title-sub {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  color: #278FCE;
  display: block;
  margin-bottom: 0;
  margin-top: 5px;
}
@media (min-width: 1920px) {
  .c-feature__title-sub {
    font-size: 18px;
  }
}
.c-feature__text {
  margin-top: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ────────── plan-card ────────── */
.c-plan-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-plan-card__heading {
  border-style: solid;
  border-width: 5px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 20px 30px;
}
@media screen and (max-width: 979.8px) {
  .c-plan-card__heading {
    padding: 10px 20px;
  }
}
.c-plan-card__content {
  background-color: #fff;
  border-style: solid;
  border-width: 5px;
  border-radius: 0 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  height: 100%;
}
@media screen and (max-width: 689.8px) {
  .c-plan-card__content {
    padding: 20px;
  }
}
.c-plan-card__price {
  margin-top: auto;
}
.c-plan-card__price .c-bubble {
  position: relative;
  margin-inline: auto;
  width: 80%;
  top: 30px;
}
.c-plan-card__price-list {
  border-radius: 10px;
  padding: 40px 20px 20px;
}
.c-plan-card.--color-main .c-plan-card__heading {
  background-color: #278FCE;
  border-color: #278FCE;
}
.c-plan-card.--color-main .c-plan-card__content {
  border-color: #278FCE;
}
.c-plan-card.--color-main .c-plan-card__price-list {
  background-color: #EEFCFF;
}
.c-plan-card.--color-accent .c-plan-card__heading {
  background-color: #314FA0;
  border-color: #314FA0;
}
.c-plan-card.--color-accent .c-plan-card__content {
  border-color: #314FA0;
}
.c-plan-card.--color-accent .c-plan-card__price-list {
  background-color: #ECF1FF;
}
.c-plan-card-list {
  border-radius: 10px;
}

/* ────────── c-video-block ────────── */
.c-video-block {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 689.8px) {
  .c-video-block {
    grid-template-columns: 1fr;
  }
}
.c-video-block__info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  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 (max-width: 689.8px) {
  .c-video-block__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-video-block__info-text p + p {
  margin-top: 8px;
}
.c-video-block__info-text p + p:first-child {
  margin-top: 0;
}
.c-video-block__movie {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 689.8px) {
  .c-video-block__movie {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.c-video-block__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ────────── case-box ────────── */
.c-case-box {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 689.8px) {
  .c-case-box {
    padding: 20px;
  }
}
.c-case-box__image {
  width: 240px;
}
@media screen and (max-width: 689.8px) {
  .c-case-box__image {
    width: 100%;
  }
}
.c-case-box__image img {
  border-radius: 10px;
}
.c-case-box__content {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(100% - 260px);
}
@media screen and (max-width: 689.8px) {
  .c-case-box__content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.c-case-box__title {
  line-height: 1.3;
  font-size: calc(18px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  margin: 0 0 10px 0;
}
@media (min-width: 1920px) {
  .c-case-box__title {
    font-size: 20px;
  }
}
.c-case-box__text {
  margin-bottom: 1rem;
  font-weight: 400;
}
.c-case-box__name {
  font-weight: 600;
  margin-top: auto;
}

/* ────────── case-card ────────── */
.c-case-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-decoration: none;
  gap: 16px;
}
.c-case-card__link:hover {
  text-decoration: none;
}
.c-case-card__link:hover .c-case-card__title {
  text-decoration: underline;
}
.c-case-card__link:hover .c-case-card__text {
  text-decoration: underline;
}
.c-case-card__image {
  aspect-ratio: 360/239;
}
.c-case-card__image img {
  border-radius: 10px;
}
.c-case-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-case-card__title {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  color: #278FCE;
  margin: 0;
}
@media (min-width: 1920px) {
  .c-case-card__title {
    font-size: 18px;
  }
}
/* ────────── logoスライド ────────── */
:root {
  --logo-height: 70px;
  --gap: 36px;
  --duration: 18s;
}
@media screen and (max-width: 979.8px) {
  :root {
    --duration: 12s;
  }
}
@media screen and (max-width: 689.8px) {
  :root {
    --logo-height: 50px;
    --gap: 20px;
    --duration: 5s;
  }
}

.c-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: transparent;
  border-radius: 8px;
}
.c-marquee__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
  -webkit-animation: marquee linear infinite;
          animation: marquee linear infinite;
  -webkit-animation-duration: var(--duration);
          animation-duration: var(--duration);
}
.c-marquee__group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
  white-space: nowrap;
}
.c-marquee__group img {
  height: var(--logo-height);
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-marquee:hover .c-marquee__track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ユーザーの『減速希望』に配慮 */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    -webkit-animation: none;
            animation: none;
  }
}
.c-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* custom.cssは直接編集しないでください。
* custom.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > custom.css 
*   > custom.sass
*   > custom.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > custom.css 
* 
* --------------------------------------------*//*# sourceMappingURL=custom.css.map */