@charset "UTF-8";
/* CSS Document */
/* ==================================================
Mixin
================================================== */
/*
 * Easing function
 * Original：http://easings.net/
 */
/* ==================================================
KeyFrames
================================================== */
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
/* header */
@media all and (min-width: 751px) {
  .shindan-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
}
@media all and (min-width: 751px) {
  .shindan-header__inner {
    padding-left: 5.625rem;
    padding-right: 5.625rem;
    background: #084b9f;
    color: #fff;
  }
  .shindan-header__inner a {
    color: #fff;
  }
}
@media all and (min-width: 751px) and (max-width: 1366px) {
  .shindan-header__inner {
    padding-left: 4.2166910688rem;
    padding-right: 4.2166910688rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #084b9f;
    color: #fff;
  }
  .shindan-header__inner a {
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-body {
    display: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-menu {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav {
    flex-shrink: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav-list__item {
    margin-left: 1.25rem;
  }
  .shindan-header-nav-list__item:first-child {
    margin-left: 0;
  }
  .shindan-header-nav-list__item > a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-decoration: none;
  }
  .shindan-header-nav-list__item > a .shindan-header-nav-body {
    transition: background 0.2s ease, color 0.2s ease;
  }
  .shindan-header-nav-list__item > a .shindan-header-nav__ico::before {
    transition: opacity 0.2s ease;
  }
  .shindan-header-nav-list__item > a .shindan-header-nav__ico::after {
    transition: opacity 0.2s ease;
  }
  .shindan-header-nav-list__item > a:hover .shindan-header-nav-body {
    background: #fff;
    color: #084b9f;
  }
  .shindan-header-nav-list__item > a:hover .shindan-header-nav__ico::before {
    opacity: 0;
  }
  .shindan-header-nav-list__item > a:hover .shindan-header-nav__ico::after {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav-list__item {
    margin-left: 1.25rem;
    white-space: nowrap;
  }
  .shindan-header-nav-list__item:first-child {
    margin-left: 0;
  }
  .shindan-header-nav-list__item > a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-decoration: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 2.5rem;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 2.5rem;
    text-align: center;
    color: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav__ico {
    position: relative;
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 1.25rem;
  }
  .shindan-header-nav__ico::before {
    content: "";
    display: block;
    padding-top: 100%;
    background: url("/assets/img/common/ico_arw_nav02.svg") no-repeat center center;
    background-size: contain;
  }
  .shindan-header-nav__ico::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    background: url("/assets/img/common/ico_arw_nav02_on.svg") no-repeat center center;
    background-size: contain;
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav__ico {
    position: relative;
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 1.25rem;
  }
  .shindan-header-nav__ico::before {
    content: "";
    display: block;
    padding-top: 100%;
    background: url("/assets/img/common/ico_arw_nav02.svg") no-repeat center center;
    background-size: contain;
  }
  .shindan-header-nav__ico::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    background: url("/assets/img/common/ico_arw_nav02_on.svg") no-repeat center center;
    background-size: contain;
    opacity: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-header-nav__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.5294117647;
    font-size: 1.0625rem;
    font-weight: 700;
  }
  .shindan-header-nav__label:first-child {
    margin-right: 0.375rem;
  }
  .shindan-header-nav__label:last-child {
    margin-left: 0.375rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-header-nav__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.5294117647;
    font-size: 1.0625rem;
    font-weight: 700;
  }
  .shindan-header-nav__label:first-child {
    margin-right: 0.375rem;
  }
  .shindan-header-nav__label:last-child {
    margin-left: 0.375rem;
  }
}

/* container */
/* main */
/* footer */
/* component */
@media screen and (max-width: 750px) {
  .c-lead__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 750px) {
  .c-btn__label {
    font-size: 1rem;
  }
}
/* hero */
@media all and (min-width: 751px) {
  .shindan-hero {
    position: relative;
    background: #e9f4ff;
    overflow: hidden;
  }
  .shindan-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 24.0625rem;
    margin: 0 auto;
    background: url("/assets/img/shindan/bg_hero01.png") repeat-x center bottom;
    background-size: 85.625rem;
  }
  .shindan-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18.5625rem;
    height: 26.8125rem;
    margin-bottom: -2.125rem;
    margin-left: 6.8125rem;
    background: url("/assets/img/shindan/bg_hero02.png") no-repeat center bottom;
    background-size: contain;
    transform: translate3d(-50%, 0, 0);
  }
  .shindan-hero > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero {
    position: relative;
    background: #e9f4ff;
    overflow: hidden;
  }
  .shindan-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 22.4375rem;
    margin: 0 auto;
    background: url("/assets/img/shindan/bg_hero01_sp.png") no-repeat center bottom;
    background-size: cover;
  }
  .shindan-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10.75rem;
    height: 15.5625rem;
    margin-bottom: 7.125rem;
    margin-left: 1.5rem;
    background: url("/assets/img/shindan/bg_hero02.png") no-repeat center bottom;
    background-size: contain;
  }
  .shindan-hero > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: clamp(20rem, 100%, 71.25rem);
    height: 33.0625rem;
    margin: 0 auto;
    padding-top: 4rem;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 38.625rem;
    padding-top: 0.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .shindan-hero-container > * {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-heading {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 3.625rem;
    margin-left: 1.8125rem;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-heading {
    flex-shrink: 0;
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-heading__label {
    display: inline-block;
    vertical-align: top;
    width: 31.875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-heading__label {
    display: inline-block;
    vertical-align: top;
    width: 21.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    margin-top: 0.875rem;
  }
  .shindan-hero-body:first-child {
    margin-top: 0;
  }
  .shindan-hero-body > * {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-lead {
    flex-grow: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-lead-txt {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 1.5rem;
    margin-right: 0rem;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-lead-txt {
    text-align: right;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-lead-txt__label {
    display: inline-block;
    vertical-align: top;
    width: 20.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-lead-txt__label {
    display: inline-block;
    vertical-align: top;
    width: 12.125rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25.8125rem;
    margin-bottom: 3.75rem;
    margin-left: 1.9375rem;
    text-align: center;
  }
  .shindan-hero-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
  .shindan-hero-btn a .shindan-hero-btn-body {
    transform: translate3d(0, 0, 0);
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .shindan-hero-btn a:hover .shindan-hero-btn-body {
    filter: drop-shadow(0 0 #B56300);
    transform: translate3d(0.125rem, 0.3125rem, 0);
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-btn {
    text-align: center;
  }
  .shindan-hero-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22.5rem;
    height: 4.375rem;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    border-radius: 4.375rem;
    background: #f08400;
    filter: drop-shadow(0.125rem 0.3125rem #B56300);
    color: #fff;
  }
  .shindan-hero-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #f08400;
    border-radius: 4.375rem;
  }
  .shindan-hero-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 21.5625rem;
    width: 100%;
    height: 4.0625rem;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    border-radius: 4.0625rem;
    background: #f08400;
    filter: drop-shadow(0.125rem 0.3125rem #B56300);
    color: #fff;
  }
  .shindan-hero-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #f08400;
    border-radius: 4.0625rem;
  }
  .shindan-hero-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-btn__label {
    display: inline-block;
    vertical-align: top;
    flex-grow: 1;
    font-size: 1.125rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-btn__label {
    display: inline-block;
    vertical-align: top;
    flex-grow: 1;
    font-size: 1.0625rem;
    font-weight: 700;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-btn__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
  .shindan-hero-btn__ico:first-child {
    transform: rotate(180deg);
  }
  .shindan-hero-btn__ico:last-child {
    transform: rotate(0deg);
  }
  .shindan-hero-btn__ico svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-btn__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
  .shindan-hero-btn__ico:first-child {
    transform: rotate(180deg);
  }
  .shindan-hero-btn__ico:last-child {
    transform: rotate(0deg);
  }
  .shindan-hero-btn__ico svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-comment {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25.8125rem;
    margin-bottom: 0;
    margin-left: 1.9375rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-comment {
    margin-top: 1.125rem;
  }
  .shindan-hero-comment:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-hero-comment-txt {
    text-align: center;
    line-height: 1.5;
    font-size: 0.75rem;
    color: #221815;
  }
}
@media screen and (max-width: 750px) {
  .shindan-hero-comment-txt {
    text-align: center;
    line-height: 1.5;
    font-size: 0.6875rem;
    color: #221815;
  }
}

/* content */
/* guide */
@media all and (min-width: 751px) {
  .shindan-guide {
    margin-top: 2.25rem;
  }
  .shindan-guide:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide {
    margin-top: 1.875rem;
  }
  .shindan-guide:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-img {
    margin-top: 2.25rem;
    text-align: center;
  }
  .shindan-guide-img:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-img {
    margin-top: 1.875rem;
    text-align: center;
  }
  .shindan-guide-img:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-img__label {
    display: inline-block;
    vertical-align: top;
    width: 52rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-img__label {
    display: inline-block;
    vertical-align: top;
    max-width: 12.9375rem;
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit {
    margin-top: 2.25rem;
  }
  .shindan-guide-merit:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit {
    margin-top: 1.875rem;
  }
  .shindan-guide-merit:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-column__parts {
    width: calc(0.5 * 100% - 0.9375 * 1rem);
    margin-left: 1.875rem;
  }
  .shindan-guide-merit-column__parts:nth-child(2n+1) {
    margin-left: 0;
  }
  .shindan-guide-merit-column__parts:nth-child(n+3) {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-column__parts {
    margin-top: 1rem;
  }
  .shindan-guide-merit-column__parts:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit__inner {
    height: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    border-radius: 0.75rem;
    background: #4e90e5;
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #4e90e5;
    color: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc__term {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc__term {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc__term__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 2.9375rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc__term__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 2.125rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc__term__label {
    display: inline-block;
    vertical-align: top;
    margin-left: 0.625rem;
    font-size: 1.5625rem;
    font-weight: 700;
  }
  .shindan-guide-merit-desc__term__label:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc__term__label {
    display: inline-block;
    vertical-align: top;
    margin-left: 0.625rem;
    font-size: 1.25rem;
    font-weight: 700;
  }
  .shindan-guide-merit-desc__term__label:first-child {
    margin-left: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc__defin {
    margin-top: 1.875rem;
  }
  .shindan-guide-merit-desc__defin:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc__defin {
    margin-top: 1rem;
  }
  .shindan-guide-merit-desc__defin:first-child {
    margin-top: 0;
  }
  .shindan-guide-merit-desc__defin:has(.shindan-guide-merit-desc-desc):has(.shindan-guide-merit-desc-desc__term) {
    margin-top: 0.375rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc-desc {
    position: relative;
    margin-top: 1.5rem;
  }
  .shindan-guide-merit-desc-desc:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc-desc {
    position: relative;
    margin-top: 1rem;
  }
  .shindan-guide-merit-desc-desc:first-child {
    margin-top: 0;
  }
  .shindan-guide-merit-desc-desc:has(.shindan-guide-merit-desc-desc__term) {
    padding-top: 0.8125rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc-desc__term {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate3d(-50%, -50%, 0);
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc-desc__term {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0.8125rem;
    transform: translate3d(-50%, -50%, 0);
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc-desc__term__label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.625rem;
    padding-left: 1.1875rem;
    padding-right: 1.1875rem;
    border-radius: 1.625rem;
    background: #084b9f;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc-desc__term__label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.625rem;
    padding-left: 1.1875rem;
    padding-right: 1.1875rem;
    border-radius: 1.625rem;
    background: #084b9f;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-desc-desc__defin__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.9375rem;
    padding-top: 1.0625rem;
    padding-bottom: 1.0625rem;
    padding-left: 1.0625rem;
    padding-right: 1.0625rem;
    border-radius: 0.75rem;
    background: #fff;
    color: #3e3a39;
  }
  .shindan-guide-merit-desc-desc__term + .shindan-guide-merit-desc-desc__defin .shindan-guide-merit-desc-desc__defin__inner {
    padding-top: 1.5rem;
    padding-bottom: 0.6875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-desc-desc__defin__inner {
    padding-top: 0.796875rem;
    padding-bottom: 0.796875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #fff;
    color: #3e3a39;
  }
  .shindan-guide-merit-desc-desc__term + .shindan-guide-merit-desc-desc__defin .shindan-guide-merit-desc-desc__defin__inner {
    padding-top: 1.609375rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-merit-txt {
    text-align: center;
    line-height: 1.5;
    font-size: 0.9375rem;
  }
  .shindan-guide-merit-txt em {
    font-weight: 700;
    color: #4e90e5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-merit-txt {
    text-align: center;
    line-height: 1.5;
    font-size: 0.9375rem;
  }
  .shindan-guide-merit-txt em {
    font-weight: 700;
    color: #4e90e5;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice {
    margin-top: 2.25rem;
  }
  .shindan-guide-voice:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice {
    margin-top: 1.875rem;
  }
  .shindan-guide-voice:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-column__parts {
    width: calc(0.5 * 100% - 0.9375 * 1rem);
    margin-left: 1.875rem;
  }
  .shindan-guide-voice-column__parts:nth-child(2n+1) {
    margin-left: 0;
  }
  .shindan-guide-voice-column__parts:nth-child(n+3) {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-column__parts {
    margin-top: 1rem;
  }
  .shindan-guide-voice-column__parts:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice__inner {
    position: relative;
    height: 100%;
    padding-top: 1.8125rem;
    padding-bottom: 1.3125rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0.75rem;
    background: #fff;
  }
  .shindan-guide-voice__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.125rem solid #4e90e5;
    border-radius: 0.75rem;
  }
  .shindan-guide-voice__inner > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice__inner {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #fff;
  }
  .shindan-guide-voice__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.125rem solid #4e90e5;
    border-radius: 0.75rem;
  }
  .shindan-guide-voice__inner > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-desc__term {
    position: relative;
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
  .shindan-guide-voice-desc__term::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 0.0625rem solid #4e90e5;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-desc__term {
    position: relative;
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
    padding-bottom: 0.625rem;
  }
  .shindan-guide-voice-desc__term::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 0.0625rem solid #4e90e5;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-desc__term__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .shindan-guide-voice-desc__term__inner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-top: 0.625rem solid #4e90e5;
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    transform: translate3d(-50%, 100%, 0);
    z-index: 1;
  }
  .shindan-guide-voice-desc__term__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-bottom: 0.0625rem;
    border-top: 0.625rem solid #fff;
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    transform: translate3d(-50%, 100%, 0);
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-desc__term__inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .shindan-guide-voice-desc__term__inner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-bottom: -0.625rem;
    border-top: 0.625rem solid #4e90e5;
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    transform: translate3d(-50%, 100%, 0);
    z-index: 1;
  }
  .shindan-guide-voice-desc__term__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-bottom: -0.5625rem;
    border-top: 0.625rem solid #fff;
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    transform: translate3d(-50%, 100%, 0);
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-desc__term__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 3.5rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-desc__term__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 3.5rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-desc__term__label {
    flex-grow: 1;
    display: inline-block;
    vertical-align: top;
    line-height: 1.2;
    font-size: 1.5625rem;
    font-weight: 700;
    color: #4e90e5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-desc__term__label {
    flex-grow: 1;
    display: inline-block;
    vertical-align: top;
    margin-left: 0.875rem;
    line-height: 1.2;
    font-size: 1.4375rem;
    font-weight: 700;
    color: #4e90e5;
  }
  .shindan-guide-voice-desc__term__label:first-child {
    margin-left: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-desc__defin {
    position: relative;
    margin-top: 0.375rem;
    padding-top: 0.625rem;
  }
  .shindan-guide-voice-desc__defin:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-desc__defin {
    position: relative;
    margin-top: 0.1875rem;
    padding-top: 0.625rem;
  }
  .shindan-guide-voice-desc__defin:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-voice-txt {
    line-height: 1.7;
    font-size: 0.9375rem;
  }
  .shindan-guide-voice-txt em {
    background: linear-gradient(transparent 64.7058823529%, #fff69a 64.7058823529%);
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-voice-txt {
    line-height: 1.7;
    font-size: 0.875rem;
  }
  .shindan-guide-voice-txt em {
    background: linear-gradient(transparent 62.1848739496%, #fff69a 62.1848739496%);
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv1 {
    margin-top: 3rem;
  }
  .shindan-guide-section--lv1:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv1 {
    margin-top: 2.5rem;
  }
  .shindan-guide-section--lv1:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv1__inner {
    max-width: 66.125rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    border-radius: 1.25rem;
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv1__inner {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv1-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv1-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.625rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-guide-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-guide-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv2 {
    margin-top: 3rem;
  }
  .shindan-guide-section--lv2:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv2 {
    margin-top: 2.5rem;
  }
  .shindan-guide-section--lv2:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv2-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv2-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv2-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv2-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.625rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-guide-section--lv2-body {
    margin-top: 1.5rem;
  }
  .shindan-guide-section--lv2-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-guide-section--lv2-body {
    margin-top: 1.5rem;
  }
  .shindan-guide-section--lv2-body:first-child {
    margin-top: 0;
  }
}

/* point */
@media all and (min-width: 751px) {
  .shindan-point {
    margin-top: 1.5rem;
  }
  .shindan-point:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point {
    margin-top: 0.75rem;
  }
  .shindan-point:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-point__inner {
    max-width: 43.75rem;
    margin: 0 auto;
    padding-top: 1.3125rem;
    padding-bottom: 1.75rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    border-radius: 0.75rem;
    text-align: center;
    background: #4e90e5;
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point__inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #4e90e5;
    color: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-list {
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-list__item {
    position: relative;
    padding-left: 2.1875rem;
    line-height: 1.8;
    font-size: 1.5rem;
  }
  .shindan-point-list__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.4375rem;
    height: 1.5rem;
    margin-top: 1.35rem;
    background: url("/assets/img/shindan/ico_point01.svg") no-repeat center center;
    background-size: contain;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-list__item {
    position: relative;
    margin-top: 0.1875rem;
    padding-left: 1.5625rem;
    line-height: 1.5;
    font-size: 1.125rem;
  }
  .shindan-point-list__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.0625rem;
    height: 1.125rem;
    margin-top: 0.84375rem;
    background: url("/assets/img/shindan/ico_point01.svg") no-repeat center center;
    background-size: contain;
    transform: translate3d(0, -50%, 0);
  }
  .shindan-point-list__item:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-txt {
    line-height: 1.8;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .shindan-point-txt em {
    font-weight: 700;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-txt {
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 500;
  }
  .shindan-point-txt em {
    font-weight: 700;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-btn {
    margin-top: 0.4375rem;
    text-align: center;
  }
  .shindan-point-btn:first-child {
    margin-top: 0;
  }
  .shindan-point-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
  .shindan-point-btn a .shindan-point-btn-body {
    transition: background 0.2s ease, color 0.2s ease;
  }
  .shindan-point-btn a:hover .shindan-point-btn-body {
    background: #fff;
    color: #4e90e5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-btn {
    margin-top: 1.125rem;
    text-align: center;
  }
  .shindan-point-btn:first-child {
    margin-top: 0;
  }
  .shindan-point-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.5rem;
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 2.5rem;
    background: #4e90e5;
    color: #fff;
  }
  .shindan-point-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #fff;
    border-radius: 2.5rem;
  }
  .shindan-point-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.5rem;
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 2.5rem;
    background: #4e90e5;
    color: #fff;
  }
  .shindan-point-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #fff;
    border-radius: 2.5rem;
  }
  .shindan-point-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-btn__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-btn__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    font-weight: 500;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail {
    margin-top: 1.5rem;
  }
  .shindan-point-detail:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail {
    margin-top: 0.75rem;
  }
  .shindan-point-detail:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-column__parts {
    width: calc(0.5 * 100% - 0.5625 * 1rem);
    margin-left: 1.125rem;
  }
  .shindan-point-detail-column__parts:nth-child(2n+1) {
    margin-left: 0;
  }
  .shindan-point-detail-column__parts:nth-child(n+3) {
    margin-top: 2.25rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-list__item {
    position: relative;
    padding-left: 1em;
    line-height: 1.8;
    font-size: 1.125rem;
  }
  .shindan-point-detail-list__item::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: top;
    width: 1em;
    color: #4e90e5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail-list__item {
    position: relative;
    padding-left: 1em;
    line-height: 1.8;
    font-size: 1rem;
  }
  .shindan-point-detail-list__item::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: top;
    width: 1em;
    color: #4e90e5;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-txt {
    line-height: 1.8;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail-txt {
    line-height: 1.8;
    font-size: 1rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-comment {
    padding-top: 0.75rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail-comment {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
  }
  .shindan-point-detail-comment:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-comment__inner {
    position: relative;
    padding-top: 0.84375rem;
    padding-bottom: 0.84375rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    border-radius: 0.3125rem;
    background: #f2f3f4;
  }
  .shindan-point-detail-comment__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -0.75rem;
    margin-left: 1.875rem;
    border-bottom: 0.875rem solid #f2f3f4;
    border-left: 0.9375rem solid transparent;
    border-right: 0.9375rem solid transparent;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail-comment__inner {
    position: relative;
    padding-top: 0.7875rem;
    padding-bottom: 0.7875rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    border-radius: 0.3125rem;
    background: #f2f3f4;
  }
  .shindan-point-detail-comment__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -0.75rem;
    margin-left: 1.375rem;
    border-bottom: 0.875rem solid #f2f3f4;
    border-left: 0.9375rem solid transparent;
    border-right: 0.9375rem solid transparent;
  }
}
@media all and (min-width: 751px) {
  .shindan-point-detail-comment-txt {
    line-height: 1.4;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-point-detail-comment-txt {
    line-height: 1.4;
    font-size: 0.8125rem;
  }
}

/* expenses */
@media all and (min-width: 751px) {
  .shindan-expenses {
    margin-top: 1.5rem;
  }
  .shindan-expenses:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses {
    margin-top: 0.75rem;
  }
  .shindan-expenses:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature {
    max-width: 51.625rem;
    margin: 0 auto;
    margin-top: 1.5rem;
  }
  .shindan-expenses-feature:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature {
    margin-top: 0.75rem;
  }
  .shindan-expenses-feature:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-list {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-list__item {
    width: 9.5625rem;
    margin-left: 1rem;
  }
  .shindan-expenses-feature-list__item:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-list__item {
    width: 9.5625rem;
    margin-left: 1rem;
  }
  .shindan-expenses-feature-list__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .shindan-expenses-feature-list__item:nth-child(n+3) {
    margin-top: 1rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-container {
    height: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-container {
    height: 100%;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-container__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-top: 2.25rem;
    padding-bottom: 0.75rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    border-radius: 0.75rem;
    background: #e9f4ff;
  }
  .shindan-expenses-feature-container__inner > * {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-container__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-top: 2.25rem;
    padding-bottom: 0.75rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    border-radius: 0.75rem;
    background: #e9f4ff;
  }
  .shindan-expenses-feature-container__inner > * {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-img {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-img {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-img__label {
    display: inline-block;
    vertical-align: top;
    width: 5.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-img__label {
    display: inline-block;
    vertical-align: top;
    width: 5.25rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-content {
    margin-top: 0.375rem;
  }
  .shindan-expenses-feature-content:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-content {
    margin-top: 0.375rem;
  }
  .shindan-expenses-feature-content:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-lead-txt {
    text-align: center;
    line-height: 1.4375;
    font-size: 1rem;
    font-weight: 500;
  }
  .shindan-expenses-feature-lead-txt:first-child {
    margin-top: 0;
  }
  .shindan-expenses-feature-lead-txt > span {
    font-size: 87.5%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-lead-txt {
    text-align: center;
    line-height: 1.4375;
    font-size: 1rem;
    font-weight: 500;
  }
  .shindan-expenses-feature-lead-txt:first-child {
    margin-top: 0;
  }
  .shindan-expenses-feature-lead-txt > span {
    font-size: 87.5%;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-note {
    margin-top: 0.75rem;
  }
  .shindan-expenses-feature-note:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-note {
    margin-top: 0.75rem;
  }
  .shindan-expenses-feature-note:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-note-txt {
    text-align: center;
    padding-left: 1.5em;
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 500;
    text-indent: -1.5em;
  }
  .shindan-expenses-feature-note-txt > * {
    text-indent: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-note-txt {
    text-align: center;
    padding-left: 1.5em;
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 500;
    text-indent: -1.5em;
  }
  .shindan-expenses-feature-note-txt > * {
    text-indent: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-feature-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-expenses-feature-note--num .shindan-expenses-feature-note__label {
    width: 2em;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-feature-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-expenses-feature-note--num .shindan-expenses-feature-note__label {
    width: 2em;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table {
    max-width: 51.625rem;
    margin: 0 auto;
    margin-top: 1.5rem;
  }
  .shindan-expenses-table:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table {
    margin-top: 0.75rem;
  }
  .shindan-expenses-table:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table-container {
    padding-bottom: 0.3125rem;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .shindan-expenses-section--lv1__inner .shindan-expenses-table-container {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
  .shindan-expenses-table-container > * {
    width: 46.4625rem;
  }
  .shindan-expenses-section--lv1__inner .shindan-expenses-table-container > * {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table-container__inner {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
  }
  .shindan-expenses-table-container__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #959595;
    border-radius: 0.75rem;
    overflow: hidden;
    pointer-events: none;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table-container__inner {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
  }
  .shindan-expenses-table-container__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #959595;
    border-radius: 0.75rem;
    overflow: hidden;
    pointer-events: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table-body {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table-body {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table__row {
    display: table-row;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table__row {
    display: table-row;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table__heading {
    display: table-cell;
    vertical-align: middle;
    padding: 0.5625em 0.75em;
    border: 0.0625rem solid #959595;
    background: #f1f2f4;
    text-align: left;
    white-space: nowrap;
  }
  .shindan-expenses-table__row:first-child .shindan-expenses-table__heading {
    text-align: center;
  }
  .shindan-expenses-table__row--walkthrough .shindan-expenses-table__heading {
    background: #e5f5fe;
  }
  .shindan-expenses-table__row--itshindan .shindan-expenses-table__heading {
    background: #fbfadc;
  }
  .shindan-expenses-table__row--accompaniment .shindan-expenses-table__heading {
    background: #e5fbe5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table__heading {
    display: table-cell;
    vertical-align: middle;
    padding: 0.50625rem 0.675rem;
    border: 0.0625rem solid #959595;
    background: #f1f2f4;
    text-align: left;
    white-space: nowrap;
  }
  .shindan-expenses-table__row:first-child .shindan-expenses-table__heading {
    text-align: center;
  }
  .shindan-expenses-table__row--walkthrough .shindan-expenses-table__heading {
    background: #e5f5fe;
  }
  .shindan-expenses-table__row--itshindan .shindan-expenses-table__heading {
    background: #fbfadc;
  }
  .shindan-expenses-table__row--accompaniment .shindan-expenses-table__heading {
    background: #e5fbe5;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table__heading__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table__heading__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 700;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-table__data {
    display: table-cell;
    vertical-align: middle;
    padding: 0.25em 0.75em;
    border: 0.0625rem solid #959595;
    background: #fff;
  }
  .shindan-expenses-table__row--walkthrough .shindan-expenses-table__data {
    background: #e5f5fe;
  }
  .shindan-expenses-table__row--itshindan .shindan-expenses-table__data {
    background: #fbfadc;
  }
  .shindan-expenses-table__row--accompaniment .shindan-expenses-table__data {
    background: #e5fbe5;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-table__data {
    display: table-cell;
    vertical-align: middle;
    padding: 0.225rem 0.675rem;
    border: 0.05625rem solid #959595;
    background: #fff;
  }
  .shindan-expenses-table__row--walkthrough .shindan-expenses-table__data {
    background: #e5f5fe;
  }
  .shindan-expenses-table__row--itshindan .shindan-expenses-table__data {
    background: #fbfadc;
  }
  .shindan-expenses-table__row--accompaniment .shindan-expenses-table__data {
    background: #e5fbe5;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-note {
    max-width: 50.625rem;
    margin: 0 auto;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-note-txt {
    padding-left: 1.5em;
    line-height: 1.8;
    font-size: 0.8125rem;
    text-indent: -1.5em;
  }
  .shindan-expenses-note-txt > * {
    text-indent: 0;
  }
  .shindan-expenses-note--num .shindan-expenses-note-txt {
    padding-left: 2em;
    text-indent: -2em;
  }
  .shindan-expenses-note--num .shindan-expenses-note-txt > * {
    text-indent: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-note-txt {
    padding-left: 1.5em;
    line-height: 1.8;
    font-size: 0.8125rem;
    text-indent: -1.5em;
  }
  .shindan-expenses-note-txt > * {
    text-indent: 0;
  }
  .shindan-expenses-note--num .shindan-expenses-note-txt {
    padding-left: 2em;
    text-indent: -2em;
  }
  .shindan-expenses-note--num .shindan-expenses-note-txt > * {
    text-indent: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-expenses-note--num .shindan-expenses-note__label {
    width: 2em;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-expenses-note--num .shindan-expenses-note__label {
    width: 2em;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-case {
    margin-top: 1.5rem;
  }
  .shindan-expenses-case:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-case {
    margin-top: 0.75rem;
  }
  .shindan-expenses-case:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-case-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-case-column__parts {
    margin-left: 1.625rem;
  }
  .shindan-expenses-case-column__parts:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-case-column__parts {
    margin-top: 1.5rem;
  }
  .shindan-expenses-case-column__parts:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-case-img {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-case-img {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-case-img__label {
    display: inline-block;
    vertical-align: top;
  }
  .shindan-expenses-case-img--01 .shindan-expenses-case-img__label {
    width: 12.75rem;
  }
  .shindan-expenses-case-img--02 .shindan-expenses-case-img__label {
    width: 13.1875rem;
  }
  .shindan-expenses-case-img--03 .shindan-expenses-case-img__label {
    width: 13.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-case-img__label {
    display: inline-block;
    vertical-align: top;
  }
  .shindan-expenses-case-img--01 .shindan-expenses-case-img__label {
    width: 12.75rem;
  }
  .shindan-expenses-case-img--02 .shindan-expenses-case-img__label {
    width: 13.1875rem;
  }
  .shindan-expenses-case-img--03 .shindan-expenses-case-img__label {
    width: 13.1875rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv1 {
    margin-top: 3rem;
  }
  .shindan-expenses-section--lv1:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv1 {
    margin-top: 2.5rem;
  }
  .shindan-expenses-section--lv1:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv1-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv1-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.625rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-expenses-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-expenses-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv2 {
    margin-top: 3rem;
  }
  .shindan-expenses-section--lv2:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv2 {
    margin-top: 2.5rem;
  }
  .shindan-expenses-section--lv2:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv2__inner {
    max-width: 57rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    border-radius: 1.25rem;
    background: #f1f2f4;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv2__inner {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #f8f8f9;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv2-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv2-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv2-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv2-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.625rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-expenses-section--lv2-body {
    margin-top: 1.5rem;
  }
  .shindan-expenses-section--lv2-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-expenses-section--lv2-body {
    margin-top: 1.5rem;
  }
  .shindan-expenses-section--lv2-body:first-child {
    margin-top: 0;
  }
}

/* flow */
@media all and (min-width: 751px) {
  .shindan-flow {
    margin-top: 2.25rem;
  }
  .shindan-flow:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow {
    margin-top: 1.875rem;
  }
  .shindan-flow:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature {
    max-width: 56.875rem;
    margin: 0 auto;
    margin-top: 2.25rem;
  }
  .shindan-flow-feature:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature {
    margin-top: 1.875rem;
  }
  .shindan-flow-feature:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-list__item {
    margin-top: 1.75rem;
  }
  .shindan-flow-feature-list__item:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-list__item {
    position: relative;
    margin-top: 0.5625rem;
    padding-top: 1.25rem;
  }
  .shindan-flow-feature-list__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2.25rem;
    height: 0.75rem;
    background: url("/assets/img/shindan/ico_arw_flow_feature01.svg") no-repeat center center;
    background-size: contain;
    transform: translate3d(-50%, 0, 0);
  }
  .shindan-flow-feature-list__item:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .shindan-flow-feature-list__item:first-child::before {
    content: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-desc {
    border-radius: 0.75rem;
    overflow: hidden;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-desc__term {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 13.25rem;
    height: 4.375rem;
    border-radius: 0.75rem;
    background: #4e90e5;
    text-align: center;
    color: #fff;
  }
  .shindan-flow-feature-desc__term::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2.25rem;
    height: 0.75rem;
    margin-top: -0.875rem;
    background: url("/assets/img/shindan/ico_arw_flow_feature01.svg") no-repeat center center;
    background-size: contain;
    transform: translate3d(-50%, -50%, 0);
  }
  .shindan-flow-feature-list__item:first-child .shindan-flow-feature-desc__term::before {
    content: none;
  }
  .shindan-flow-feature-list__item:nth-child(2) .shindan-flow-feature-desc__term {
    background: #4e90e5;
  }
  .shindan-flow-feature-list__item:nth-child(3) .shindan-flow-feature-desc__term {
    background: #4587dc;
  }
  .shindan-flow-feature-list__item:nth-child(4) .shindan-flow-feature-desc__term {
    background: #3d7ed4;
  }
  .shindan-flow-feature-list__item:nth-child(5) .shindan-flow-feature-desc__term {
    background: #3476cb;
  }
  .shindan-flow-feature-list__item:nth-child(6) .shindan-flow-feature-desc__term {
    background: #2b6ec2;
  }
  .shindan-flow-feature-list__item:nth-child(7) .shindan-flow-feature-desc__term {
    background: #1154a8;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-desc__term {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.00625rem;
    padding-bottom: 1.00625rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    background: #4e90e5;
    text-align: center;
    color: #fff;
  }
  .shindan-flow-feature-list__item:nth-child(2) .shindan-flow-feature-desc__term {
    background: #4e90e5;
  }
  .shindan-flow-feature-list__item:nth-child(3) .shindan-flow-feature-desc__term {
    background: #4587dc;
  }
  .shindan-flow-feature-list__item:nth-child(4) .shindan-flow-feature-desc__term {
    background: #3d7ed4;
  }
  .shindan-flow-feature-list__item:nth-child(5) .shindan-flow-feature-desc__term {
    background: #3476cb;
  }
  .shindan-flow-feature-list__item:nth-child(6) .shindan-flow-feature-desc__term {
    background: #2b6ec2;
  }
  .shindan-flow-feature-list__item:nth-child(7) .shindan-flow-feature-desc__term {
    background: #1154a8;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-desc__term__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.3;
    font-size: 1.0625rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-desc__term__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: 700;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-desc__defin {
    flex-grow: 1;
    margin-left: 0.625rem;
  }
  .shindan-flow-feature-desc__defin:first-child {
    margin-left: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-container__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.375rem;
    margin-left: 0.9375rem;
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 0.75rem;
    background: #fff;
  }
  .shindan-flow-feature-container__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1rem;
    height: 1.375rem;
    margin-left: 0.125rem;
    background: url("/assets/img/shindan/ico_arw_flow_feature02.svg") no-repeat center center;
    background-size: contain;
    transform: translate3d(-100%, -50%, 0);
  }
  .shindan-flow-feature-container__inner > * {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-container__inner {
    padding-top: 0.78125rem;
    padding-bottom: 0.78125rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    background: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-txt {
    margin-top: 1.5em;
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .shindan-flow-feature-txt:first-child {
    margin-top: 0;
  }
  .shindan-flow-feature-txt a {
    color: #1d74e3;
  }
  .shindan-flow-feature-txt a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-txt {
    margin-top: 1.5em;
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .shindan-flow-feature-txt:first-child {
    margin-top: 0;
  }
  .shindan-flow-feature-txt a {
    color: #1d74e3;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-note-txt {
    padding-left: 1.5em;
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 500;
    text-indent: -1.5em;
  }
  .shindan-flow-feature-note-txt > * {
    text-indent: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-note-txt {
    padding-left: 1.5em;
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 500;
    text-indent: -1.5em;
  }
  .shindan-flow-feature-note-txt > * {
    text-indent: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-flow-feature-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-flow-note--num .shindan-flow-feature-note__label {
    width: 2em;
  }
}
@media screen and (max-width: 750px) {
  .shindan-flow-feature-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1.5em;
  }
  .shindan-flow-note--num .shindan-flow-feature-note__label {
    width: 2em;
  }
}

/* download */
@media all and (min-width: 751px) {
  .shindan-download {
    margin-top: 2.5rem;
  }
  .shindan-download:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download {
    margin-top: 2rem;
  }
  .shindan-download:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-section--lv1 {
    margin-top: 2.5rem;
  }
  .shindan-download-section--lv1:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-section--lv1 {
    margin-top: 2rem;
  }
  .shindan-download-section--lv1:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-section--lv1__inner {
    position: relative;
    max-width: 38.5rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    padding-left: 4.125rem;
    padding-right: 4.125rem;
    border-radius: 0.75rem;
    background: #fff;
  }
  .shindan-download-section--lv1__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.1875rem solid #3d7fd4;
    border-radius: 0.75rem;
  }
  .shindan-download-section--lv1__inner > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-section--lv1__inner {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 0.75rem;
    background: #fff;
  }
  .shindan-download-section--lv1__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.1875rem solid #3d7fd4;
    border-radius: 0.75rem;
  }
  .shindan-download-section--lv1__inner > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-section--lv1-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-section--lv1-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.375rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-section--lv1-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.375rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-download-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-section--lv1-body {
    margin-top: 1.5rem;
  }
  .shindan-download-section--lv1-body:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn {
    margin-top: 0.75rem;
    text-align: center;
  }
  .shindan-download-btn:first-child {
    margin-top: 0;
  }
  .shindan-download-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
  .shindan-download-btn a .shindan-download-btn-body {
    transition: background 0.2s ease, color 0.2s ease;
  }
  .shindan-download-btn a .shindan-download-btn__ico svg {
    transition: fill 0.2s ease;
  }
  .shindan-download-btn a:hover .shindan-download-btn-body {
    background: #fff;
    color: #084b9f;
  }
  .shindan-download-btn a:hover .shindan-download-btn__ico svg {
    fill: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-btn {
    margin-top: 0.75rem;
    text-align: center;
  }
  .shindan-download-btn:first-child {
    margin-top: 0;
  }
  .shindan-download-btn a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn-list__item {
    width: calc(0.5 * 100% - 0.75 * 1rem);
    margin-left: 1.5rem;
  }
  .shindan-download-btn-list__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .shindan-download-btn-list__item:nth-child(n+3) {
    margin-top: 1.5rem;
  }
  .shindan-download-btn-list__item a {
    max-width: 14.375rem;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-btn-list__item {
    margin-top: 1.5rem;
  }
  .shindan-download-btn-list__item:first-child {
    margin-top: 0;
  }
  .shindan-download-btn-list__item a {
    max-width: 14.375rem;
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 14.375rem;
    width: 100%;
    height: 3.125rem;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    border-radius: 3.125rem;
    background: #084b9f;
    color: #fff;
  }
  .shindan-download-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #084b9f;
    border-radius: 3.125rem;
  }
  .shindan-download-btn-list__item .shindan-download-btn-body {
    width: 100%;
  }
  .shindan-download-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-btn-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14.375rem;
    height: 3.125rem;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    border-radius: 3.125rem;
    background: #084b9f;
    color: #fff;
  }
  .shindan-download-btn-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid #084b9f;
    border-radius: 3.125rem;
  }
  .shindan-download-btn-list__item .shindan-download-btn-body {
    width: 100%;
  }
  .shindan-download-btn-body > * {
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn__label {
    display: inline-block;
    vertical-align: top;
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-btn__label {
    display: inline-block;
    vertical-align: top;
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 700;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-btn__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 0.9375rem;
    height: 1rem;
    margin-bottom: 0.25rem;
  }
  .shindan-download-btn__ico svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-btn__ico {
    display: inline-block;
    vertical-align: top;
    flex-shrink: 0;
    width: 0.9375rem;
    height: 1rem;
    margin-bottom: 0.25rem;
  }
  .shindan-download-btn__ico svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-lead {
    margin-top: 0.75rem;
  }
  .shindan-download-lead:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-lead {
    margin-top: 2rem;
  }
  .shindan-download-lead:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-lead-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 1.375rem;
    font-weight: 700;
    color: #084b9f;
  }
  .shindan-download-lead-txt em {
    color: #e26d00;
  }
  .shindan-download-lead-txt em span {
    font-size: 145.4545454545%;
  }
  .shindan-download-lead-txt > span:not(.u-hide-sp) {
    display: inline-block;
    vertical-align: top;
    line-height: 1.4666666667;
    font-size: 68.1818181818%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-lead-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 1.375rem;
    font-weight: 700;
    color: #084b9f;
  }
  .shindan-download-lead-txt em {
    color: #e26d00;
  }
  .shindan-download-lead-txt em span {
    font-size: 145.4545454545%;
  }
  .shindan-download-lead-txt > span:not(.u-hide-sp) {
    display: inline-block;
    vertical-align: top;
    line-height: 1.4666666667;
    font-size: 68.1818181818%;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment {
    margin-top: 0.5625rem;
  }
  .shindan-download-comment:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment {
    margin-top: 0.5625rem;
  }
  .shindan-download-comment:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment__inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.6875rem;
    padding-right: 1.6875rem;
    border-radius: 0.75rem;
    background: #f4f4f4;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment__inner {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 0.75rem;
    background: #f4f4f4;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment-desc__term {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment-desc__term {
    flex-shrink: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment-desc__term__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.8;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment-desc__term__label {
    display: inline-block;
    vertical-align: top;
    line-height: 1.8;
    font-size: 0.875rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment-desc__defin {
    flex-grow: 1;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment-desc__defin {
    flex-grow: 1;
  }
}
@media all and (min-width: 751px) {
  .shindan-download-comment-txt {
    line-height: 1.8;
    font-size: 0.9375rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 750px) {
  .shindan-download-comment-txt {
    line-height: 1.8;
    font-size: 0.875rem;
    font-weight: 500;
  }
}

/* inquiry */
@media all and (min-width: 751px) {
  .shindan-inquiry {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: #fcf3e8;
  }
}
@media screen and (max-width: 750px) {
  .shindan-inquiry {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    background: #fcf3e8;
  }
}
@media all and (min-width: 751px) {
  .shindan-inquiry__inner {
    width: clamp(20rem, 100%, 71.25rem);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-inquiry__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* contact */
@media all and (min-width: 751px) {
  .shindan-contact-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: #e9f4ff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #e9f4ff;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-section__inner {
    width: clamp(20rem, 100%, 71.25rem);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-section__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-section-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-section-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-section-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-section-heading__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.5rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-section-body {
    margin-top: 1.125rem;
  }
  .shindan-contact-section-body:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-section-body {
    margin-top: 0.9375rem;
  }
  .shindan-contact-section-body:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-desc__term {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-desc__term {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-desc__term__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-desc__term__label {
    display: inline-block;
    vertical-align: top;
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-feature-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-feature-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-feature-phone-img {
    flex-shrink: 0;
    padding-top: 0.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-feature-phone-img {
    flex-shrink: 0;
    padding-top: 0.1875rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-feature-phone-img__ico {
    display: inline-block;
    vertical-align: top;
    width: 1.75rem;
    height: 1.75rem;
  }
  .shindan-contact-feature-phone-img__ico svg {
    width: 100%;
    height: 100%;
    fill: #084b9f;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-feature-phone-img__ico {
    display: inline-block;
    vertical-align: top;
    width: 1.75rem;
    height: 1.75rem;
  }
  .shindan-contact-feature-phone-img__ico svg {
    width: 100%;
    height: 100%;
    fill: #084b9f;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-feature-phone-content {
    margin-left: 0.8125rem;
  }
  .shindan-contact-feature-phone-content:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-feature-phone-content {
    margin-left: 0.8125rem;
  }
  .shindan-contact-feature-phone-content:first-child {
    margin-left: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-feature-phone-txt {
    line-height: 1.1764705882;
    font-size: 2.125rem;
    font-weight: 700;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-feature-phone-txt {
    line-height: 1.1764705882;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
    white-space: nowrap;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-comment {
    margin-top: 0.5rem;
  }
  .shindan-contact-comment:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-comment {
    margin-top: 0.5rem;
  }
  .shindan-contact-comment:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-comment-txt {
    text-align: center;
    line-height: 2.1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #084b9f;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-comment-txt {
    text-align: center;
    line-height: 2.1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #084b9f;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-comment-note {
    margin-top: 0.5rem;
  }
  .shindan-contact-comment-note:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-comment-note {
    margin-top: 0.5rem;
  }
  .shindan-contact-comment-note:first-child {
    margin-top: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-comment-note-txt {
    padding-left: 1em;
    text-align: center;
    line-height: 1.8;
    font-size: 0.75rem;
    text-indent: -1em;
  }
  .shindan-contact-comment-note-txt > * {
    text-indent: 0;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-comment-note-txt {
    padding-left: 1em;
    text-align: center;
    line-height: 1.8;
    font-size: 0.75rem;
    text-indent: -1em;
  }
  .shindan-contact-comment-note-txt > * {
    text-indent: 0;
  }
}
@media all and (min-width: 751px) {
  .shindan-contact-comment-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1em;
  }
}
@media screen and (max-width: 750px) {
  .shindan-contact-comment-note__label {
    display: inline-block;
    vertical-align: top;
    width: 1em;
  }
}

/* section */
@media all and (min-width: 751px) {
  .shindan-section--lv1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .shindan-section--lv1:last-child {
    padding-bottom: 6rem;
  }
  .shindan-section--lv1.shindan-section--bg {
    background: #e9f4ff;
  }
}
@media screen and (max-width: 750px) {
  .shindan-section--lv1 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .shindan-section--lv1:last-child {
    padding-bottom: 3.75rem;
  }
  .shindan-section--lv1.shindan-section--bg {
    background: #e9f4ff;
  }
}
@media all and (min-width: 751px) {
  .shindan-section--lv1__inner {
    width: clamp(20rem, 100%, 71.25rem);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-section--lv1__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media all and (min-width: 751px) {
  .shindan-section--lv1-heading {
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .shindan-section--lv1-heading {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .shindan-section--lv1-heading__label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #084b9f;
  }
  .shindan-section--lv1-heading__label::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3.75rem;
    border-top: 0.25rem solid #084b9f;
    transform: translate3d(-50%, 0, 0);
  }
  .shindan-section--lv1-heading__label > span {
    font-size: 80%;
  }
}
@media screen and (max-width: 750px) {
  .shindan-section--lv1-heading__label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 1.125rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #084b9f;
  }
  .shindan-section--lv1-heading__label::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1.75rem;
    border-top: 0.1875rem solid #084b9f;
    transform: translate3d(-50%, 0, 0);
  }
  .shindan-section--lv1-heading__label > span {
    font-size: 80%;
  }
}
@media all and (min-width: 751px) {
  .shindan-section--lv1-body {
    margin-top: 3.75rem;
  }
  .shindan-section--lv1-body:first-child {
    margin-top: 0;
  }
  .shindan-section--lv1-body + .shindan-section--lv1-body {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 750px) {
  .shindan-section--lv1-body {
    margin-top: 2.625rem;
  }
  .shindan-section--lv1-body:first-child {
    margin-top: 0;
  }
  .shindan-section--lv1-body + .shindan-section--lv1-body {
    margin-top: 3.75rem;
  }
}

/* btn */
@media all and (min-width: 751px) {
  .shindan-btn a .shindan-btn-body {
    transform: translate3d(0, 0, 0);
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .shindan-btn a:hover .shindan-btn-body {
    background: #f08400;
    color: #fff;
    filter: drop-shadow(0 0 #B56300);
    transform: translate3d(0.125rem, 0.3125rem, 0);
  }
  .shindan-btn a:hover .shindan-btn__ico svg {
    fill: #fff;
  }
}
@media all and (min-width: 751px) {
  .shindan-btn-body {
    background: #f08400;
    filter: drop-shadow(0.125rem 0.3125rem #B56300);
  }
  .shindan-btn-body::before {
    border: 0.0625rem solid #f08400;
  }
}
@media screen and (max-width: 750px) {
  .shindan-btn-body {
    background: #f08400;
    filter: drop-shadow(0.125rem 0.3125rem #B56300);
  }
  .shindan-btn-body::before {
    border: 0.0625rem solid #f08400;
  }
}
@media screen and (max-width: 750px) {
  .shindan-btn__label {
    font-size: 1.0625rem;
  }
}
