@charset "UTF-8";
:root {
  --black: 51,51,51;
  --red: #B10000;
  --blue: #0B3484;
  --cyan: #1AB1E6;
  --border: rgba(var(--black),.6);
  --contents_width: 1000px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1060px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* 02_base
================================================ */
html {
  overflow: auto;
}

body {
  min-width: 375px;
  padding-top: 52px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(var(--black));
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: 65px;
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

.l-wrapper {
  position: relative;
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1060px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.u-font-serif {
  font-family: "Noto Serif JP", serif;
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* .c-btn01
================================================== */
.c-btn01 {
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 7px;
}
.c-btn01__link {
  text-align: center;
  border-radius: 4px;
  display: block;
  padding: 19px 3px;
  font-size: 1.8rem;
  line-height: 1.11;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  background: #e51523;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.c-btn01__wrap {
  background-color: #0B3484;
  padding: 16px;
}
.c-btn01__free {
  font-size: 1.8rem;
  position: relative;
  margin-top: 0.5rem;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    width: 400px;
  }
  .c-btn01__link {
    padding: 23px 5px;
    font-size: 2.4rem;
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    opacity: 0.8;
  }
  .c-btn01__wrap {
    background-color: transparent;
    padding: 0 0 48px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-blue
================================================== */
.c-color-blue {
  color: #0B3484;
}

/*  .c-faq01
================================================== */
.c-faq01 + .c-faq01 {
  margin-top: 12px;
}
.c-faq01__ico {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 100%;
  text-align: center;
  background: var(--cyan);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.1;
  box-sizing: border-box;
}
.c-faq01__head {
  padding: 10px 60px 10px 56px;
  min-height: 52px;
  box-sizing: border-box;
  position: relative;
  background-color: #FAFAFA;
  line-height: 2;
}
.c-faq01__head[class*=toggle] {
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background-color: #383838;
}
.c-faq01__head[class*=toggle]::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.c-faq01__txt {
  margin-top: 4px;
  position: relative;
  padding: 10px 20px 10px 56px;
  background-color: #FAFAFA;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
.c-faq01__txt .c-faq01__ico {
  background: #ED6464;
}
@media all and (min-width: 768px) {
  .c-faq01 + .c-faq01 {
    margin-top: 16px;
  }
  .c-faq01__head {
    font-size: 1.4rem;
    padding: 10px 57px 9px;
    min-height: 47px;
  }
  .c-faq01__txt {
    margin-top: 8px;
    font-size: 1.2rem;
    padding: 13px 57px 12px;
  }
}

/* .c-head01
================================================== */
.c-head01 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 21px;
  line-height: 1.5;
  font-weight: 500;
}
.c-head01__large {
  font-size: 2.4rem;
}
.c-head02 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 40px;
    font-size: 2.6rem;
  }
  .c-head01__large {
    font-size: 2.6rem;
  }
  .c-head01__pc-small {
    font-size: 2rem;
  }
  .c-head02 {
    font-size: 2.4rem;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  padding: 40px 0;
  background: #0B3484;
  text-align: center;
  font-weight: 400;
}
.l-footer__inner {
  color: #fff;
}
.l-footer__item {
  text-align: center;
  font-size: 1.6rem;
}
.l-footer__cr {
  margin-top: 18px;
  font-size: 1.2rem;
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  background: #fff;
}
.l-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 52px;
}
.l-header-btn {
  width: 130px;
  margin: 0;
}
.l-header-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border: none;
  border-radius: 0;
  padding: 3px;
}
.l-header-btn__link .c-btn01__free {
  font-size: 1rem;;
}
.l-header-btn__link .c-btn01__free {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.l-header-btn__ico {
  width: 22px;
  margin-right: 10px;
}
.l-header-btn__ico img {
  max-width: 100%;
}
@media all and (max-width: 767px) {
  .l-header__inner {
    padding-right: 0;
  }
  .l-header-btn {
    height: 100%;
  }
  .l-header-btn__link {
    height: 100%;
  }
  .l-header-btn__link .c-btn01__free {
    margin-top: 0.3rem;
  }
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    padding: 0 30px;
  }
  .l-header__inner {
    max-width: 1720px;
    height: 65px;
  }
  .l-header-btn {
    width: 258px;
  }
  .l-header-btn__link {
    border-radius: 6px;
    padding: 12px;
  }
  .l-header-btn__ico {
    margin-right: 12px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
}
.l-header-info__logo {
  margin-top: -3px;
  width: 123px;
}
@media all and (min-width: 768px) {
  .l-header-info__logo {
    margin: 0;
    width: 191px;
  }
}

/* .l-main-img HOME
================================================ */
.l-main-img__inner {
  padding-top: 10px;
  padding-bottom: 40px;
}
.l-main-img__copy {
  font-size: 4.3rem;
  line-height: 1.28;
  color: #fff;
  filter: drop-shadow(0px 0px 10px black) drop-shadow(0px 0px 20px black) drop-shadow(0px 0px 30px black) drop-shadow(0px 0px 40px black);
}
.l-main-img__copy strong {
  display: block;
  font-weight: 500;
}
.l-main-img__copy-area {
  text-align: center;
}
.l-main-img__head {
  margin-bottom: 10px;
}
.l-main-img__head strong {
  font-size: 8rem;
  font-weight: 500;
  color: #e51523;
}
.l-main-img__slider {
  margin-bottom: 60px;
  opacity: 0;
  transition: opacity .3s;
}
.l-main-img__slider.slick-initialized {
  opacity: 1;
}
.l-main-img__slider .slick-track {
  display: flex;
  padding-bottom: 10px;
}
.l-main-img__slider .slick-slide {
  width: 260px;
  height: 167px;
  margin: 0 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.l-main-img__slider .slick-slide > div {
  height: 100%;
}
.l-main-img__item-card {
  height: 100%;
  background: #fff;
  border: 3px solid #0b3484;
  padding: 20px;
}
.l-main-img__item-card-head {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b3484;
  margin-bottom: 4px;
}
.l-main-img__item-card-title {
  display: block;
  width: 60px;
  font-size: 1.6rem;
  text-align: center;
  color: #656565;
  border: 2px solid #355799;
  border-radius: 5px;
  padding: 6px;
  margin-right: 10px;
}
.l-main-img__item-card-line {
  position: relative;
  margin-top: 8px;
}
.l-main-img__item-card-line::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  height: 2px;
  background: #385A9B;
}
.l-main-img__item-card-income {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0b3484;
  background: #fff;
  padding-right: 1em;
}
.l-main-img__item-card-body {
  font-size: 2.4rem;
  font-weight: 700;
  color: #3D3D3D;
}
.l-main-img__item-card-num {
  font-size: 3.1rem;
  color: #b10000;
}
@media all and (max-width: 767px) {
  .l-main-img {
    position: relative;
    background: url(../img/bg_mainimg01_2410-sp.webp) no-repeat top center/cover;
  }
  .l-main-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
  }
  .l-main-img__inner {
    position: relative;
    z-index: 2;
  }
  .l-main-img__copy {
    font-size: 1.8rem;
    filter: none;
  }
  .l-main-img__copy strong {
    font-size: 3rem;
    margin-top: 5px;
  }
  .l-main-img__copy-area {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    margin-bottom: 10px;
  }
  .l-main-img__head {
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
  }
  .l-main-img__head strong {
    font-size: 3rem;
    color: #ffb314;
  }
  .l-main-img__slider {
    margin-right: -16px;
    margin-bottom: 20px;
  }
  .l-main-img__slider .slick-dots {
    margin-right: 16px;
  }
  .l-main-img__slider .slick-prev, .l-main-img__slider .slick-next {
    margin-right: 16px;
  }
  .l-main-img__item-card {
    padding: 15px;
  }
  .l-main-img__item-card-head {
    min-height: 34px;
    font-size: 1.4rem;
    margin-bottom: 3px;
  }
  .l-main-img__item-card-title {
    width: 48px;
    font-size: 1.3rem;
    padding: 5px;
    margin-right: 6px;
  }
  .l-main-img__item-card-line {
    margin: 2px 0 -5px;
  }
  .l-main-img__item-card-income {
    font-size: 1.4rem;
  }
  .l-main-img__item-card-body {
    font-size: 1.9rem;
  }
  .l-main-img__item-card-num {
    font-size: 2.4rem;
  }
}

@media all and (min-width: 768px) {
  .l-main-img__copy-area {
    background: url(../img/bg_mainimg01_2410-pc.webp) no-repeat top 20% center/cover;
    padding: 150px 0 80px;
  }
  .l-main-img__btn {
    margin-top: 60px;
  }
  .l-main-img__inner {
    background-color: #F5FCFF;
    padding-top: 10px;
    padding-bottom: 40px;
    max-width: initial;
  }
  .l-main-img__head br {
    display: none;
  }
  .l-main-img__slider .slick-slide {
    width: 334px;
    height: 215px;
  }
  .l-main-img__slider .slick-dots {
    margin-top: 30px;
  }
}

@-webkit-keyframes bgLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1040px 0;
  }
}

@keyframes bgLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1040px 0;
  }
}
@-webkit-keyframes bgLoopPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1871px 0;
  }
}
@keyframes bgLoopPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1871px 0;
  }
}
.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.slick-dots > li {
  margin: 0 4px 10px;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  width: 15px;
  height: 15px;
  background-color: #CECECE;
}
.slick-dots > li.slick-active {
  background-color: var(--blue);
}
.slick-dots button {
  font-size: 1.5rem;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #fff;
  line-height: 1.1;
  font-weight: 500;
  box-sizing: border-box;
  text-align: center;
  text-indent: -99999px;
}
@media all and (min-width: 768px) {
  .slick-dots {
    margin-top: 30px;
  }
  .slick-dots > li {
    margin: 0 4px 15px;
  }
  .slick-dots button {
    font-size: 1.9rem;
  }
}

.slick-arrow {
  width: 24px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  text-indent: -9999px;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -60px;
  z-index: 1;
}
.slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.slick-arrow.slick-prev {
  left: -12px;
}
.slick-arrow.slick-prev::before {
  -webkit-transform: rotate(-135deg) translateY(50%);
  transform: rotate(-135deg) translateY(50%);
  left: 3px;
}
.slick-arrow.slick-next {
  right: -12px;
}
.slick-arrow.slick-next::before {
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: 14px;
}

/* .home-intro
======================================= */
.home-intro {
  padding: 40px 0 40px;
}
.home-intro__area-img {
  width: 100%;
  height: 50px;
  background: url(../img/img_intro01-sp.png) repeat-x 0 0/1024px;
  background-position: 0 0;
  -webkit-animation: bgLoop 25s linear infinite;
  animation: bgLoop 25s linear infinite;
}
@media all and (min-width: 768px) {
  .home-intro {
    padding: 32px 0 31px;
  }
  .home-intro__area-img {
    height: 68px;
    background: url(../img/img_intro01.png) repeat-x 0 0/1426px;
    -webkit-animation: bgLoopPc 25s linear infinite;
    animation: bgLoopPc 25s linear infinite;
  }
}

/* .home-sample
-------------------------------------- */
.home-sample {
  padding-bottom: 40px;
}
.home-sample__logo-copy {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.home-sample__logo-copy strong {
  font-size: 8rem;
  font-weight: 500;
  color: #e51523;
}
.home-sample__logo-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 0 auto;
}
.home-sample__logo-item {
  display: grid;
  place-content: center;
  max-width: 100px;
  max-height: 60px;
  margin: 10px;
}

@media all and (max-width: 767px) {
  .home-sample {
    background-color: #F5FCFF;
    padding-top: 20px;
  }
  .home-sample__logo-copy {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .home-sample__logo-copy strong {
    font-size: 3rem;
    font-weight: 700;
  }
  .home-sample__logo-list {
    justify-content: flex-start;
    gap: 4px;
    max-width: 400px;
    margin-bottom: 24px;
  }
  .home-sample__logo-item {
    flex: 0 0 24%;
    background: #fff;
    padding: 5px;
    margin: 0;
  }
}

/* .home-voice
-------------------------------------- */
.home-voice {
  background: #0b3484;
}
.home-voice__inner {
  padding-top: 5px;
  padding-bottom: 10px;
}
.home-voice__head {
  color: #fff;
}
.home-voice__head strong {
  font-size: 8rem;
}
.home-voice__item {
  background-color: #fff;
  padding: 16px 16px 13px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.home-voice__item-head {
  text-align: center;
  font-weight: 700;
  color: #0B3484;
  padding: 13px 0;
}
.home-voice__item-head .marker {
  background: linear-gradient(transparent 70%, #FFE077 70%);
}
.home-voice__item strong {
  font-weight: 700;
  color: #0B3484;
}
.home-voice__item + .home-voice__item {
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .home-voice {
    padding-bottom: 30px;
  }
  .home-voice__head strong {
    font-size: 3rem;
  }
}
@media all and (min-width: 768px) {
  .home-voice__inner {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .home-voice__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-voice__item {
    width: 480px;
    padding: 20px;
  }
  .home-voice__item + .home-voice__item {
    margin-top: 0;
  }
  .home-voice__item-head {
    font-size: 1.5rem;
    padding: 13px 0 15px;
    line-height: 2.2;
  }
}

/* .home-point
-------------------------------------- */
.home-point {
  background-color: #fafafa;
}
.home-point__inner {
  padding-top: 36px;
  padding-bottom: 50px;
}
.home-point__head {
  color: #0b3484;
  margin-bottom: 20px;
}
.home-point__item {
  margin: 0 -16px;
}
.home-point__item-head {
  color: #0b3484;
  background: #fff;
  padding: 10px 20px 10px;
}
.home-point__item-num {
  height: 52px;
  width: auto;
  max-width: initial;
  padding-right: 12px;
}
.home-point__item-area-txt {
  padding: 17px 16px 24px;
  font-weight: 400;
}
.home-point__item-area-txt p + p {
  margin-top: 28px;
}
.home-point__item-area-txt strong {
  color: var(--red);
}
@media all and (min-width: 768px) {
  .home-point {
    background-color: #f5fcff;
  }
  .home-point__inner {
    padding-top: 47px;
    padding-bottom: 40px;
  }
  .home-point__list {
    margin-bottom: 40px;
  }
  .home-point__item {
    margin: 0;
    background: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  }
  .home-point__item + .home-point__item {
    margin-top: 20px;
  }
  .home-point__item-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
  }
  .home-point__item-head {
    padding: 10px 20px 5px;
  }
  .home-point__item-img {
    width: 400px;
  }
  .home-point__item-area-txt {
    width: 540px;
    padding: 0;
  }
  .home-point__item-area-txt p + p {
    margin-top: 22px;
  }
}

/* .home-case
-------------------------------------- */
.home-case {
  background: #0b3484;
  padding-bottom: 25px;
}
.home-case__inner {
  padding-top: 25px;
  max-width: initial;
}
.home-case__head {
  color: #fff;
}
.home-case__slider {
  position: relative;
  margin-top: 10px;
}
.home-case__slider .slick-dots {
  margin-top: 20px;
}
.home-case__slider .slick-track {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.home-case__slider .slick-slide {
  height: auto !important;
  width: calc(100vw - 32px);
  min-width: 343px;
  margin: 0 16px;
}
.home-case__slider .slick-slide > div {
  height: 100%;
}
.home-case__item-card {
  background: #fff;
  border: 2px solid #50B7E3;
  padding: 20px;
}
.home-case__item-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.home-case__item-head-image {
  flex: 0 0 46%;
}
.home-case__item-head-text {
  flex: 0 0 46%;
}
.home-case__item-head-case {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #1AB1E6;
  padding: 2px;
  margin-bottom: 15px;
}
.home-case__item-head-status {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.home-case__item-head-status-title {
  display: inline-block;
  font-weight: 500;
  border: 1px solid #5DC7EC;
  border-radius: 4px;
  padding: 2px 12px;
  margin-right: 15px;
}
.home-case__item-body-content {
  display: flex;
  border-top: 1px solid #EBE9E9;
  padding-top: 15px;
}
.home-case__item-body-defore {
  flex: 0 0 46%;
}
.home-case__item-body-defore-title {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #8A8989;
  background: #CECECE;
  border-radius: 3px;
  padding: 4px 0;
}
.home-case__item-body-defore-job {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  color: #999;
}
.home-case__item-body-defore-job.is-small {
  font-size: clamp(1.2rem, 1vw, 1.3rem);
}
.home-case__item-body-defore-income {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 40px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #999;
}
.home-case__item-body-defore-income-big {
  font-size: 2.6rem;
  line-height: 1.3;
}
.home-case__item-body-arraw {
  flex: 0 0 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-case__item-body-arraw-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 8px solid #b10000;
  border-right: 0;
}
.home-case__item-body-after {
  flex: 0 0 46%;
}
.home-case__item-body-after-title {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background: #1AB1E6;
  border-radius: 3px;
  padding: 4px 0;
}
.home-case__item-body-after-job {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
}
.home-case__item-body-after-job.is-small {
  font-size: clamp(1.2rem, 1vw, 1.3rem);
}
.home-case__item-body-after-income {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 40px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.home-case__item-body-after-income-big {
  font-size: 2.6rem;
  line-height: 1.3;
  color: #b10000;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
  .home-case__item-body-defore-job, .home-case__item-body-after-job {
    font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  }
  .home-case__item-body-defore-job.is-small, .home-case__item-body-after-job.is-small {
    font-size: clamp(1rem, 1vw, 1.2rem);
  }
  .home-case__item-body-defore-income, .home-case__item-body-after-income {
    font-size: clamp(1.6rem, 1.4vw, 1.7rem);
  }
  .home-case__item-body-defore-income-big, .home-case__item-body-after-income-big {
    font-size: clamp(2.2rem, 2.2vw, 2.6rem);
  }
}
@media all and (min-width: 768px) {
  .home-case {
    padding-bottom: 0;
  }
  .home-case__inner {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .home-case__slider {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
    max-width: 1220px;
    padding: 0 30px;
    margin: 20px auto 0;
  }
  .home-case__slider .slick-dots {
    margin-top: 33px;
  }
  .home-case__slider .slick-slide {
    width: 373px;
    max-width: initial;
    margin: 0 10px;
  }
}
@media all and (max-width: 767px) {
  .home-case__slider {
    opacity: 0;
    transition: opacity .3s;
  }
  .home-case__slider.slick-initialized {
    opacity: 1;
  }
  .home-case__item-body-defore-job, .home-case__item-body-after-job {
    font-size: clamp(1.2rem, 3.6vw, 1.5rem);
  }
  .home-case__item-body-defore-job.is-small, .home-case__item-body-after-job.is-small {
    font-size: clamp(1rem, 3vw, 1.3rem);
  }
}

/* .home-faq
-------------------------------------- */
.home-faq__inner {
  padding-top: 36px;
  padding-bottom: 36px;
}
@media all and (min-width: 768px) {
  .home-faq__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}