@charset "UTF-8";
/*** The new CSS reset - version 1.11.1 (last updated 24.10.2023) ***/
*:where(:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(audio):not(svg*):not(symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu,
summary {
  list-style: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  word-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  position: relative;
}
html:has(.header__menu.is-open), html:has(.is-modal-open) {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  html:has(#sidemenu.is-open) {
    overflow: hidden;
  }
}

body {
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  color: #413C3A;
  line-height: 1.75;
  background-color: #fff;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1240px;
  }
}
body {
  position: relative;
}

main {
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 120px;
  }
}

.container {
  margin: 0 auto;
}

.section {
  padding: 2rem 0;
}

a {
  color: #413C3A;
  text-decoration: none;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  color: #413C3A;
  cursor: pointer;
}

small {
  font-size: 0.85em;
}

p {
  margin: 0.5em 0;
}

:disabled,
.is-disabled {
  opacity: 0.5;
  pointer-events: none; /* クリックイベントを無効化 */
  cursor: not-allowed;
}

/* layout/_grid.scss（カード一覧などで使用） */
.l-grid {
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .l-grid {
    gap: 40px;
  }
}
.l-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.l-grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .l-grid--2cols {
    grid-template-columns: 1fr;
  }
}
.l-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .l-grid--3cols {
    grid-template-columns: 1fr;
  }
}
.l-grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 767px) {
  .l-grid--4cols {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .l-grid--2cols-sp {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-grid--gap-s {
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .l-grid--gap-s {
    gap: 20px;
  }
}
.l-grid--gap-l {
  gap: 30px;
}
@media print, screen and (min-width: 768px) {
  .l-grid--gap-l {
    gap: 60px;
  }
}
.l-grid--gap-none {
  gap: 0;
}

.l-grid-item--span-2 {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .l-grid-item--span-2 {
    grid-column: span 1;
  }
}
.l-grid-item--span-3 {
  grid-column: span 3;
}
@media only screen and (max-width: 767px) {
  .l-grid-item--span-3 {
    grid-column: span 1;
  }
}
.l-grid-item--span-full {
  grid-column: 1/-1;
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: -20px;
}
@media print, screen and (min-width: 768px) {
  .l-row {
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: -40px;
  }
}
.l-row-reverse {
  flex-direction: row-reverse;
}
@media print, screen and (min-width: 768px) {
  .l-row-reverse-pc {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .l-row-reverse-sp {
    flex-direction: row-reverse;
  }
}

[class*=l-col] {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  [class*=l-col] {
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .l-col-sp-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .l-col-sp-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-col-sp-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .l-col-sp-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-col-sp-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .l-col-sp-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .l-col-sp-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .l-col-sp-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-col-sp-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .l-col-sp-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-col-sp-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .l-col-sp-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .l-col-sp-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .l-col-sp {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .l-offset-sp-0 {
    margin-left: 0%;
  }
  .l-offset-sp-1 {
    margin-left: 8.3333333333%;
  }
  .l-offset-sp-2 {
    margin-left: 16.6666666667%;
  }
  .l-offset-sp-3 {
    margin-left: 25%;
  }
  .l-offset-sp-4 {
    margin-left: 33.3333333333%;
  }
  .l-offset-sp-5 {
    margin-left: 41.6666666667%;
  }
  .l-offset-sp-6 {
    margin-left: 50%;
  }
  .l-offset-sp-7 {
    margin-left: 58.3333333333%;
  }
  .l-offset-sp-8 {
    margin-left: 66.6666666667%;
  }
  .l-offset-sp-9 {
    margin-left: 75%;
  }
  .l-offset-sp-10 {
    margin-left: 83.3333333333%;
  }
  .l-offset-sp-11 {
    margin-left: 91.6666666667%;
  }
  .l-order-sp-0 {
    order: 0;
  }
  .l-order-sp-1 {
    order: 1;
  }
  .l-order-sp-2 {
    order: 2;
  }
  .l-order-sp-3 {
    order: 3;
  }
  .l-order-sp-4 {
    order: 4;
  }
  .l-order-sp-5 {
    order: 5;
  }
  .l-order-sp-6 {
    order: 6;
  }
  .l-order-sp-7 {
    order: 7;
  }
  .l-order-sp-8 {
    order: 8;
  }
  .l-order-sp-9 {
    order: 9;
  }
  .l-order-sp-10 {
    order: 10;
  }
  .l-order-sp-11 {
    order: 11;
  }
  .l-order-sp-12 {
    order: 12;
  }
}
@media print, screen and (min-width: 768px) {
  .l-col-pc-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .l-col-pc-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-col-pc-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .l-col-pc-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-col-pc-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .l-col-pc-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .l-col-pc-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .l-col-pc-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-col-pc-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .l-col-pc-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-col-pc-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .l-col-pc-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .l-col-pc-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .l-col-pc {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .l-offset-pc-0 {
    margin-left: 0%;
  }
  .l-offset-pc-1 {
    margin-left: 8.3333333333%;
  }
  .l-offset-pc-2 {
    margin-left: 16.6666666667%;
  }
  .l-offset-pc-3 {
    margin-left: 25%;
  }
  .l-offset-pc-4 {
    margin-left: 33.3333333333%;
  }
  .l-offset-pc-5 {
    margin-left: 41.6666666667%;
  }
  .l-offset-pc-6 {
    margin-left: 50%;
  }
  .l-offset-pc-7 {
    margin-left: 58.3333333333%;
  }
  .l-offset-pc-8 {
    margin-left: 66.6666666667%;
  }
  .l-offset-pc-9 {
    margin-left: 75%;
  }
  .l-offset-pc-10 {
    margin-left: 83.3333333333%;
  }
  .l-offset-pc-11 {
    margin-left: 91.6666666667%;
  }
  .l-order-pc-0 {
    order: 0;
  }
  .l-order-pc-1 {
    order: 1;
  }
  .l-order-pc-2 {
    order: 2;
  }
  .l-order-pc-3 {
    order: 3;
  }
  .l-order-pc-4 {
    order: 4;
  }
  .l-order-pc-5 {
    order: 5;
  }
  .l-order-pc-6 {
    order: 6;
  }
  .l-order-pc-7 {
    order: 7;
  }
  .l-order-pc-8 {
    order: 8;
  }
  .l-order-pc-9 {
    order: 9;
  }
  .l-order-pc-10 {
    order: 10;
  }
  .l-order-pc-11 {
    order: 11;
  }
  .l-order-pc-12 {
    order: 12;
  }
}
.l-col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.l-col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.l-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.l-col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.l-col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.l-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.l-col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.l-col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.l-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.l-col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.l-col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.l-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.l-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.l-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.l-offset-0 {
  margin-left: 0%;
}

.l-offset-1 {
  margin-left: 8.3333333333%;
}

.l-offset-2 {
  margin-left: 16.6666666667%;
}

.l-offset-3 {
  margin-left: 25%;
}

.l-offset-4 {
  margin-left: 33.3333333333%;
}

.l-offset-5 {
  margin-left: 41.6666666667%;
}

.l-offset-6 {
  margin-left: 50%;
}

.l-offset-7 {
  margin-left: 58.3333333333%;
}

.l-offset-8 {
  margin-left: 66.6666666667%;
}

.l-offset-9 {
  margin-left: 75%;
}

.l-offset-10 {
  margin-left: 83.3333333333%;
}

.l-offset-11 {
  margin-left: 91.6666666667%;
}

.l-order-first {
  order: -1;
}

.l-order-last {
  order: 13;
}

.l-order-0 {
  order: 0;
}

.l-order-1 {
  order: 1;
}

.l-order-2 {
  order: 2;
}

.l-order-3 {
  order: 3;
}

.l-order-4 {
  order: 4;
}

.l-order-5 {
  order: 5;
}

.l-order-6 {
  order: 6;
}

.l-order-7 {
  order: 7;
}

.l-order-8 {
  order: 8;
}

.l-order-9 {
  order: 9;
}

.l-order-10 {
  order: 10;
}

.l-order-11 {
  order: 11;
}

.l-order-12 {
  order: 12;
}

.l-row.no-gutters {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.l-row.no-gutters > [class*=l-col] {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.l-row.justify-start {
  justify-content: flex-start;
}
.l-row.justify-center {
  justify-content: center;
}
.l-row.justify-end {
  justify-content: flex-end;
}
.l-row.justify-between {
  justify-content: space-between;
}
.l-row.justify-around {
  justify-content: space-around;
}
.l-row.align-start {
  align-items: flex-start;
}
.l-row.align-center {
  align-items: center;
}
.l-row.align-end {
  align-items: flex-end;
}
.l-row.align-stretch {
  align-items: stretch;
}

section.c-sec {
  margin-top: 100px;
}
@media print, screen and (min-width: 768px) {
  section.c-sec {
    margin-top: 130px;
  }
}

.c-area {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-area {
    width: 1240px;
    margin-right: auto;
    margin-left: auto;
  }
}
.c-area + .c-area {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .c-area + .c-area {
    margin-top: 60px;
  }
}

.c-topicpath {
  padding: 10px 20px;
  border-bottom: 2px solid #F5F4F0;
}
.c-topicpath ul {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .c-topicpath ul {
    margin: 0 auto;
    width: 1240px;
    padding: 0 20px;
  }
}
.c-topicpath ul li {
  position: relative;
  display: flex;
  align-items: center;
}
.c-topicpath ul li:not(:first-of-type) {
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-topicpath ul li:not(:first-of-type) {
    padding-left: 24px;
  }
}
.c-topicpath ul li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 9999px;
  background-color: #413C3A;
  left: 8px;
  top: 12px;
}
@media print, screen and (min-width: 768px) {
  .c-topicpath ul li:not(:first-of-type)::before {
    left: 10px;
  }
}
.c-topicpath ul li a {
  opacity: 0.4;
}
.c-topicpath ul li h1,
.c-topicpath ul li span {
  font-size: 1.4rem !important;
}
@media print, screen and (min-width: 768px) {
  .c-topicpath ul li h1,
  .c-topicpath ul li span {
    font-size: 1.5rem !important;
  }
}
.c-topicpath ul li h1,
.c-topicpath ul li span {
  font-weight: 500;
}

.link--line {
  text-decoration: none !important;
  vertical-align: bottom;
}
.link--line:has(.link--line__icon) {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.link--line.icon--top:has(.link--line__icon) {
  align-items: start;
}
.link--line.icon--top:has(.link--line__icon) .link--line__icon {
  margin-top: 0.5em;
}
.link--line.icon--pdf {
  display: inline-flex;
  gap: 0.5em;
}
.link--line.icon--pdf .link--line__icon {
  flex-shrink: 0;
  margin-top: 0.25em;
  width: 1.2em;
  height: 1.2em;
  background: url("/echishin/assets/images/common/ic_link_pdf.svg") center/contain no-repeat;
}
.link--line.icon--next {
  display: inline-flex;
  gap: 0.5em;
}
.link--line.icon--next .link--line__icon {
  flex-shrink: 0;
  margin-top: 0.25em;
  width: 0.8em;
  height: 0.8em;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_right.svg") center/contain no-repeat;
}
.link--line__outer {
  display: inline-block;
}
.link--line__text {
  display: inline;
  vertical-align: bottom;
  backface-visibility: hidden;
  background-image: linear-gradient(90deg, currentcolor, currentcolor);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}
@media print, screen and (min-width: 768px) {
  a:hover .link--line__text, button:hover .link--line__text {
    background-size: 0% 1px;
    transition-duration: 0.5s;
    transition-property: background-size;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@media print, screen and (min-width: 768px) {
  a:hover .link--line__text > .link--line__text__underline, button:hover .link--line__text > .link--line__text__underline {
    transition-delay: 0.5s;
  }
}

.link--line__text__underline {
  display: inline;
  vertical-align: bottom;
  backface-visibility: hidden;
  background-image: linear-gradient(90deg, currentcolor, currentcolor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
}
@media print, screen and (min-width: 768px) {
  a:hover .link--line__text__underline, button:hover .link--line__text__underline {
    transition-duration: 0.5s;
    transition-property: background-size;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    background-size: 100% 1px;
  }
}

.link--line__icon--pdf {
  flex-shrink: 0;
  margin-top: 0.25em;
  width: 1.2em;
  height: 1.2em;
  background: url("/echishin/assets/images/common/ic_link_pdf.svg") center/contain no-repeat;
}

:root {
  --scroll-grad-color: #eee;
}

.color-primary {
  color: #E60012;
}

.u-rounded {
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .u-rounded {
    border-radius: 12px;
  }
}

.u-fs--xs {
  font-size: 0.8em !important;
}
.u-fs--s {
  font-size: 0.9em !important;
}
.u-fs--l {
  font-size: 1.1111111111em !important;
}
.u-fs--xl {
  font-size: 1.25em !important;
}

.u-fw--regular {
  font-weight: 400 !important;
}
.u-fw--medium {
  font-weight: 500 !important;
}
.u-fw--bold {
  font-weight: 700 !important;
}

.u-ta--start {
  text-align: start !important;
}
@media only screen and (max-width: 767px) {
  .u-ta--start-sp {
    text-align: start !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ta--start-pc {
    text-align: start !important;
  }
}
.u-ta--center {
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  .u-ta--center-sp {
    text-align: center !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ta--center-pc {
    text-align: center !important;
  }
}
.u-ta--end {
  text-align: end !important;
}
@media only screen and (max-width: 767px) {
  .u-ta--end-sp {
    text-align: end !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ta--end-pc {
    text-align: end !important;
  }
}

.u-w--25 {
  width: 25%;
}
.u-w--50 {
  width: 50%;
}
.u-w--75 {
  width: 75%;
}
.u-w--100 {
  width: 100%;
}
.u-w--0px {
  width: 0px !important;
}
.u-w--50px {
  width: 50px !important;
}
.u-w--100px {
  width: 100px !important;
}
.u-w--150px {
  width: 150px !important;
}
.u-w--200px {
  width: 200px !important;
}
.u-w--250px {
  width: 250px !important;
}
.u-w--300px {
  width: 300px !important;
}
.u-w--350px {
  width: 350px !important;
}
.u-w--400px {
  width: 400px !important;
}
.u-w--450px {
  width: 450px !important;
}
.u-w--500px {
  width: 500px !important;
}

.u-flex {
  display: flex !important;
}
.u-flex--center {
  justify-content: center !important;
  align-items: center !important;
}

.u-fd--column {
  flex-direction: column !important;
}
@media only screen and (max-width: 767px) {
  .u-fd--column-sp {
    flex-direction: column !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-fd--column-pc {
    flex-direction: column !important;
  }
}
.u-fd--column-r {
  flex-direction: column-reverse !important;
}
@media only screen and (max-width: 767px) {
  .u-fd--column-r-sp {
    flex-direction: column-reverse !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-fd--column-r-pc {
    flex-direction: column-reverse !important;
  }
}
.u-fd--row {
  flex-direction: row !important;
}
@media only screen and (max-width: 767px) {
  .u-fd--row-sp {
    flex-direction: row !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-fd--row-pc {
    flex-direction: row !important;
  }
}
.u-fd--row-r {
  flex-direction: row-reverse !important;
}
@media only screen and (max-width: 767px) {
  .u-fd--row-r-sp {
    flex-direction: row-reverse !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-fd--row-r-pc {
    flex-direction: row-reverse !important;
  }
}

.u-jc--center {
  justify-content: center !important;
}
@media only screen and (max-width: 767px) {
  .u-jc--center-sp {
    justify-content: center !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-jc--center-pc {
    justify-content: center !important;
  }
}
.u-jc--between {
  justify-content: space-between !important;
}
@media only screen and (max-width: 767px) {
  .u-jc--between-sp {
    justify-content: space-between !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-jc--between-pc {
    justify-content: space-between !important;
  }
}

.u-ai--start {
  align-items: start !important;
}
@media only screen and (max-width: 767px) {
  .u-ai--start-sp {
    align-items: start !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ai--start-pc {
    align-items: start !important;
  }
}
.u-ai--center {
  align-items: center !important;
}
@media only screen and (max-width: 767px) {
  .u-ai--center-sp {
    align-items: center !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ai--center-pc {
    align-items: center !important;
  }
}
.u-ai--end {
  align-items: end !important;
}
@media only screen and (max-width: 767px) {
  .u-ai--end-sp {
    align-items: end !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-ai--end-pc {
    align-items: end !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-dn-sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-dn-pc {
    display: none !important;
  }
}

.u-gap--5 {
  gap: 5px !important;
}
.u-gap--5-10 {
  gap: 5px 10px !important;
}
.u-mt--5 {
  margin-top: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--5-pc {
    margin-top: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--5-sp {
    margin-top: 5px !important;
  }
}
.u-mb--5 {
  margin-bottom: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--5-pc {
    margin-bottom: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--5-sp {
    margin-bottom: 5px !important;
  }
}
.u-pt--5 {
  padding-top: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--5-pc {
    padding-top: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--5-sp {
    padding-top: 5px !important;
  }
}
.u-pr--5 {
  padding-right: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--5-pc {
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--5-sp {
    padding-right: 5px !important;
  }
}
.u-pb--5 {
  padding-bottom: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--5-pc {
    padding-bottom: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--5-sp {
    padding-bottom: 5px !important;
  }
}
.u-pl--5 {
  padding-left: 5px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--5-pc {
    padding-left: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--5-sp {
    padding-left: 5px !important;
  }
}
.u-gap--10 {
  gap: 10px !important;
}
.u-gap--10-20 {
  gap: 10px 20px !important;
}
.u-mt--10 {
  margin-top: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--10-pc {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--10-sp {
    margin-top: 10px !important;
  }
}
.u-mb--10 {
  margin-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--10-pc {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--10-sp {
    margin-bottom: 10px !important;
  }
}
.u-pt--10 {
  padding-top: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--10-pc {
    padding-top: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--10-sp {
    padding-top: 10px !important;
  }
}
.u-pr--10 {
  padding-right: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--10-pc {
    padding-right: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--10-sp {
    padding-right: 10px !important;
  }
}
.u-pb--10 {
  padding-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--10-pc {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--10-sp {
    padding-bottom: 10px !important;
  }
}
.u-pl--10 {
  padding-left: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--10-pc {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--10-sp {
    padding-left: 10px !important;
  }
}
.u-gap--15 {
  gap: 15px !important;
}
.u-gap--15-30 {
  gap: 15px 30px !important;
}
.u-mt--15 {
  margin-top: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--15-pc {
    margin-top: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--15-sp {
    margin-top: 15px !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--15-pc {
    margin-bottom: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--15-sp {
    margin-bottom: 15px !important;
  }
}
.u-pt--15 {
  padding-top: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--15-pc {
    padding-top: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--15-sp {
    padding-top: 15px !important;
  }
}
.u-pr--15 {
  padding-right: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--15-pc {
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--15-sp {
    padding-right: 15px !important;
  }
}
.u-pb--15 {
  padding-bottom: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--15-pc {
    padding-bottom: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--15-sp {
    padding-bottom: 15px !important;
  }
}
.u-pl--15 {
  padding-left: 15px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--15-pc {
    padding-left: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--15-sp {
    padding-left: 15px !important;
  }
}
.u-gap--20 {
  gap: 20px !important;
}
.u-gap--20-40 {
  gap: 20px 40px !important;
}
.u-mt--20 {
  margin-top: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--20-pc {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--20-sp {
    margin-top: 20px !important;
  }
}
.u-mb--20 {
  margin-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--20-pc {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--20-sp {
    margin-bottom: 20px !important;
  }
}
.u-pt--20 {
  padding-top: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--20-pc {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--20-sp {
    padding-top: 20px !important;
  }
}
.u-pr--20 {
  padding-right: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--20-pc {
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--20-sp {
    padding-right: 20px !important;
  }
}
.u-pb--20 {
  padding-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--20-pc {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--20-sp {
    padding-bottom: 20px !important;
  }
}
.u-pl--20 {
  padding-left: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--20-pc {
    padding-left: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--20-sp {
    padding-left: 20px !important;
  }
}
.u-gap--25 {
  gap: 25px !important;
}
.u-gap--25-50 {
  gap: 25px 50px !important;
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--25-pc {
    margin-top: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--25-sp {
    margin-top: 25px !important;
  }
}
.u-mb--25 {
  margin-bottom: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--25-pc {
    margin-bottom: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--25-sp {
    margin-bottom: 25px !important;
  }
}
.u-pt--25 {
  padding-top: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--25-pc {
    padding-top: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--25-sp {
    padding-top: 25px !important;
  }
}
.u-pr--25 {
  padding-right: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--25-pc {
    padding-right: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--25-sp {
    padding-right: 25px !important;
  }
}
.u-pb--25 {
  padding-bottom: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--25-pc {
    padding-bottom: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--25-sp {
    padding-bottom: 25px !important;
  }
}
.u-pl--25 {
  padding-left: 25px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--25-pc {
    padding-left: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--25-sp {
    padding-left: 25px !important;
  }
}
.u-gap--30 {
  gap: 30px !important;
}
.u-gap--30-60 {
  gap: 30px 60px !important;
}
.u-mt--30 {
  margin-top: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--30-pc {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--30-sp {
    margin-top: 30px !important;
  }
}
.u-mb--30 {
  margin-bottom: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--30-pc {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--30-sp {
    margin-bottom: 30px !important;
  }
}
.u-pt--30 {
  padding-top: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--30-pc {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--30-sp {
    padding-top: 30px !important;
  }
}
.u-pr--30 {
  padding-right: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--30-pc {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--30-sp {
    padding-right: 30px !important;
  }
}
.u-pb--30 {
  padding-bottom: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--30-pc {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--30-sp {
    padding-bottom: 30px !important;
  }
}
.u-pl--30 {
  padding-left: 30px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--30-pc {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--30-sp {
    padding-left: 30px !important;
  }
}
.u-gap--35 {
  gap: 35px !important;
}
.u-gap--35-70 {
  gap: 35px 70px !important;
}
.u-mt--35 {
  margin-top: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--35-pc {
    margin-top: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--35-sp {
    margin-top: 35px !important;
  }
}
.u-mb--35 {
  margin-bottom: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--35-pc {
    margin-bottom: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--35-sp {
    margin-bottom: 35px !important;
  }
}
.u-pt--35 {
  padding-top: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--35-pc {
    padding-top: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--35-sp {
    padding-top: 35px !important;
  }
}
.u-pr--35 {
  padding-right: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--35-pc {
    padding-right: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--35-sp {
    padding-right: 35px !important;
  }
}
.u-pb--35 {
  padding-bottom: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--35-pc {
    padding-bottom: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--35-sp {
    padding-bottom: 35px !important;
  }
}
.u-pl--35 {
  padding-left: 35px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--35-pc {
    padding-left: 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--35-sp {
    padding-left: 35px !important;
  }
}
.u-gap--40 {
  gap: 40px !important;
}
.u-gap--40-80 {
  gap: 40px 80px !important;
}
.u-mt--40 {
  margin-top: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--40-pc {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--40-sp {
    margin-top: 40px !important;
  }
}
.u-mb--40 {
  margin-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--40-pc {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--40-sp {
    margin-bottom: 40px !important;
  }
}
.u-pt--40 {
  padding-top: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--40-pc {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--40-sp {
    padding-top: 40px !important;
  }
}
.u-pr--40 {
  padding-right: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--40-pc {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--40-sp {
    padding-right: 40px !important;
  }
}
.u-pb--40 {
  padding-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--40-pc {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--40-sp {
    padding-bottom: 40px !important;
  }
}
.u-pl--40 {
  padding-left: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--40-pc {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--40-sp {
    padding-left: 40px !important;
  }
}
.u-gap--45 {
  gap: 45px !important;
}
.u-gap--45-90 {
  gap: 45px 90px !important;
}
.u-mt--45 {
  margin-top: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--45-pc {
    margin-top: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--45-sp {
    margin-top: 45px !important;
  }
}
.u-mb--45 {
  margin-bottom: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--45-pc {
    margin-bottom: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--45-sp {
    margin-bottom: 45px !important;
  }
}
.u-pt--45 {
  padding-top: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--45-pc {
    padding-top: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--45-sp {
    padding-top: 45px !important;
  }
}
.u-pr--45 {
  padding-right: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--45-pc {
    padding-right: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--45-sp {
    padding-right: 45px !important;
  }
}
.u-pb--45 {
  padding-bottom: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--45-pc {
    padding-bottom: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--45-sp {
    padding-bottom: 45px !important;
  }
}
.u-pl--45 {
  padding-left: 45px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--45-pc {
    padding-left: 45px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--45-sp {
    padding-left: 45px !important;
  }
}
.u-gap--50 {
  gap: 50px !important;
}
.u-gap--50-100 {
  gap: 50px 100px !important;
}
.u-mt--50 {
  margin-top: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--50-pc {
    margin-top: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--50-sp {
    margin-top: 50px !important;
  }
}
.u-mb--50 {
  margin-bottom: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--50-pc {
    margin-bottom: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--50-sp {
    margin-bottom: 50px !important;
  }
}
.u-pt--50 {
  padding-top: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--50-pc {
    padding-top: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--50-sp {
    padding-top: 50px !important;
  }
}
.u-pr--50 {
  padding-right: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--50-pc {
    padding-right: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--50-sp {
    padding-right: 50px !important;
  }
}
.u-pb--50 {
  padding-bottom: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--50-pc {
    padding-bottom: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--50-sp {
    padding-bottom: 50px !important;
  }
}
.u-pl--50 {
  padding-left: 50px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--50-pc {
    padding-left: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--50-sp {
    padding-left: 50px !important;
  }
}
.u-gap--55 {
  gap: 55px !important;
}
.u-gap--55-110 {
  gap: 55px 110px !important;
}
.u-mt--55 {
  margin-top: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--55-pc {
    margin-top: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--55-sp {
    margin-top: 55px !important;
  }
}
.u-mb--55 {
  margin-bottom: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--55-pc {
    margin-bottom: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--55-sp {
    margin-bottom: 55px !important;
  }
}
.u-pt--55 {
  padding-top: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--55-pc {
    padding-top: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--55-sp {
    padding-top: 55px !important;
  }
}
.u-pr--55 {
  padding-right: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--55-pc {
    padding-right: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--55-sp {
    padding-right: 55px !important;
  }
}
.u-pb--55 {
  padding-bottom: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--55-pc {
    padding-bottom: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--55-sp {
    padding-bottom: 55px !important;
  }
}
.u-pl--55 {
  padding-left: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--55-pc {
    padding-left: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--55-sp {
    padding-left: 55px !important;
  }
}
.u-gap--60 {
  gap: 60px !important;
}
.u-gap--60-120 {
  gap: 60px 120px !important;
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--60-pc {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--60-sp {
    margin-top: 60px !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--60-pc {
    margin-bottom: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--60-sp {
    margin-bottom: 60px !important;
  }
}
.u-pt--60 {
  padding-top: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--60-pc {
    padding-top: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--60-sp {
    padding-top: 60px !important;
  }
}
.u-pr--60 {
  padding-right: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--60-pc {
    padding-right: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--60-sp {
    padding-right: 60px !important;
  }
}
.u-pb--60 {
  padding-bottom: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--60-pc {
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--60-sp {
    padding-bottom: 60px !important;
  }
}
.u-pl--60 {
  padding-left: 60px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--60-pc {
    padding-left: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--60-sp {
    padding-left: 60px !important;
  }
}
.u-gap--65 {
  gap: 65px !important;
}
.u-gap--65-130 {
  gap: 65px 130px !important;
}
.u-mt--65 {
  margin-top: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--65-pc {
    margin-top: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--65-sp {
    margin-top: 65px !important;
  }
}
.u-mb--65 {
  margin-bottom: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--65-pc {
    margin-bottom: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--65-sp {
    margin-bottom: 65px !important;
  }
}
.u-pt--65 {
  padding-top: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--65-pc {
    padding-top: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--65-sp {
    padding-top: 65px !important;
  }
}
.u-pr--65 {
  padding-right: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--65-pc {
    padding-right: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--65-sp {
    padding-right: 65px !important;
  }
}
.u-pb--65 {
  padding-bottom: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--65-pc {
    padding-bottom: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--65-sp {
    padding-bottom: 65px !important;
  }
}
.u-pl--65 {
  padding-left: 65px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--65-pc {
    padding-left: 65px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--65-sp {
    padding-left: 65px !important;
  }
}
.u-gap--70 {
  gap: 70px !important;
}
.u-gap--70-140 {
  gap: 70px 140px !important;
}
.u-mt--70 {
  margin-top: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--70-pc {
    margin-top: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--70-sp {
    margin-top: 70px !important;
  }
}
.u-mb--70 {
  margin-bottom: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--70-pc {
    margin-bottom: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--70-sp {
    margin-bottom: 70px !important;
  }
}
.u-pt--70 {
  padding-top: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--70-pc {
    padding-top: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--70-sp {
    padding-top: 70px !important;
  }
}
.u-pr--70 {
  padding-right: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--70-pc {
    padding-right: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--70-sp {
    padding-right: 70px !important;
  }
}
.u-pb--70 {
  padding-bottom: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--70-pc {
    padding-bottom: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--70-sp {
    padding-bottom: 70px !important;
  }
}
.u-pl--70 {
  padding-left: 70px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--70-pc {
    padding-left: 70px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--70-sp {
    padding-left: 70px !important;
  }
}
.u-gap--75 {
  gap: 75px !important;
}
.u-gap--75-150 {
  gap: 75px 150px !important;
}
.u-mt--75 {
  margin-top: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--75-pc {
    margin-top: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--75-sp {
    margin-top: 75px !important;
  }
}
.u-mb--75 {
  margin-bottom: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--75-pc {
    margin-bottom: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--75-sp {
    margin-bottom: 75px !important;
  }
}
.u-pt--75 {
  padding-top: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--75-pc {
    padding-top: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--75-sp {
    padding-top: 75px !important;
  }
}
.u-pr--75 {
  padding-right: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--75-pc {
    padding-right: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--75-sp {
    padding-right: 75px !important;
  }
}
.u-pb--75 {
  padding-bottom: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--75-pc {
    padding-bottom: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--75-sp {
    padding-bottom: 75px !important;
  }
}
.u-pl--75 {
  padding-left: 75px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--75-pc {
    padding-left: 75px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--75-sp {
    padding-left: 75px !important;
  }
}
.u-gap--80 {
  gap: 80px !important;
}
.u-gap--80-160 {
  gap: 80px 160px !important;
}
.u-mt--80 {
  margin-top: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--80-pc {
    margin-top: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--80-sp {
    margin-top: 80px !important;
  }
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--80-pc {
    margin-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--80-sp {
    margin-bottom: 80px !important;
  }
}
.u-pt--80 {
  padding-top: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--80-pc {
    padding-top: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--80-sp {
    padding-top: 80px !important;
  }
}
.u-pr--80 {
  padding-right: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--80-pc {
    padding-right: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--80-sp {
    padding-right: 80px !important;
  }
}
.u-pb--80 {
  padding-bottom: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--80-pc {
    padding-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--80-sp {
    padding-bottom: 80px !important;
  }
}
.u-pl--80 {
  padding-left: 80px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--80-pc {
    padding-left: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--80-sp {
    padding-left: 80px !important;
  }
}
.u-gap--85 {
  gap: 85px !important;
}
.u-gap--85-170 {
  gap: 85px 170px !important;
}
.u-mt--85 {
  margin-top: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--85-pc {
    margin-top: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--85-sp {
    margin-top: 85px !important;
  }
}
.u-mb--85 {
  margin-bottom: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--85-pc {
    margin-bottom: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--85-sp {
    margin-bottom: 85px !important;
  }
}
.u-pt--85 {
  padding-top: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--85-pc {
    padding-top: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--85-sp {
    padding-top: 85px !important;
  }
}
.u-pr--85 {
  padding-right: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--85-pc {
    padding-right: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--85-sp {
    padding-right: 85px !important;
  }
}
.u-pb--85 {
  padding-bottom: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--85-pc {
    padding-bottom: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--85-sp {
    padding-bottom: 85px !important;
  }
}
.u-pl--85 {
  padding-left: 85px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--85-pc {
    padding-left: 85px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--85-sp {
    padding-left: 85px !important;
  }
}
.u-gap--90 {
  gap: 90px !important;
}
.u-gap--90-180 {
  gap: 90px 180px !important;
}
.u-mt--90 {
  margin-top: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--90-pc {
    margin-top: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--90-sp {
    margin-top: 90px !important;
  }
}
.u-mb--90 {
  margin-bottom: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--90-pc {
    margin-bottom: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--90-sp {
    margin-bottom: 90px !important;
  }
}
.u-pt--90 {
  padding-top: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--90-pc {
    padding-top: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--90-sp {
    padding-top: 90px !important;
  }
}
.u-pr--90 {
  padding-right: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--90-pc {
    padding-right: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--90-sp {
    padding-right: 90px !important;
  }
}
.u-pb--90 {
  padding-bottom: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--90-pc {
    padding-bottom: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--90-sp {
    padding-bottom: 90px !important;
  }
}
.u-pl--90 {
  padding-left: 90px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--90-pc {
    padding-left: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--90-sp {
    padding-left: 90px !important;
  }
}
.u-gap--95 {
  gap: 95px !important;
}
.u-gap--95-190 {
  gap: 95px 190px !important;
}
.u-mt--95 {
  margin-top: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--95-pc {
    margin-top: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--95-sp {
    margin-top: 95px !important;
  }
}
.u-mb--95 {
  margin-bottom: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--95-pc {
    margin-bottom: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--95-sp {
    margin-bottom: 95px !important;
  }
}
.u-pt--95 {
  padding-top: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--95-pc {
    padding-top: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--95-sp {
    padding-top: 95px !important;
  }
}
.u-pr--95 {
  padding-right: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--95-pc {
    padding-right: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--95-sp {
    padding-right: 95px !important;
  }
}
.u-pb--95 {
  padding-bottom: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--95-pc {
    padding-bottom: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--95-sp {
    padding-bottom: 95px !important;
  }
}
.u-pl--95 {
  padding-left: 95px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--95-pc {
    padding-left: 95px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--95-sp {
    padding-left: 95px !important;
  }
}
.u-gap--100 {
  gap: 100px !important;
}
.u-gap--100-200 {
  gap: 100px 200px !important;
}
.u-mt--100 {
  margin-top: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--100-pc {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--100-sp {
    margin-top: 100px !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--100-pc {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--100-sp {
    margin-bottom: 100px !important;
  }
}
.u-pt--100 {
  padding-top: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--100-pc {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--100-sp {
    padding-top: 100px !important;
  }
}
.u-pr--100 {
  padding-right: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pr--100-pc {
    padding-right: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pr--100-sp {
    padding-right: 100px !important;
  }
}
.u-pb--100 {
  padding-bottom: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--100-pc {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--100-sp {
    padding-bottom: 100px !important;
  }
}
.u-pl--100 {
  padding-left: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pl--100-pc {
    padding-left: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pl--100-sp {
    padding-left: 100px !important;
  }
}
.u-mt--s {
  margin-top: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--s {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--s-sp {
    margin-top: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mt--s-pc {
    margin-top: 20px !important;
  }
}
.u-mt--m {
  margin-top: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--m {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--m-sp {
    margin-top: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mt--m-pc {
    margin-top: 40px !important;
  }
}
.u-mt--l {
  margin-top: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--l {
    margin-top: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--l-sp {
    margin-top: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mt--l-pc {
    margin-top: 80px !important;
  }
}
.u-mt--xl {
  margin-top: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mt--xl {
    margin-top: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mt--xl-sp {
    margin-top: 100px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mt--xl-pc {
    margin-top: 120px !important;
  }
}
.u-mb--s {
  margin-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--s {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--s-sp {
    margin-bottom: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mb--s-pc {
    margin-bottom: 20px !important;
  }
}
.u-mb--m {
  margin-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--m {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--m-sp {
    margin-bottom: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mb--m-pc {
    margin-bottom: 40px !important;
  }
}
.u-mb--l {
  margin-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-mb--l {
    margin-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-mb--l-sp {
    margin-bottom: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-mb--l-pc {
    margin-bottom: 80px !important;
  }
}
.u-my--s {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-my--s {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-my--s-sp {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-my--s-pc {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
.u-my--m {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-my--m {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-my--m-sp {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-my--m-pc {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
.u-my--l {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-my--l {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-my--l-sp {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-my--l-pc {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
}
.u-my--xl {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-my--xl {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-my--xl-sp {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-my--xl-pc {
    margin-top: 120px !important;
    margin-bottom: 1200px !important;
  }
}
.u-pt--s {
  padding-top: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--s {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--s-sp {
    padding-top: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pt--s-pc {
    padding-top: 20px !important;
  }
}
.u-pt--m {
  padding-top: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--m {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--m-sp {
    padding-top: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pt--m-pc {
    padding-top: 40px !important;
  }
}
.u-pt--l {
  padding-top: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--l {
    padding-top: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--l-sp {
    padding-top: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pt--l-pc {
    padding-top: 80px !important;
  }
}
.u-pt--xl {
  padding-top: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pt--xl {
    padding-top: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pt--xl-sp {
    padding-top: 100px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pt--xl-pc {
    padding-top: 120px !important;
  }
}
.u-pb--s {
  padding-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--s {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--s-sp {
    padding-bottom: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pb--s-pc {
    padding-bottom: 20px !important;
  }
}
.u-pb--m {
  padding-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--m {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--m-sp {
    padding-bottom: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pb--m-pc {
    padding-bottom: 40px !important;
  }
}
.u-pb--l {
  padding-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--l {
    padding-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--l-sp {
    padding-bottom: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pb--l-pc {
    padding-bottom: 80px !important;
  }
}
.u-pb--xl {
  padding-bottom: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-pb--xl {
    padding-bottom: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-pb--xl-sp {
    padding-bottom: 100px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pb--xl-pc {
    padding-bottom: 120px !important;
  }
}
.u-py--s {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
@media print, screen and (min-width: 768px) {
  .u-py--s {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-py--s-sp {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-py--s-pc {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
.u-py--m {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
@media print, screen and (min-width: 768px) {
  .u-py--m {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-py--m-sp {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-py--m-pc {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.u-py--l {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .u-py--l {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-py--l-sp {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-py--l-pc {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
.u-py--xl {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media print, screen and (min-width: 768px) {
  .u-py--xl {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-py--xl-sp {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-py--xl-pc {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}

.u-bg--white {
  background-color: white;
}
.u-bg--gray {
  background-color: #F5F4F0;
}
.u-bg--gray .c-heading .c-heading-h2 {
  border-top-color: #E1E0DC;
}

.u-border--top {
  border-top: 2px solid #d4d4d4;
}
.u-border--top--dashed {
  border-top-style: dashed;
}
.u-border--right {
  border-right: 2px solid #d4d4d4;
}
.u-border--right--dashed {
  border-right-style: dashed;
}
.u-border--bottom {
  border-bottom: 2px solid #d4d4d4;
}
.u-border--bottom--dashed {
  border-bottom-style: dashed;
}
.u-border--left {
  border-left: 2px solid #d4d4d4;
}
.u-border--left--dashed {
  border-left-style: dashed;
}

.c-image--document {
  display: flex;
  width: 100%;
  padding: 40px 0;
  border-radius: 8px;
  background-color: #F5F4F0;
  align-items: center;
  justify-content: center;
}
.c-image--document img {
  max-width: 140px;
  max-height: 140px;
}

.c-list-ul {
  display: block;
}
.c-list-ul > .c-list-ul__item {
  display: flex;
  align-items: start;
  gap: 0.5em;
}
.c-list-ul > .c-list-ul__item::before {
  flex-shrink: 0;
  width: 1em;
  height: 1.75em;
  content: "";
  background-color: #A9A9A9;
  clip-path: circle(3px at 50% 50%);
}
@media print, screen and (min-width: 768px) {
  .c-list-ul > .c-list-ul__item::before {
    clip-path: circle(4px at 50% 50%);
  }
}
.c-list-ul > .c-list-ul__item > .c-list-ul__item-in {
  flex-grow: 1;
}
.c-list-ul.point-primary > .c-list-ul__item::before {
  background-color: #E60012;
}

.c-list-note {
  font-size: 0.9em;
}
.c-list-note .c-list-note__item {
  display: flex;
  gap: 0.5em;
  align-items: start;
}
.c-list-note .c-list-note__item::before {
  flex-shrink: 0;
  content: "※";
}
.c-list-note .c-list-note__item .c-list-note__item-in {
  flex-grow: 1;
}

.c-list .c-list__item {
  display: flex;
  gap: 0.5em;
  align-items: start;
}
.c-list .c-list__item::before {
  flex-shrink: 0;
  content: attr(data-marker);
}
.c-list .c-list__item .c-list__item-in {
  flex-grow: 1;
}

.block {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .block {
    width: 1240px;
    margin-right: auto;
    margin-left: auto;
  }
}

main .category {
  position: relative;
  padding-top: 30px;
}
@media print, screen and (min-width: 768px) {
  main .category {
    padding-top: 45px;
  }
}
main .category::before, main .category::after {
  content: "";
  display: block;
  position: absolute;
}
main .category::before {
  background-color: #F5F4F0;
  width: calc(100% - 40px);
  height: 2px;
  left: 20px;
  top: -1px;
}
@media print, screen and (min-width: 768px) {
  main .category::before {
    width: 1200px;
    left: calc(50% - 600px);
  }
}
main .category::after {
  width: 80px;
  height: 6px;
  border-radius: 9999px;
  background-color: #E60013;
  left: calc(50% - 40px);
  top: -3px;
}
main .category + .category {
  margin-top: 100px;
}
@media print, screen and (min-width: 768px) {
  main .category + .category {
    margin-top: 130px;
  }
}

.c-image {
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .c-image {
    border-radius: 12px;
  }
}

.c-border {
  border-style: solid;
  border-color: #D4D4D4;
}
.c-border--top {
  border-top-width: 2px;
}
.c-border--right {
  border-right-width: 2px;
}
.c-border--bottom {
  border-bottom-width: 2px;
}
.c-border--left {
  border-left-width: 2px;
}
.c-border--dashed {
  border-style: dashed;
}
.c-border--dotted {
  border-style: dotted;
}

.c-box {
  padding: 32px 45px;
  border-radius: 8px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .c-box {
    padding: 40px 45px;
    border-radius: 12px;
  }
}
.c-box-bg-gray {
  background-color: #F5F4F0;
}
.c-box-bg-gray .btn__outer {
  background-color: transparent;
}
.c-box-border {
  border: 2px solid #F5F4F0;
}
.c-box-primary-line::after {
  content: "";
  position: absolute;
  background-color: #E60012;
  width: 20px;
  height: 3px;
  border-radius: 9999px;
  left: calc(50% - 10px);
  top: -1.5px;
}
@media print, screen and (min-width: 768px) {
  .c-box-primary-line::after {
    width: 40px;
    height: 4px;
    left: calc(50% - 20px);
    top: -2px;
  }
}
.c-box__title {
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .c-box__title {
    font-size: 2rem;
  }
}
.c-box__button .btn__outer {
  margin-top: 20px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .c-box__button .btn__outer .btn__link {
    width: 100%;
  }
}

.c-flow {
  display: block;
}
.c-flow__item {
  position: relative;
}
.c-flow__item:not(:first-of-type) {
  margin-top: 45px;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item:not(:first-of-type) {
    margin-top: 90px;
  }
}
.c-flow__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #A9A9A9;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  width: 32px;
  height: 18px;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item:not(:first-of-type)::before {
    top: -60px;
    width: 50px;
    height: 24px;
  }
}
.c-flow__item-header {
  display: grid;
  justify-content: start;
  grid-template-areas: "h-step h-title h-badge" "h-step h-caption h-caption";
  color: white;
  background-color: #E60012;
  padding: 15px 20px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .c-flow__item-header {
    grid-template-columns: 70px auto 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .c-flow__item-header {
    border-radius: 12px;
    align-items: center;
    grid-template-areas: "h-step h-title h-badge h-caption h-caption";
  }
}
.c-flow__item-header-step {
  grid-area: h-step;
  margin-right: 20px;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .c-flow__item-header-step {
    font-size: 2rem;
  }
}
.c-flow__item-header-title {
  grid-area: h-title;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .c-flow__item-header-title {
    font-size: 2.4rem;
  }
}
.c-flow__item-header-badge {
  grid-area: h-badge;
  justify-self: start;
  align-self: start;
  margin-left: 10px;
  font-weight: 700;
  background-color: white;
  color: #E60012;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-flow__item-header-badge {
    font-size: 1.7rem;
  }
}
.c-flow__item-header-badge {
  padding: 0 5px;
  border-radius: 2px;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item-header-badge {
    padding: 0 10px;
    border-radius: 5px;
  }
}
.c-flow__item-header-badge:empty {
  display: none;
}
.c-flow__item-header-caption {
  grid-area: h-caption;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item-header-caption {
    margin: 0 0 0 20px;
  }
}
.c-flow__item:has(.c-flow__item-body) .c-flow__item-header {
  border-radius: 8px 8px 0 0;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item:has(.c-flow__item-body) .c-flow__item-header {
    border-radius: 12px 12px 0 0;
  }
}
.c-flow__item-body {
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  padding: 20px 20px 40px;
}
@media print, screen and (min-width: 768px) {
  .c-flow__item-body {
    padding: 48px 50px;
    border-radius: 0 0 12px 12px;
  }
}

.c-inline-frame {
  background-color: #F5F4F0;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 40vh;
  overflow-wrap: anywhere;
}
@media print, screen and (min-width: 768px) {
  .c-inline-frame {
    max-height: 280px;
  }
}
.c-inline-frame__body {
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-inline-frame__body {
    padding: 32px 48px;
  }
}

.g-contact {
  margin-top: 100px;
  padding: 48px 0;
  background: url("/echishin/assets/images/common/im_g-contact.webp") center/cover no-repeat;
}
.g-contact__caption {
  color: white;
  text-align: center;
  font-size: 2;
}
@media (min-width: 768px) {
  .g-contact__caption {
    font-size: 2.8rem;
  }
}
.g-contact__caption {
  margin-bottom: 20px;
}
.g-contact .l-grid.l-grid--2cols:has(> :only-child) {
  grid-template-columns: 1fr;
  place-content: center;
  place-items: center;
}
.g-contact__column {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .g-contact__column {
    width: 580px;
    border-radius: 12px;
    padding: 40px 48px;
  }
}
.g-contact__column::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background-color: #E60012;
  width: 20px;
  height: 3px;
  border-radius: 9999px;
}
@media print, screen and (min-width: 768px) {
  .g-contact__column::before {
    width: 40px;
  }
}
.g-contact__column .c-heading-h3 .c-heading-title {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .g-contact__column .c-heading-h3 .c-heading-title {
    font-size: 2rem;
  }
}
.g-contact__column .c-heading-h3 .c-heading-title {
  background-position: left 8px;
}
@media print, screen and (min-width: 768px) {
  .g-contact__column .c-heading-h3 .c-heading-title {
    background-position: left 9px;
    padding-left: 30px;
  }
}
.g-contact__column .g-contact__tel {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .g-contact__column .g-contact__tel {
    font-size: 4rem;
  }
}
.g-contact__column .g-contact__tel {
  font-weight: 700;
  color: #E60012;
  gap: 0.25em;
}
.g-contact__column .g-contact__tel::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_tel_primary.svg") center/contain no-repeat;
}
@media print, screen and (min-width: 768px) {
  .g-contact__column .g-contact__tel::before {
    width: 28px;
  }
}

hr.u-hr--dashed {
  width: 100%;
  height: 1px;
  background-color: transparent;
  border: none;
  border-bottom: 2px dashed #d4d4d4;
}

.u-feature {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .u-feature {
    flex-direction: column;
    gap: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature {
    align-items: start;
    gap: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature__image {
    flex-shrink: 0;
    width: 508px;
  }
}
.u-feature__content__list {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .u-feature__content__list {
    position: relative;
    padding-top: 35px;
    gap: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature__content__list {
    padding-left: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .u-feature__content__list::before {
    content: "";
    display: block;
    position: absolute;
    width: 26px;
    height: 20px;
    left: calc(50% - 13px);
    top: 0;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #E60012;
  }
}
.u-feature__content__list > li {
  border-bottom: 2px dashed #d4d4d4;
}
@media only screen and (max-width: 767px) {
  .u-feature__content__list > li {
    padding-bottom: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature__content__list > li {
    padding: 30px 0;
    position: relative;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature__content__list > li:last-of-type {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 768px) {
  .u-feature__content__list > li::before {
    content: "";
    display: block;
    position: absolute;
    width: 26px;
    height: 34px;
    left: -75px;
    top: calc(50% - 17px);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #E60012;
  }
}

.c-steps {
  display: grid;
  margin-top: 40px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  gap: 25px;
  grid-template-areas: "steps-head" "steps-content" "steps-link" "steps-box";
}
@media print, screen and (min-width: 768px) {
  .c-steps {
    width: 1240px;
    margin-right: auto;
    margin-left: auto;
    justify-content: space-between;
    align-items: center;
    grid-template-areas: "steps-head steps-link" "steps-content steps-content" "steps-box steps-box";
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__title {
    grid-column: 1/3;
  }
}
.c-steps__head {
  grid-area: steps-head;
}
.c-steps__link {
  grid-area: steps-link;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-steps__link {
    justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__link {
    justify-content: end;
  }
}
.c-steps__content {
  grid-area: steps-content;
  display: grid;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .c-steps__content {
    grid-template-columns: 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__content {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__content.col3-pc {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__step {
    display: flex;
    flex-direction: column;
  }
}
.c-steps__step:not(:has(.c-steps__step-head)) .c-steps__step-body {
  border-top: 1px solid #e8e8e8;
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .c-steps__step:not(:has(.c-steps__step-head)) .c-steps__step-body {
    border-radius: 12px;
  }
}
.c-steps__step-head {
  background-color: #E60012;
  border-radius: 8px 8px 0 0;
  padding: 8px;
  color: white;
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .c-steps__step-head {
    font-size: 2rem;
  }
}
.c-steps__step-head {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-head {
    padding: 12px;
    border-radius: 12px 12px 0 0;
  }
}
.c-steps__step-body {
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-body {
    padding: 35px 20px;
    flex-grow: 1;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.c-steps__step-body__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-bottom: 2px dashed #D4D4D4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.c-steps__step-body__title .step__icon {
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-body__title .step__icon {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-steps__step-body__title .step__icon img {
    max-width: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-body__title .step__icon img {
    max-height: 40px;
  }
}
.c-steps__step-body__title .step__title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-steps__step-body__title .step__title {
    font-size: 2.4rem;
  }
}
.c-steps__step-body__title .step__title {
  line-height: 1;
  font-weight: 700;
}
.c-steps__step-body__text > *:first-of-type {
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-body__text {
    flex-grow: 1;
  }
}
.c-steps__step-body__foot {
  background-color: #F8F7F4;
}
@media only screen and (max-width: 767px) {
  .c-steps__step-body__foot {
    margin: 20px -20px -20px;
    padding: 10px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-steps__step-body__foot {
    margin: 30px -20px -35px -20px;
    padding: 25px 20px;
  }
}
.c-steps__box {
  grid-area: steps-box;
}
@media print, screen and (min-width: 768px) {
  .c-steps__box {
    margin-top: 20px;
  }
}

.c-heading {
  margin-top: 40px;
}
.c-heading:first-child {
  margin-top: 0;
}
.c-heading-h1, .c-heading-h2, .c-heading-h3, .c-heading-h4, .c-heading-h5 {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-heading-h1:has(.c-heading-link), .c-heading-h2:has(.c-heading-link), .c-heading-h3:has(.c-heading-link), .c-heading-h4:has(.c-heading-link), .c-heading-h5:has(.c-heading-link) {
  gap: 20px;
  flex-direction: row;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h1:has(.c-heading-link), .c-heading-h2:has(.c-heading-link), .c-heading-h3:has(.c-heading-link), .c-heading-h4:has(.c-heading-link), .c-heading-h5:has(.c-heading-link) {
    gap: 40px;
  }
}
.c-heading-top .c-heading-h2 {
  border-top: 1px solid #F5F4F0;
}
.c-heading-top .c-heading-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  background-color: #E60012;
  width: 60px;
  height: 6px;
  border-radius: 6px;
}
.c-heading-center [class^=c-heading-h] {
  align-items: center;
}
.c-heading-center [class^=c-heading-h]::before {
  left: calc(50% - 30px);
}
.c-heading-h1 .c-heading-icon {
  line-height: 0;
}
.c-heading-h1 .c-heading-icon span.circle,
.c-heading-h1 .c-heading-icon img {
  width: 44px;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h1 .c-heading-icon span.circle,
  .c-heading-h1 .c-heading-icon img {
    width: 56px;
  }
}
.c-heading-h1 .c-heading-icon span.circle {
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 100%;
}
.c-heading-h1 .c-heading-icon span.circle img {
  width: 24px;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h1 .c-heading-icon span.circle img {
    width: 36px;
  }
}
.c-heading-h1 .c-heading-title {
  font-size: 3.6rem;
}
@media (min-width: 768px) {
  .c-heading-h1 .c-heading-title {
    font-size: 5.2rem;
  }
}
.c-heading-h1 .c-heading-caption {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-heading-h1 .c-heading-caption {
    font-size: 1.8rem;
  }
}
.c-heading-h1 .c-heading-caption {
  text-align: center;
}
.c-heading-h2 {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h2 {
    margin-bottom: 30px;
  }
}
.c-heading-h2 .c-heading-title {
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .c-heading-h2 .c-heading-title {
    font-size: 4.2rem;
  }
}
.c-heading-h2 .c-heading-title {
  line-height: 1.5;
  margin-top: 28px;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h2 .c-heading-title {
    margin-top: 40px;
  }
}
.c-heading-h2 .c-heading-title-small {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-heading-h2 .c-heading-title-small {
    font-size: 1.7rem;
  }
}
.c-heading-h2 .c-heading-caption {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .c-heading-h2 .c-heading-caption {
    font-size: 2rem;
  }
}
.c-heading-h2 .c-heading-caption {
  padding-left: 20px;
  background: url("/echishin/assets/images/common/ic_primary-double-circle.svg") left 10px/12px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h2 .c-heading-caption {
    padding-left: 22px;
    background-position: left 12px;
    background-size: 14px auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-h3:has(.c-heading-link) {
    justify-content: space-between;
    font-size: 0.9em;
  }
}
.c-heading-h3 .c-heading-title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-heading-h3 .c-heading-title {
    font-size: 2.8rem;
  }
}
.c-heading-h3 .c-heading-title {
  padding-left: 22px;
  background: url("/echishin/assets/images/common/ic_primary-double-circle.svg") left 10px/16px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h3 .c-heading-title {
    padding-left: 40px;
    background-position: left 16px;
    background-size: 20px auto;
  }
}
.c-heading-h3 .c-heading-title.ic-blue {
  background-image: url("/echishin/assets/images/common/ic_blue-double-circle.svg");
}
.c-heading-h4 .c-heading-title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-heading-h4 .c-heading-title {
    font-size: 2.8rem;
  }
}
.c-heading-h5 .c-heading-title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-heading-h5 .c-heading-title {
    font-size: 2.4rem;
  }
}
.c-heading-h5 .c-heading-title {
  padding-left: 14px;
  background: url("/echishin/assets/images/common/ic_dot_red.svg") left 16px/6px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  .c-heading-h5 .c-heading-title {
    padding-left: 20px;
    background-position: left 20px;
    background-size: 8px auto;
  }
}
.c-heading-h5 .c-heading-caption {
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .c-heading-h5 .c-heading-caption {
    font-size: 1.9rem;
  }
}
.c-heading-link {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .c-heading-link {
    flex-direction: column;
    align-items: end;
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading-link {
    display: inline-flex;
    gap: 20px;
  }
}
.c-heading-link .btn__link {
  padding: 5px 10px;
  background-color: #E60012;
  color: white;
}
@media print, screen and (min-width: 768px) {
  .c-heading-link .btn__link:hover {
    border: 1px solid #E60012;
    background-color: white;
    color: #E60012;
  }
}

/* ==============================================
 * アコーディオン CSS
 * ============================================== */
/* ----------------------------------------------
 * 1. 基本設定 (JS(.is-accordion-active)で有効化)
 * ---------------------------------------------- */
/* ----------------------------------------------
 * 1. 基本設定
 * ---------------------------------------------- */
[data-accordion-panel] {
  /* JSで制御するため、初期状態は hidden 属性がつくことを想定 */
}
[data-accordion-panel][hidden] {
  display: none;
}

/* ----------------------------------------------
 * 2. スライドアニメーション (Slide + Fade)
 * ---------------------------------------------- */
/* * data-accordion-type="slide"
 * 高さ(max-height) と 不透明度(opacity) を同時にアニメーションさせます。
 */
[data-accordion-panel][data-accordion-type=slide].is-accordion-active {
  overflow: hidden;
  /* 高さ、不透明度、可視性をアニメーション */
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  max-height: 0; /* JS計算前の初期値 */
}

/* 開いた状態 */
[data-accordion-panel][data-accordion-type=slide].is-accordion-active.is-open {
  opacity: 1;
  visibility: visible;
  /* max-height は JS で scrollHeight がセットされるか、none になる */
}

/* ----------------------------------------------
 * 3. フェードアニメーション (Fade Only)
 * ---------------------------------------------- */
/*
 * data-accordion-type="fade"
 * 高さは確保したまま、不透明度だけでふわっと消える（レイアウトシフトなし）
 * または、position: absolute などと併用して切り替える用
 */
[data-accordion-panel][data-accordion-type=fade].is-accordion-active {
  transition: opacity 0.4s ease, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  /* 高さは保持したい場合は display: none 制御のみ JS に任せる */
}

/* 開いた状態 */
[data-accordion-panel][data-accordion-type=fade].is-accordion-active.is-open {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------
 * 4. [一部隠し] の対応 (.is-partially-visible)
 * ---------------------------------------------- */
[data-accordion-panel][data-accordion-type=slide].is-accordion-active.is-partially-visible {
  /* 閉じていても中身が見えるため、opacity 1 / visibility visible は維持 */
  opacity: 1 !important;
  visibility: visible !important;
  /* 閉じている時は固定の高さ */
}
[data-accordion-panel][data-accordion-type=slide].is-accordion-active.is-partially-visible:not(.is-open) {
  max-height: 50vh; /* または任意のpx */
}
@media print, screen and (min-width: 768px) {
  [data-accordion-panel][data-accordion-type=slide].is-accordion-active.is-partially-visible:not(.is-open) {
    max-height: 400px;
  }
}

[data-accordion-header] {
  outline: none;
}

/* ----------------------------------------------
 * 4. レスポンシブ対応 (例)
 * ---------------------------------------------- */
.accordion__block.article__wide {
  border-bottom: 1px solid #D4D4D4;
}
.accordion__block.article__wide:first-of-type {
  border-top: 1px solid #D4D4D4;
}
.accordion__block.article__wide:last-of-type {
  border-top: 1px solid #D4D4D4;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .accordion__block.article__wide:last-of-type {
    margin-bottom: 80px;
  }
}
.accordion__block.article__wide .article__header {
  position: relative;
  border: none;
  background-color: #F5F4F0;
  border-radius: 0;
  width: 100%;
  height: 92px;
  padding: 0 20px;
  gap: 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .accordion__block.article__wide .article__header {
    height: 178px;
    gap: 28px;
    padding-inline: max(20px, (100vw - 1240px) / 2);
    height: 180px;
  }
}
.accordion__block.article__wide .article__header h4 {
  position: relative;
  z-index: 10;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .accordion__block.article__wide .article__header h4 {
    font-size: 2.8rem;
  }
}
.accordion__block.article__wide .article__header h4 {
  text-shadow: 0 0 2px #D4D4D4;
  text-align: left;
}
.accordion__block.article__wide .article__header:hover .article__header__bg {
  transform: scale(1.05);
}
.accordion__block.article__wide .article__header__bg {
  position: absolute;
  z-index: 2;
  height: 100%;
  right: 0;
  top: 0;
  transition: 0.25s all ease-out;
}
@media only screen and (max-width: 767px) {
  .accordion__block.article__wide .article__header__bg img {
    max-width: initial;
    height: 100%;
  }
}
.accordion__block.article__wide .article__header::after {
  content: "";
  position: absolute;
  z-index: 3;
  background: linear-gradient(to right, rgb(245, 244, 240) 40%, rgba(245, 244, 240, 0) 60%);
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .accordion__block.article__wide .article__header::after {
    background: linear-gradient(to right, rgb(245, 244, 240) 25%, rgba(245, 244, 240, 0) 100%);
    width: 600px;
    right: 250px;
  }
}
.accordion__block.article__wide .article__content__inner {
  padding: 35px 0;
}
.accordion__header::before {
  position: relative;
  z-index: 5;
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_circle-plus_red.svg") center/contain no-repeat;
}
@media print, screen and (min-width: 768px) {
  .accordion__header::before {
    width: 28px;
  }
}
.accordion__header.is-open::before {
  background-image: url("/echishin/assets/images/common/ic_circle-minus_red.svg");
}
.accordion__content-close {
  display: flex;
  justify-content: center;
}
.accordion__content-close button {
  color: #E60012;
  background-color: transparent;
  border: none;
  font-weight: 500;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .accordion__content-close button {
    font-size: 1.7rem;
  }
}

.partially-visible-block {
  position: relative;
  z-index: 1;
}
.partially-visible-block::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: 100px;
  background: linear-gradient(0deg, #FFF 28.33%, rgba(255, 255, 255, 0) 100%);
}
@media print, screen and (min-width: 768px) {
  .partially-visible-block::before {
    height: 135px;
  }
}
.partially-visible-block:has(.is-open) {
  padding-bottom: 40px;
}
.partially-visible-block:has(.is-open)::before {
  display: none;
}
.partially-visible-block .partially-visible-button {
  position: absolute;
  display: flex;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.partially-visible-block .partially-visible-button::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #D4D4D4;
}
.partially-visible-block .partially-visible-button button {
  position: relative;
  z-index: 4;
  gap: 8px;
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 5px 20px;
  background-color: #fff;
}
.partially-visible-block .partially-visible-button button::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_circle-plus_red.svg") center/contain no-repeat;
}
@media only screen and (max-width: 767px) {
  .partially-visible-block .partially-visible-button button::before {
    width: 28px;
  }
}
.partially-visible-block .partially-visible-button button.is-open::before {
  background-image: url("/echishin/assets/images/common/ic_circle-minus_red.svg");
}
.partially-visible-block .partially-visible-button button.is-open span::before {
  content: "閉じる";
}
.partially-visible-block .partially-visible-button button span::before {
  font-weight: 700;
  content: "もっと見る";
}

/* モーダルのルート (背景固定より手前) */
.c-modal {
  position: fixed;
  inset: 0; /* 画面全体に広げる */
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 閉じた状態 (hidden属性) */
  visibility: hidden;
}

.c-modal[hidden] {
  display: none; /* DOMツリーから消す */
}

/* 開いた状態 (JSが .is-open を付与) */
.c-modal.is-open {
  visibility: visible;
}

/* モーダル背景 */
.c-modal__overlay {
  position: absolute;
  inset: 0;
  /* ユーザー様ご提案の data-modal-bg="black" に相当 */
  background-color: rgba(0, 0, 0, 0.6);
  /* フェードインアニメーション */
  transition: opacity 0.3s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

/* モーダルコンテナ (中身) */
.c-modal__container {
  position: relative; /* 背景より手前 */
  z-index: 1;
  background-color: #fff;
  padding: 4rem 2.4rem 3.2rem;
  border-radius: 8px;
  /* 開閉アニメーション (例: ズームイン) */
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-modal__container:has(video, iframe) {
  padding: 0;
}
.c-modal__container:has(video, iframe) video, .c-modal__container:has(video, iframe) iframe {
  vertical-align: bottom;
}

.c-modal.is-open .c-modal__container {
  opacity: 1;
  transform: scale(1);
}

/* 閉じるボタン */
.c-modal__close-btn {
  /* ... スタイリング ... */
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transform: translate(50%, -50%);
}

.c-modal__body video {
  aspect-ratio: 1280/720;
}
@media only screen and (max-width: 767px) {
  .c-modal__body video {
    width: 80vw;
    height: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .c-modal__body video {
    max-width: 80vw;
    max-height: 80vh;
  }
}
.c-modal__body iframe {
  aspect-ratio: 560/315;
}
@media only screen and (max-width: 767px) {
  .c-modal__body iframe {
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
  }
}
@media print, screen and (min-width: 768px) {
  .c-modal__body iframe {
    width: 960px;
    height: auto;
  }
}

.section__title {
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 4.2rem;
  }
}
.section__title {
  text-align: center;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .section__title {
    margin-bottom: 65px;
  }
}

.c-mv {
  display: flex;
  position: relative;
  background-color: #F5F4F0;
}
@media only screen and (max-width: 767px) {
  .c-mv {
    padding-bottom: 63.829787234vw;
    justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv {
    height: 360px;
    align-items: center;
  }
}
.c-mv-sideimage {
  background-color: transparent;
}
.c-mv-sideimage .c-mv__inner {
  display: flex;
  padding: 20px;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .c-mv-sideimage .c-mv__inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv-sideimage .c-mv__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 0 auto;
    padding: 30px 20px;
    width: 1240px;
  }
}
.c-mv-sideimage .c-mv__sideimage img {
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .c-mv-sideimage .c-mv__sideimage img {
    border-radius: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv-sideimage .c-mv__sideimage {
    flex-shrink: 0;
    width: 590px;
  }
}
.c-mv-sideimage .c-mv__sidetitle.align-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.c-mv-sideimage .c-mv__sidetitle.align-middle .c-heading {
  margin-bottom: 0;
}
.c-mv-sideimage .c-mv__sidetitle .c-heading {
  margin: 0 0 20px;
}
@media print, screen and (min-width: 768px) {
  .c-mv-sideimage .c-mv__sidetitle .c-heading {
    width: auto;
  }
}
.c-mv-sideimage .c-mv__sidetitle .c-heading-top .c-heading-h2 {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .c-mv-sideimage .c-mv__sidetitle .c-heading-top .c-heading-h2 {
    font-size: 4rem;
  }
}
.c-mv-sideimage .c-mv__sidetitle .c-heading-top .c-heading-h2 {
  border-top: none;
}
@media print, screen and (min-width: 768px) {
  .c-mv-sideimage .c-mv__sidetitle .c-heading-top .c-heading-h2 {
    padding-top: 0px;
  }
}
.c-mv-sideimage .c-mv__sidetitle .loan-status {
  border-collapse: separate;
  border-spacing: 10px;
}
.c-mv-sideimage .c-mv__sidetitle .loan-status th {
  border-right: 2px solid #A1A1A1;
}
.c-mv-sideimage .c-mv__sidetitle .loan-status th strong {
  display: block;
  padding-right: 10px;
  font-weight: bold;
  line-height: 1.2;
}
.c-mv__picture {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .c-mv__picture::before {
    display: block;
    width: calc(100% - 1100px);
    content: "";
    position: absolute;
    z-index: 2;
    background-color: rgb(245, 244, 240);
    height: 100%;
    right: 1100px;
    top: 0;
  }
}
.c-mv__picture::after {
  display: block;
  content: "";
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .c-mv__picture::after {
    width: 100%;
    height: 34.0425531915vw;
    background: linear-gradient(180deg, #F8F7F4 26.48%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    bottom: 29.2553191489vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv__picture::after {
    width: 800px;
    height: 100%;
    right: 300px;
    top: 0;
    background: linear-gradient(to right, rgb(245, 244, 240) 25%, rgba(245, 244, 240, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
.c-mv__picture img {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .c-mv__picture img {
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv__picture img {
    right: 0;
    top: 0;
    max-width: initial;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv:not(:has(.c-mv__picture)) {
    padding: 40px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv:not(:has(.c-mv__picture)) {
    height: auto;
    padding: 60px 0;
    min-height: 180px;
  }
}
.c-mv:not(:has(.c-mv__picture)) .c-heading {
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .c-mv:not(:has(.c-mv__picture)) .c-heading .c-heading-h1 {
    gap: 10px;
  }
}
.c-mv .c-heading {
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .c-mv .c-heading {
    padding-top: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-mv .c-heading {
    width: 1240px;
    margin: 0 auto;
    padding: 0 840px 0 20px;
    align-items: center;
  }
}
.c-mv .c-heading .c-heading-h1 {
  align-items: center;
}
.c-mv .c-heading .c-heading-h1 .c-heading-h1-caption {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-mv .c-heading .c-heading-h1 .c-heading-h1-caption {
    font-size: 1.8rem;
  }
}
.c-mv .c-heading .c-heading-h1 .c-heading-h1-caption {
  line-height: 175%;
}
@media print, screen and (min-width: 768px) {
  .c-mv .c-heading .c-heading-h1 .c-heading-h1-caption {
    text-align: center;
    line-height: 200%;
  }
}

.article__header:not(:has(.accordion__header)) {
  position: relative;
  border: none;
  background-color: #F5F4F0;
  border-radius: 0;
  width: 100%;
  height: 92px;
  padding: 0 20px;
  gap: 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .article__header:not(:has(.accordion__header)) {
    height: 178px;
    gap: 28px;
    padding-inline: max(20px, (100vw - 1240px) / 2);
    height: 180px;
  }
}
.article__header__bg {
  position: absolute;
  z-index: 2;
  height: 100%;
  right: 0;
  top: 0;
  transition: 0.25s all ease-out;
}
@media only screen and (max-width: 767px) {
  .article__header__bg img {
    max-width: initial;
    height: 100%;
  }
}
.article__header::after {
  content: "";
  position: absolute;
  z-index: 3;
  background: linear-gradient(to right, rgb(245, 244, 240) 40%, rgba(245, 244, 240, 0) 60%);
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .article__header::after {
    background: linear-gradient(to right, rgb(245, 244, 240) 25%, rgba(245, 244, 240, 0) 100%);
    width: 600px;
    right: 250px;
  }
}
.article__header-head {
  position: relative;
  z-index: 4;
}

.btn__outer {
  display: flex;
  justify-content: center;
  background-color: #F8F7F4;
  border-radius: 8px;
  margin-top: 50px;
  padding: 32px 45px;
}
@media print, screen and (min-width: 768px) {
  .btn__outer {
    border-radius: 12px;
  }
}
.btn__outer.btn__outer--simple {
  background-color: white;
  padding-top: 0;
  padding-bottom: 0;
}
.btn__outer .btn__item {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .btn__outer .btn__item {
    width: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .btn__outer .btn__item .btn__link {
    width: 488px;
  }
}
.btn__item {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  background-color: white;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .btn__link {
    padding: 20px 30px;
    border-radius: 8px;
  }
}
.btn__link:hover {
  text-decoration: none;
  color: white;
  background-color: #E60013;
}
.btn__link span {
  text-align: center;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .btn__link span {
    font-size: 1.7rem;
  }
}
.btn__link span {
  font-weight: 700;
}
.btn__link-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1;
}
@media print, screen and (min-width: 768px) {
  .btn__link-icon {
    width: 40px;
    height: 40px;
  }
}
.btn__link-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.btn__link--arrow-right {
  padding-right: 45px;
  background-image: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg");
  background-position: right 10px center;
  background-size: 18px auto;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 768px) {
  .btn__link--arrow-right {
    background-size: 24px auto;
    padding-right: 65px;
  }
}
.btn__link--arrow-right:hover {
  background-image: url("/echishin/assets/images/common/ic_circle-arrow_right_white.svg");
}
.btn__link--arrow-down {
  padding-right: 45px;
  background-image: url("/echishin/assets/images/common/ic_circle-arrow_down_red.svg");
  background-position: right 10px center;
  background-size: 18px auto;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 768px) {
  .btn__link--arrow-down {
    background-size: 24px auto;
    padding-right: 65px;
  }
}
.btn__link--arrow-down:hover {
  background-image: url("/echishin/assets/images/common/ic_circle-arrow_down_white.svg");
}
.btn__links {
  gap: 12px;
}
@media print, screen and (min-width: 768px) {
  .btn__links {
    gap: 20px;
  }
}
.btn__links .btn__item .btn__link {
  position: relative;
  width: 100%;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .btn__links .btn__item .btn__link {
    padding-right: 30px;
    padding-left: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .btn__links .btn__item .btn__link {
    padding: 10px 10px 10px 30px;
    line-height: 1.2;
    min-height: 72px;
  }
}

.c-tabs__header {
  display: flex;
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .c-tabs__header {
    margin: 0 auto;
    width: 1240px;
  }
}
.c-tabs__tab {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-tabs__tab {
    font-size: 2rem;
  }
}
.c-tabs__tab.is-open {
  color: #E60012;
  background-color: #F5F4F0;
  filter: drop-shadow(0 4px 4px rgba(65, 60, 58, 0.08));
  overflow: visible;
}
.c-tabs__tab.is-open::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 20px;
  height: 10px;
  background-color: #F5F4F0;
  /* なめらかな辺：clip-path三角 */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  /* ※影は親のfilterでまとめて付くのでここは不要 */
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .c-tabs__tab.is-open::after {
    width: 40px;
  }
}
.c-tabs__tab span {
  text-align: center;
}
.c-tabs__body {
  padding: 40px 20px;
}
@media print, screen and (min-width: 768px) {
  .c-tabs__body {
    margin: 0 auto;
    padding: 48px 20px;
    width: 1240px;
  }
}

.products__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border: 1px solid #F5F4F0;
  padding: 1rem;
  text-align: center;
}
.product-card img {
  max-width: 100%;
  height: auto;
}
.product-card__title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.product-card__desc {
  font-size: 0.9rem;
  color: #666;
}

.c-card {
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .c-card {
    border-radius: 12px;
  }
}
.c-card__header {
  padding: 35px 20px 5px;
}
@media print, screen and (min-width: 768px) {
  .c-card__header {
    padding: 48px 48px 8px;
  }
}
.c-card__header:has(.c-card__header-badge.badge-web) .c-heading-title {
  padding-right: 80px;
}
@media only screen and (max-width: 767px) {
  .c-card__header:has(.c-card__header-badges-right):has(.c-card__header-badges-shoulder) {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .c-card__header:has(.c-card__header-badges-right):has(.c-card__header-badges-shoulder) .c-card__header-badges-right {
    top: 32px;
  }
}
.c-card__header::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 9999px;
  background-color: #E60012;
  left: 20px;
  top: -1px;
}
@media print, screen and (min-width: 768px) {
  .c-card__header::before {
    left: 48px;
    width: 40px;
  }
}
.c-card__header-badges {
  position: absolute;
}
.c-card__header-badges-shoulder {
  top: -4px;
  left: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-card__header-badges-shoulder {
    top: -5px;
    left: 48px;
  }
}
.c-card__header-badges-right {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  top: 12px;
  right: 12px;
}
@media print, screen and (min-width: 768px) {
  .c-card__header-badges-right {
    top: 16px;
    right: 16px;
  }
}
.c-card__header-badge {
  border-radius: 4px;
  padding: 4px 10px;
  font-weight: 700;
  line-height: 1em;
}
@media print, screen and (min-width: 768px) {
  .c-card__header-badge {
    border-radius: 5px;
    padding: 8px 15px;
  }
}
.c-card__header-badge.badge-campaign {
  background-color: #E60012;
  color: #fff;
}
.c-card__header-badge.badge-internet {
  border-radius: 2px;
  background-color: #F5F4F0;
  color: #E60012;
}
@media print, screen and (min-width: 768px) {
  .c-card__header-badge.badge-internet {
    border-radius: 4px;
  }
}
.c-card__header-badge.badge-web {
  border-radius: 2px;
  background-color: white;
  color: #E60012;
  border: 1px solid #E60012;
}
@media print, screen and (min-width: 768px) {
  .c-card__header-badge.badge-web {
    border-radius: 4px;
  }
}
.c-card__header .c-heading {
  margin-top: 0;
  border-bottom: 2px dashed #d4d4d4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.c-card__header .c-heading > * {
  gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .c-card__header .c-heading > * {
    gap: 20px;
  }
}
.c-card__body {
  flex-grow: 10;
  padding: 0 20px 20px;
}
@media print, screen and (min-width: 768px) {
  .c-card__body {
    padding: 0 48px 35px;
  }
}
.c-card__footer {
  flex-grow: 0;
  overflow: hidden;
}
.c-card__footer .btn__outer {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.c-card__footer .btn__outer .btn__item {
  width: 100%;
  align-items: center;
}
.c-card__footer .btn__outer .btn__item .btn__link {
  width: auto;
  min-width: 212px;
}
@media print, screen and (min-width: 768px) {
  .c-card__footer .btn__outer .btn__item .btn__link {
    min-width: 280px;
  }
}

@media print, screen and (min-width: 768px) {
  .l-grid--3cols .c-card__header {
    padding: 28px 28px 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .l-grid--3cols .c-card__header::before {
    left: 28px;
  }
}
.l-grid--3cols .c-card__body {
  padding: 0 28px 35px;
}

.category__top .products__recommend {
  display: flex;
  padding-bottom: 30px;
  flex-direction: column;
  gap: 12px 20px;
  border-bottom: 2px dashed #D4D4D4;
}
@media print, screen and (min-width: 768px) {
  .category__top .products__recommend {
    padding-bottom: 40px;
    flex-direction: row;
  }
}
@media print, screen and (min-width: 768px) {
  .category__top .products__recommend .btn__item {
    width: calc(25% - 15px);
  }
}
.category__top .products__recommend .btn__link {
  width: 100%;
  align-items: center;
}
.category__top .products__recommend .btn__link:has(.btn__link-icon) {
  padding-left: 50px;
  padding-right: 30px;
}
@media print, screen and (min-width: 768px) {
  .category__top .products__recommend .btn__link:has(.btn__link-icon) {
    padding-left: 70px;
    padding-right: 40px;
  }
}
> .category__top .products__recommend .btn__link-icon {
  text-align: center;
  width: 40px;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  > .category__top .products__recommend .btn__link-icon {
    width: 50px;
  }
}
.category__top .products__recommend .btn__link > span:not([class]) {
  flex-grow: 1;
}

.category-top-caption {
  margin-top: 60px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .category-top-caption {
    margin-top: 120px;
    width: 1240px;
    margin-right: auto;
    margin-left: auto;
  }
}
.category-top-caption__inner {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .category-top-caption__inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .category-top-caption__inner {
    gap: 40px;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 55px;
  }
}
@media print, screen and (min-width: 768px) {
  .category-top-caption__image {
    flex-shrink: 0;
  }
}
.category-top-caption__content-title {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .category-top-caption__content-title {
    font-size: 3.8rem;
  }
}
.category-top-caption__content-title {
  font-weight: 700;
}
.category-top-caption__content-text {
  line-height: 2;
}

.c-table {
  margin: 0.5em 0;
  border-top: 2px solid #d4d4d4;
  border-bottom: 2px solid #d4d4d4;
}
@media only screen and (max-width: 767px) {
  .c-table:has(.c-table-wrap) {
    table-layout: fixed;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-table td .c-table-wrap {
    position: relative;
    margin: -5px;
    padding: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .c-table td .c-table-wrap .c-table-scroll {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .c-table td .c-table-wrap .c-table-scroll > .c-table {
    width: 600px;
    min-width: 600px;
    table-layout: fixed;
    background-color: white;
  }
}
.c-table-wide {
  width: 100%;
}
.c-table-basic th {
  background-color: #F5F4F0;
}
.c-table-bordered {
  border-width: 1px;
}
.c-table-bordered th,
.c-table-bordered td {
  padding: 5px;
  border: 1px solid #d4d4d4;
}
@media print, screen and (min-width: 768px) {
  .c-table-bordered th,
  .c-table-bordered td {
    padding: 10px;
  }
}
.c-table-bordered th.borderless--top,
.c-table-bordered td.borderless--top {
  border-top-width: 0;
}
.c-table-bordered th.borderless--left,
.c-table-bordered td.borderless--left {
  border-left-width: 0;
}
.c-table-bordered th.borderless--bottom,
.c-table-bordered td.borderless--bottom {
  border-bottom-width: 0;
}
.c-table-bordered th.borderless--right,
.c-table-bordered td.borderless--right {
  border-right-width: 0;
}
.c-table-bordered th.border--top,
.c-table-bordered td.border--top {
  position: relative;
}
.c-table-bordered th.border--top::before,
.c-table-bordered td.border--top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
  display: block;
  background-color: #d4d4d4;
}
.c-table-loan-status {
  margin: 10px 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-table-loan-status {
    font-size: 2rem;
  }
}
.c-table-loan-status {
  font-weight: 700;
}
.c-table-loan-status th,
.c-table-loan-status td {
  padding: 5px;
  min-height: 50px;
  text-align: center;
  border: 2px dashed #d4d4d4;
}
@media print, screen and (min-width: 768px) {
  .c-table-loan-status th,
  .c-table-loan-status td {
    padding: 10px;
    min-height: 70px;
  }
}
.c-table-loan-status .tr-head {
  background-color: #F8F7F4;
}
.c-table-loan-status thead tr:last-of-type th,
.c-table-loan-status thead tr:last-of-type td {
  border-bottom-style: solid;
}
.c-table-loan-status thead tr *:first-of-type,
.c-table-loan-status tbody tr *:first-of-type {
  border-left: 0px none;
}
.c-table-loan-status thead tr *:last-of-type,
.c-table-loan-status tbody tr *:last-of-type {
  border-right: 0px none;
}
.c-table-loan-status span.rate {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .c-table-loan-status span.rate {
    font-size: 3.2rem;
  }
}
.c-table-loan-status span.dash {
  display: inline-block;
  margin: 0 0.25em;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .c-table-loan-status span.dash {
    font-size: 3.2rem;
  }
}
.c-table-loan-status span.dash {
  font-weight: 400;
}
.c-table-product-status {
  border: none;
}
.c-table-product-status th,
.c-table-product-status td {
  vertical-align: top;
}
.c-table-product-status th {
  padding-right: 0.5em;
  white-space: nowrap;
}
.c-table-nested td .c-table-wrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-table-nested td .c-table-wrap[data-nested-table=true] {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .c-table-nested td .c-table-wrap[data-nested-table=true][data-parent-type=direct] {
    background-color: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-nested td .c-table-wrap .c-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-table-nested td .c-table-wrap .c-table-scroll::-webkit-scrollbar {
    height: 6px;
  }
  .c-table-nested td .c-table-wrap .c-table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  .c-table-nested td .c-table-wrap .c-table-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }
  .c-table-nested td .c-table-wrap .c-table-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}
.c-table-wrap {
  position: relative;
}
.c-table-wrap.has-overflow::before, .c-table-wrap.has-overflow::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 2;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}
.c-table-wrap.has-overflow::before {
  inset-inline-start: 0;
}
.c-table-wrap.has-overflow::after {
  inset-inline-end: 0;
  transform: scaleX(-1);
}
.c-table-wrap.has-overflow.is-scrolled-start::after, .c-table-wrap.has-overflow.is-scrolled-end::before, .c-table-wrap.has-overflow.is-scrolled-middle::before, .c-table-wrap.has-overflow.is-scrolled-middle::after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .c-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-table-scroll > .c-table {
    width: 1200px;
    min-width: 1200px;
  }
}
.c-table-toast {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
  /* クリック操作を透過させる */
  z-index: 3;
  display: inline-flex;
  /* 中身（アイコンとテキスト）を横並びにする */
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: rgba(0, 0, 0, 0.85);
  /* 背景 */
  color: #ffffff;
  /* 文字色 */
  font-size: 13px;
  /* フォントサイズ */
  font-weight: 500;
  line-height: 1.4;
  border-radius: 20px;
  /* 角丸 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  /* テキストを改行させない */
}
@media (prefers-reduced-motion: reduce) {
  .c-table-toast {
    transition: opacity 0.1s ease;
  }
}
.c-table-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  /* 浮き上がる */
}
.c-table-toast svg {
  flex-shrink: 0;
  /* 縮まないようにする */
  width: 20px;
  height: 20px;
  fill: currentColor;
  /* 文字色と同じ色にする */
}
.c-table .w5 {
  width: 5% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w5-pc {
    width: 5% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w5-sp {
    width: 5% !important;
  }
}
.c-table .w10 {
  width: 10% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w10-pc {
    width: 10% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w10-sp {
    width: 10% !important;
  }
}
.c-table .w15 {
  width: 15% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w15-pc {
    width: 15% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w15-sp {
    width: 15% !important;
  }
}
.c-table .w20 {
  width: 20% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w20-pc {
    width: 20% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w20-sp {
    width: 20% !important;
  }
}
.c-table .w25 {
  width: 25% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w25-pc {
    width: 25% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w25-sp {
    width: 25% !important;
  }
}
.c-table .w30 {
  width: 30% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w30-pc {
    width: 30% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w30-sp {
    width: 30% !important;
  }
}
.c-table .w35 {
  width: 35% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w35-pc {
    width: 35% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w35-sp {
    width: 35% !important;
  }
}
.c-table .w40 {
  width: 40% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w40-pc {
    width: 40% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w40-sp {
    width: 40% !important;
  }
}
.c-table .w45 {
  width: 45% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w45-pc {
    width: 45% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w45-sp {
    width: 45% !important;
  }
}
.c-table .w50 {
  width: 50% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w50-pc {
    width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w50-sp {
    width: 50% !important;
  }
}
.c-table .w55 {
  width: 55% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w55-pc {
    width: 55% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w55-sp {
    width: 55% !important;
  }
}
.c-table .w60 {
  width: 60% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w60-pc {
    width: 60% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w60-sp {
    width: 60% !important;
  }
}
.c-table .w65 {
  width: 65% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w65-pc {
    width: 65% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w65-sp {
    width: 65% !important;
  }
}
.c-table .w70 {
  width: 70% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w70-pc {
    width: 70% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w70-sp {
    width: 70% !important;
  }
}
.c-table .w75 {
  width: 75% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w75-pc {
    width: 75% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w75-sp {
    width: 75% !important;
  }
}
.c-table .w80 {
  width: 80% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w80-pc {
    width: 80% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w80-sp {
    width: 80% !important;
  }
}
.c-table .w85 {
  width: 85% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w85-pc {
    width: 85% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w85-sp {
    width: 85% !important;
  }
}
.c-table .w90 {
  width: 90% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w90-pc {
    width: 90% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w90-sp {
    width: 90% !important;
  }
}
.c-table .w95 {
  width: 95% !important;
}
@media print, screen and (min-width: 768px) {
  .c-table .w95-pc {
    width: 95% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table .w95-sp {
    width: 95% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-sp-stacks > colgroup col[class] {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-sp-stacks > tbody > tr,
  .c-table-sp-stacks > tbody > tr > th,
  .c-table-sp-stacks > tbody > tr > td {
    display: block;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .table-wrap.has-overflow::before,
  .table-wrap.has-overflow::after {
    transition: none;
  }
}
html {
  scroll-padding-top: 120px;
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 178px;
  }
}

header#header {
  position: fixed;
  background-color: #fff;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #F5F4F0;
}
@media print, screen and (min-width: 768px) {
  header#header {
    position: sticky;
  }
}
header#header button {
  background-color: transparent;
  border: none;
}
header#header .header__inner {
  padding: 0 10px;
}
@media print, screen and (min-width: 768px) {
  header#header .header__inner {
    margin: 0 auto;
    width: 1240px;
    padding: 20px 20px 0;
  }
}
header#header .header__inner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  header#header .header__inner-top {
    padding: 15px 20px 0;
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__inner-top {
    padding-right: 120px;
  }
}
header#header .header__logo > a {
  display: flex;
  gap: 3px 15px;
}
@media only screen and (max-width: 767px) {
  header#header .header__logo > a {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__logo > a {
    align-items: center;
  }
}
header#header .header__logo__image {
  width: 151px;
  line-height: 0;
}
@media print, screen and (min-width: 768px) {
  header#header .header__logo__image {
    width: 215px;
  }
}
header#header .header__logo__code {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  header#header .header__logo__code {
    font-size: 1.4rem;
  }
}
header#header .header__nav {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  header#header .header__nav {
    padding-right: 40px;
  }
}
header#header .header__nav__links {
  display: none;
}
@media print, screen and (min-width: 768px) {
  header#header .header__nav__links {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
header#header .header__nav__links a {
  display: flex;
  gap: 8px;
  align-items: end;
}
header#header .header__nav__contact {
  height: 40px;
}
@media only screen and (max-width: 767px) {
  header#header .header__nav__contact {
    margin-right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__nav__contact {
    margin-left: 30px;
  }
}
header#header .header__nav__search {
  display: flex;
}
@media only screen and (max-width: 767px) {
  header#header .header__nav__search {
    height: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__nav__search {
    display: none;
  }
}
header#header .header__button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  right: 0;
  top: 0;
  width: 48px;
  height: 64px;
  border: none;
  background-color: #413C3A;
}
@media only screen and (max-width: 767px) {
  header#header .header__button {
    border-radius: 0 0 0 12px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__button {
    display: none;
  }
}
header#header .header__button > span {
  width: 22px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
header#header .header__button > span::before,
header#header .header__button > span > span, header#header .header__button > span::after {
  background-color: #fff;
  border-radius: 9999px;
  transition: all ease-out 0.1s;
}
header#header .header__button > span::before, header#header .header__button > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
}
header#header .header__button > span > span {
  width: 100%;
  height: 2px;
}
header#header .header__button.is-open > span::before {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: rotate(30deg);
}
header#header .header__button.is-open > span > span {
  visibility: hidden;
}
header#header .header__button.is-open > span::after {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: rotate(-30deg);
}
@media only screen and (max-width: 767px) {
  header#header .header__form {
    max-height: 0;
    padding-top: 15px;
    width: 100%;
    visibility: hidden;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__form {
    margin-left: 10px;
    width: 184px;
  }
}
@media only screen and (max-width: 767px) {
  header#header .header__form.is-open {
    visibility: visible;
  }
}
header#header .header__form form {
  height: 40px;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid #a9a9a9;
  position: relative;
  padding: 0 50px 0 20px;
  display: flex;
  align-items: center;
}
header#header .header__form form input[type=text] {
  border: none;
  font-size: 1.4rem;
  outline: none;
  width: 100%;
  flex-grow: 1;
}
header#header .header__form form input[type=text]::-moz-placeholder {
  color: #a9a9a9;
}
header#header .header__form form input[type=text]::placeholder {
  color: #a9a9a9;
}
header#header .header__form form button {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  header#header .header__form form button span img {
    width: 38px;
  }
}
header#header .header__category {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  header#header .header__category {
    font-size: 1.8rem;
  }
}
header#header .header__category {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  header#header .header__category {
    margin-top: 15px;
    padding-bottom: 8px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__category {
    margin: 0 auto;
    width: 1240px;
    padding: 20px 20px 0;
  }
}
header#header .header__category__list {
  display: flex;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  header#header .header__category__list::before {
    position: absolute;
    content: "";
    background-color: #F5F4F0;
    width: 2px;
    height: 32px;
    left: -1px;
    top: calc(50% - 16px);
  }
}
header#header .header__category__list-item {
  display: flex;
  flex: 1 1 0;
  position: relative;
}
header#header .header__category__list-item::after {
  position: absolute;
  content: "";
  background-color: #F5F4F0;
  width: 2px;
  height: 28px;
  right: -1px;
  top: calc(50% - 14px);
}
@media only screen and (max-width: 767px) {
  header#header .header__category__list-item {
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__category__list-item::after {
    height: 32px;
    top: calc(50% - 16px);
  }
}
header#header .header__category__list-item a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
header#header .header__category__list-item a span {
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  header#header .header__category__list-item a span {
    width: 100%;
    line-height: 32px;
    height: 32px;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__category__list-item a span {
    text-align: center;
    width: 252px;
    line-height: 44px;
    height: 44px;
    border-radius: 4px;
  }
}
.category-personal header#header .header__category__list-item.personal span, .category-business header#header .header__category__list-item.business span, .category-corporate header#header .header__category__list-item.corporate span, .category-recruit header#header .header__category__list-item.recruit span {
  background-color: #EEECE8;
}

@media only screen and (max-width: 767px) {
  header#header .header__category__list-item:nth-of-type(n+3) {
    display: none;
  }
}
header#header .header__subcategory {
  display: flex;
  align-items: center;
  margin: 5px 0 0;
  height: 1px;
  background-color: #EEECE8;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  header#header .header__subcategory {
    display: none;
  }
}
header#header .header__subcategory__list {
  display: none;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 1240px;
  padding: 0 20px;
}
header#header .header__subcategory__list > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
header#header .header__subcategory__list > li:has(button) {
  padding-right: 28px;
}
header#header .header__subcategory__list > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header#header .header__subcategory__list > li > a > .link__icon {
  line-height: 0;
}
header#header .header__subcategory__list > li > button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_down.svg") right center no-repeat;
}
header#header .header__subcategory__list > li > button::before {
  display: none;
}
header#header .header__subcategory__list > li > button.is-open {
  background-image: url("/echishin/assets/images/common/ic_arrow-simple_red_up.svg");
}
@media only screen and (max-width: 767px) {
  header#header .header__subctpanels {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__subctpanels {
    position: absolute;
    left: 0;
    top: 184px;
    width: 100%;
    background-color: #F8F7F4;
    z-index: 100;
  }
}
header#header .header__subctpanel__inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 30px;
}
header#header .header__subctpanel__body {
  position: relative;
  z-index: 1;
  padding: 30px 0 20px;
  display: flex;
  overflow: auto;
  min-width: 1410px;
  min-height: 500px;
  max-height: calc(100dvh - 220px);
  margin: 0 auto;
}
header#header .header__subctpanel__body::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  background-position: left top;
  background-repeat: no-repeat;
}
.--p-tameru .header__subctpanel__body::before {
  background-image: url(/echishin/assets/images/common/bg_subctpanel--p-tameru.png);
}

.--p-kariru .header__subctpanel__body::before {
  background-image: url(/echishin/assets/images/common/bg_subctpanel--p-kariru.png);
}

.--p-fund .header__subctpanel__body::before {
  background-image: url(/echishin/assets/images/common/bg_subctpanel--p-fund.png);
}

.--p-sonaeru .header__subctpanel__body::before {
  background-image: url(/echishin/assets/images/common/bg_subctpanel--p-sonaeru.png);
}

header#header .header__subctpanel__title {
  flex-shrink: 0;
  width: 210px;
  padding: 120px 0 0 0;
  display: flex;
  flex-direction: column;
}
header#header .header__subctpanel__title .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  flex-grow: 1;
}
header#header .header__subctpanel__title .title .text {
  text-align: center;
  font-family: "IBM Plex Sans JP";
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1.28px;
}
header#header .header__subctpanel__title .title .caption {
  text-align: center;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 29.75px */
  letter-spacing: 0.68px;
}
header#header .header__subctpanel__title .links {
  width: 210px;
  padding: 0 0 10px 30px;
  font-size: 1.5rem;
}
header#header .header__subctpanel__title .links .btn__link {
  width: 100%;
  padding: 10px 30px 10px 10px;
}
header#header .header__subctpanel__title .links .btn__link--arrow-right {
  background-position: right 5px center;
  background-size: 20px auto;
}
header#header .header__subctpanel__title .links .btn__link span {
  font-size: 1.5rem;
  line-height: 1.25;
}
header#header .header__subctpanel__content {
  display: flex;
}
header#header .header__subctpanel__content .column {
  padding: 0 25px;
  width: 300px;
}
header#header .header__subctpanel__content .column.wide {
  width: 1048px;
}
header#header .header__subctpanel__content .column.col2 {
  width: 568px;
}
header#header .header__subctpanel__content .column-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
header#header .header__subctpanel__content .column-title:not(:first-child) {
  margin-top: 40px;
}
header#header .header__subctpanel__content .column + .column {
  position: relative;
}
header#header .header__subctpanel__content .column + .column::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border: 1.5px dashed #d4d4d4;
  left: 0;
  top: 0;
}
header#header .header__subctpanel__content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
header#header .header__subctpanel__content .buttons li {
  width: 248px;
}
header#header .header__subctpanel__content .buttons.wide li {
  width: 486px;
}
header#header .header__subctpanel__content .buttons.tall .btn__link {
  min-height: 110px;
}
header#header .header__subctpanel__content .buttons .btn__item,
header#header .header__subctpanel__content .buttons .btn__link {
  width: 100%;
}
header#header .header__subctpanel__content .buttons .btn__link {
  padding: 5px 35px 5px 55px;
  min-height: 64px;
}
header#header .header__subctpanel__content .buttons .btn__link-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header#header .header__subctpanel__content .buttons .btn__link > span:not([class]) {
  flex-grow: 1;
  line-height: 1.4;
}
header#header .header__subctpanel__close {
  height: 30px;
  background-color: #413C39;
  display: flex;
  justify-content: center;
  align-items: center;
}
header#header .header__subctpanel__close button {
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 1.7rem;
  list-style: 1;
  gap: 15px;
}
header#header .header__subctpanel__close button::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 10px;
  background: url("/echishin/assets/images/common/ic_cross_white.svg") center/contain no-repeat;
}
header#header .header__menu {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  background: rgba(65, 60, 58, 0.8);
  font-weight: 500;
  transform: translateX(100%);
  transition: all ease-out 0.25s;
}
header#header .header__menu.is-open {
  transform: translateX(0);
}
@media only screen and (max-width: 767px) {
  header#header .header__menu {
    overflow-y: auto;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu {
    overflow: auto;
    padding: 40px 60px;
  }
}
header#header .header__menu__contents {
  display: grid;
  gap: 0 18px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "headerBlock01 headerBlock01" "headerBlock02 headerBlock02" "headerBlock03 headerBlock03" "headerBlock04 headerBlock04" "headerBlock05 headerBlock06";
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__contents {
    width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    grid-template-columns: 580px 270px 270px;
    grid-template-areas: "headerBlock01 headerBlock02 headerBlock02" "headerBlock03 headerBlock04 headerBlock05" "headerBlock03 headerBlock04 headerBlock06";
  }
}
header#header .header__menu__block {
  background-color: #F8F7F4;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block {
    padding: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }
}
header#header .header__menu__block-01 {
  grid-area: headerBlock01;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-01 {
    border-radius: 12px 12px 0 0;
  }
}
header#header .header__menu__block-02 {
  grid-area: headerBlock02;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-02 {
    border-top: 1px solid #d4d4d4;
  }
}
header#header .header__menu__block-03 {
  grid-area: headerBlock03;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-03 {
    border-top: 1px solid #d4d4d4;
  }
}
header#header .header__menu__block-04 {
  grid-area: headerBlock04;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-04 {
    border-top: 1px solid #d4d4d4;
    border-radius: 0 0 12px 12px;
  }
}
header#header .header__menu__block-05 {
  grid-area: headerBlock05;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-05 {
    border-radius: 12px;
    margin-top: 18px;
  }
}
header#header .header__menu__block-06 {
  grid-area: headerBlock06;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block-06 {
    border-radius: 12px;
    margin-top: 18px;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block__target {
    padding: 16px 30px;
  }
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block__target.is-open {
    display: flex;
  }
}
header#header .header__menu__block > P {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  header#header .header__menu__block > P {
    font-size: 2rem;
  }
}
header#header .header__menu__block > P {
  font-weight: 700;
  position: relative;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block > P.header__menu__title {
    padding: 16px 0 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 16px solid #E60013;
    border-bottom: 2px dashed #413C3A;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block > P.header__menu__title::after {
    content: "";
    width: 28px;
    aspect-ratio: 1;
    background: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg") center/contain no-repeat;
  }
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block > P:has(button) {
    padding-left: 32px;
  }
}
header#header .header__menu__block > P > button {
  position: absolute;
  border: none;
  background: url("/echishin/assets/images/common/ic_circle-plus_red.svg") center left/22px auto no-repeat;
  width: 100%;
  height: 100%;
  line-height: 1;
  text-indent: -9999px;
  left: 0;
  top: 0;
}
header#header .header__menu__block > P > button.is-open {
  background-image: url("/echishin/assets/images/common/ic_circle-minus_red.svg");
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block > P > button {
    display: none;
  }
}
header#header .header__menu__block ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 16px 32px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  header#header .header__menu__block ul {
    font-size: 1.7rem;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block ul {
    align-self: flex-start;
    flex-grow: 20;
    gap: 10px 28px;
    margin-top: 0;
    padding: 0;
  }
}
header#header .header__menu__block ul li {
  padding-left: 16px;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_right.svg") left 8px/8px auto no-repeat;
}
header#header .header__menu__block ul li a {
  text-decoration: underline;
}
header#header .header__menu__block ul.header__menu__sublink {
  margin-top: 10px;
  gap: 10px 20px;
}
header#header .header__menu__block ul.header__menu__sublink li {
  background: none;
  padding-left: 0;
}
header#header .header__menu__block ul.header__menu__sublink li a {
  font-size: 1.6rem;
}
header#header .header__menu__block ul.header__menu__sololink {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  header#header .header__menu__block ul.header__menu__sololink {
    font-size: 2rem;
  }
}
header#header .header__menu__block ul.header__menu__sololink {
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__block ul.header__menu__sololink {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block ul.header__menu__sololink {
    width: 100%;
    gap: 25px 0;
    padding: 30px 25px;
  }
}
header#header .header__menu__block ul.header__menu__sololink > li {
  border-bottom: 1px solid #E0DFDC;
  padding: 0 0 10px;
  background-image: none;
}
header#header .header__menu__block ul.header__menu__sololink > li a {
  display: block;
  padding: 0 30px 0 0;
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg") right center/22px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__block ul.header__menu__sololink > li a {
    background-size: 24px auto;
  }
}
header#header .header__menu__icon {
  position: relative;
  padding: 0;
}
header#header .header__menu__icon > p {
  position: relative;
  width: 100%;
  height: 100%;
}
header#header .header__menu__icon a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
  font-size: 1.7rme;
}
@media only screen and (max-width: 767px) {
  header#header .header__menu__icon a {
    gap: 20px;
    padding: 30px 0;
  }
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__icon a {
    gap: 15px;
    padding-bottom: 40px;
  }
}
header#header .header__menu__icon a::before {
  content: "";
}
header#header .header__menu__icon a::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg") right bottom/contain no-repeat;
}
@media print, screen and (min-width: 768px) {
  header#header .header__menu__icon a::after {
    right: 11px;
    bottom: 15px;
  }
}
header#header .header__menu__inq a::before {
  width: 47px;
  aspect-ratio: 47/32;
  background: url("/echishin/assets/images/common/ic_sidemenu_inq.svg") center/contain no-repeat;
}
header#header .header__menu__faq a::before {
  width: 44px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_sidemenu_faq.svg") center/contain no-repeat;
}

.category-personal .header#header .header__subcategory {
  display: flex;
  align-items: center;
  height: 56px;
}
.category-personal .header#header .header__subcategory .header__subcategory__list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .category-personal .header#header .header__subcategory {
    display: none;
  }
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -50px;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border: 2px solid #000;
  z-index: 1000;
}
.skip-link:focus {
  top: 8px;
}

.skip-target {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

aside#sidemenu {
  position: fixed;
  z-index: 10001;
  background-color: white;
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
  border-left: 1px solid #D4D4D4;
  box-shadow: 0 4px 8px 0 rgba(19, 19, 19, 0.08);
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu {
    right: 0;
    bottom: 95px;
    border-radius: 8px 0 0 8px;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu {
    right: -820px;
    top: 0;
    border-radius: 0 0 0 20px;
  }
}
aside#sidemenu.is-open {
  right: 0;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu.is-open .sidemenu__button::after {
    content: "";
    width: 1em;
    height: 1em;
    background: url("/echishin/assets/images/common/ic_cross_primary.svg") center/contain no-repeat;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu.is-open .sidemenu__button span::before {
    content: "閉じる";
  }
}
@media only screen and (max-width: 767px) {
  aside#sidemenu.is-open .sidemenu__menus {
    display: flex;
  }
}
aside#sidemenu .sidemenu__inner {
  display: grid;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__inner {
    grid-template-columns: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__inner {
    width: 820px;
  }
}
aside#sidemenu .sidemenu__button {
  background-color: white;
  border: none;
  border-right: 1px solid #D4D4D4;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "palt";
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  aside#sidemenu .sidemenu__button {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__button {
    height: 140px;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__button {
    position: fixed;
    right: 0;
    top: 0;
    border-radius: 0 0 0 20px;
    background-color: white;
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    border-left: 1px solid #D4D4D4;
    box-shadow: 0 4px 8px 0 rgba(19, 19, 19, 0.08);
    width: 48px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
aside#sidemenu .sidemenu__button span {
  white-space: nowrap;
}
aside#sidemenu .sidemenu__button span::before {
  content: "ご用件は？";
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__menus {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 60, 58, 0.8);
    padding: 20px;
    z-index: 10;
  }
}
aside#sidemenu .sidemenu__links {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}
aside#sidemenu .sidemenu__link {
  padding: 15px 0;
  display: flex;
  font-weight: 500;
}
aside#sidemenu .sidemenu__link a {
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__link a {
    flex-direction: column;
  }
}
aside#sidemenu .sidemenu__link a::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__link a {
    padding-left: 10px;
  }
}
aside#sidemenu .sidemenu__link + .sidemenu__link {
  border-top: 1px solid #D4D4D4;
}
aside#sidemenu .sidemenu__link--rec a::before {
  width: 22px;
  aspect-ratio: 22/15;
  background-image: url("/echishin/assets/images/common/ic_sidemenu_rec.svg");
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__link--rec a::before {
    width: 40px;
  }
}
aside#sidemenu .sidemenu__link--faq a::before {
  width: 20px;
  aspect-ratio: 1;
  background-image: url("/echishin/assets/images/common/ic_sidemenu_faq.svg");
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__link--faq a::before {
    width: 28px;
  }
}
aside#sidemenu .sidemenu__link--inq a::before {
  width: 22px;
  aspect-ratio: 22/15;
  background-image: url("/echishin/assets/images/common/ic_sidemenu_inq.svg");
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__link--inq a::before {
    aspect-ratio: 31/36;
    width: 31px;
    background-image: url("/echishin/assets/images/common/ic_sidemenu_cardlost.svg");
  }
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__close {
    position: absolute;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: translate(50%, -50%);
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__close {
    display: none;
  }
}
aside#sidemenu .sidemenu__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__buttons {
    padding: 10px;
    position: relative;
    background-color: #fff;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__buttons {
    gap: 48px;
    padding: 48px 80px 48px 48px;
  }
}
aside#sidemenu .sidemenu__block {
  display: flex;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__block {
    flex-direction: column;
    gap: 10px;
  }
}
aside#sidemenu .sidemenu__block .c-heading {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__block .c-heading {
    justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block .c-heading {
    width: 230px;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block .c-heading::after {
    position: absolute;
    display: block;
    content: "";
    border-right: 1px dashed #d4d4d4;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
  }
}
aside#sidemenu .sidemenu__block .c-heading .c-heading-h3 .c-heading-title {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  aside#sidemenu .sidemenu__block .c-heading .c-heading-h3 .c-heading-title {
    font-size: 2.4rem;
  }
}
aside#sidemenu .sidemenu__block .c-heading .c-heading-h3 .c-heading-title {
  font-weight: 700;
}
aside#sidemenu .sidemenu__block ul {
  display: flex;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__block ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
aside#sidemenu .sidemenu__block ul li {
  padding: 0 5px;
  flex: 1 1 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  aside#sidemenu .sidemenu__block ul li:nth-of-type(2n+1):not(:last-of-type)::after {
    position: absolute;
    display: block;
    content: "";
    border-right: 1px dashed #d4d4d4;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block ul li:not(:last-of-type)::after {
    position: absolute;
    display: block;
    content: "";
    border-right: 1px dashed #d4d4d4;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
  }
}
aside#sidemenu .sidemenu__block ul li a {
  display: flex;
  text-align: center;
  font-weight: 700;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block ul li a:hover::after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    opacity: 0.3;
    background: #BEBBAC;
    background-blend-mode: multiply;
  }
}
aside#sidemenu .sidemenu__block.is-personal, aside#sidemenu .sidemenu__block.is-business {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-personal::after, aside#sidemenu .sidemenu__block.is-business::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #D4D4D4;
    left: 0;
    bottom: -24px;
  }
}
aside#sidemenu .sidemenu__block.is-personal a, aside#sidemenu .sidemenu__block.is-business a {
  height: 100%;
  padding-top: 40px;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-personal a, aside#sidemenu .sidemenu__block.is-business a {
    padding-top: 70px;
  }
}
aside#sidemenu .sidemenu__block.is-personal a, aside#sidemenu .sidemenu__block.is-business a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-personal a, aside#sidemenu .sidemenu__block.is-business a {
    font-size: 1.7rem;
  }
}
aside#sidemenu .sidemenu__block.is-personal a, aside#sidemenu .sidemenu__block.is-business a {
  line-height: 1.3;
}
aside#sidemenu .sidemenu__block.is-personal a .link__icon, aside#sidemenu .sidemenu__block.is-business a .link__icon {
  width: 24px;
  height: 24px;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-personal a .link__icon, aside#sidemenu .sidemenu__block.is-business a .link__icon {
    width: 50px;
    height: 50px;
  }
}
aside#sidemenu .sidemenu__block.is-personal a .link__icon, aside#sidemenu .sidemenu__block.is-business a .link__icon {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
aside#sidemenu .sidemenu__block.is-personal a small, aside#sidemenu .sidemenu__block.is-business a small {
  font-size: 1.4rem;
}
aside#sidemenu .sidemenu__block.is-personal a {
  color: #E60012;
}
aside#sidemenu .sidemenu__block.is-business a {
  color: #155EA2;
}
aside#sidemenu .sidemenu__block.is-useful ul li {
  border-top: none;
}
aside#sidemenu .sidemenu__block.is-useful a {
  padding: 5px 20px 5px 5px;
  flex-direction: row;
  gap: 10px;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-useful a {
    font-size: 1.6rem;
  }
}
aside#sidemenu .sidemenu__block.is-useful a {
  background: url(/echishin/assets/images/common/ic_circle-arrow_right_red.svg) right 5px center/15px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  aside#sidemenu .sidemenu__block.is-useful a {
    padding: 0 35px 0 10px;
    background-position: right 10px center;
    background-size: 20px auto;
  }
}

.footer {
  padding-top: 30px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer {
    font-size: 1.7rem;
  }
}
.footer {
  font-weight: 500;
  border-top: 4px solid #E60012;
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}
.footer__pagetop {
  position: fixed;
  z-index: 100;
  right: 12px;
  bottom: 40px;
  width: 40px;
  aspect-ratio: 1;
  line-height: 1rem;
}
@media print, screen and (min-width: 768px) {
  .footer__pagetop {
    width: 56px;
  }
}
.footer__pagetop a {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  list-style: 1rem;
  background: #625E5D url("/echishin/assets/images/common/ic_pagetop.svg") center/14px auto no-repeat;
  border-radius: 2px;
}
@media print, screen and (min-width: 768px) {
  .footer__pagetop a {
    border-radius: 4px;
    background-size: 17px auto;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__pagetop a:hover {
    transition: 0.1s all ease-out;
    background-position: center 16px;
  }
}
.footer__pagetop a span {
  display: block;
  text-indent: -9999px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
}
.footer__logo img {
  max-width: 170px;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .footer__logo img {
    max-width: 260px;
  }
}
.footer__nav {
  display: flex;
  margin-top: 25px;
  gap: 20px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 45px;
    justify-content: space-between;
  }
}
.footer__nav .footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(50% - 10px);
}
@media print, screen and (min-width: 768px) {
  .footer__column {
    width: 240px;
  }
}
.footer__category {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .footer__category {
    font-size: 2rem;
  }
}
.footer__category {
  font-weight: 700;
  border-bottom: 1px solid #E0DFDC;
  padding: 0 0 10px;
}
.footer__category a {
  display: block;
  padding: 0 25px 0 0;
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg") right center/20px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  .footer__category a {
    padding-right: 30px;
    background-size: 24px auto;
  }
}
.footer__bottom {
  color: black;
  background-color: #F8F7F4;
  padding: 30px 0;
  border-top: 1px solid #F5F4F0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__bottom .footer__sub-links {
  padding-bottom: 20px;
  border-bottom: 1px solid #D4D4D4;
}
.footer__bottom .footer__sub-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}
.footer__bottom .footer__sub-links li {
  padding: 0 1em 0 0;
  border-right: 1px solid #A2A2A2;
}
.footer__bottom .footer__sub-links li:last-child {
  border-right: none;
  padding-right: 0;
}
.footer__bottom .footer__sub-links a {
  color: #155EA2;
}
.footer__bottom .footer__sub-links a:hover {
  color: #E60012;
}
.footer__bottom p {
  margin-top: 10px;
}
.footer__copy {
  padding: 10px 0;
  background-color: #413C3A;
  color: white;
  text-align: center;
}

@keyframes fade-slide {
  0% {
    opacity: 0;
  }
  6.25% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  39.5833333333% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
body.site__top section.mv-top {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top {
    padding: 24px 24px 0;
  }
}
body.site__top section.mv-top .mv-top__photo {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__photo {
    width: 100%;
    aspect-ratio: 376/460;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__photo {
    width: 100%;
    height: 568px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__photo__image img {
    width: 100%;
    height: 568px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
    border-radius: 20px;
  }
}
body.site__top section.mv-top .mv-top__photo__caption {
  position: absolute;
  color: white;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 22px;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  body.site__top section.mv-top .mv-top__photo__caption {
    font-size: 3.2rem;
  }
}
body.site__top section.mv-top .mv-top__photo__caption {
  line-height: 1em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__photo__caption {
    left: 32px;
    bottom: 21.2765957447vw;
    letter-spacing: 0.48rem;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__photo__caption {
    gap: 30px;
    left: 48px;
    bottom: 48px;
    letter-spacing: 0.64rem;
  }
}
body.site__top section.mv-top .mv-top__photo__caption > span:not(:last-of-type) {
  position: relative;
}
body.site__top section.mv-top .mv-top__photo__caption > span:not(:last-of-type)::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 3px dashed #fff;
  opacity: 0.6;
  left: 0;
  bottom: -11px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__photo__caption > span:not(:last-of-type)::after {
    bottom: -15px;
  }
}
body.site__top section.mv-top .mv-top__links {
  z-index: 2;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__links {
    position: relative;
    width: calc(100% - 20px);
    margin: -15.9574468085% auto 0;
    background-color: white;
    border: 10px solid #F5F4F0;
    padding: 20px 12px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.925);
    right: 48px;
    top: 50%;
    transform: translateY(calc(-50% + 12px));
    padding: 18px 24px;
    width: 480px;
  }
}
body.site__top section.mv-top .mv-top__links .mv-top__links__list + .c-heading {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #d4d4d4;
}
body.site__top section.mv-top .mv-top__links .c-heading-h3 .c-heading-title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links .c-heading-h3 .c-heading-title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links .c-heading-h3 .c-heading-title {
    background-position: left 12px;
  }
}
body.site__top section.mv-top .mv-top__links__list {
  margin-top: 15px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__links__list {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links__list {
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__links__list ul {
    display: flex;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links__list ul {
    display: contents;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__links__list ul + ul {
    border-top: 1px solid #d4d4d4;
    padding-top: 20px;
    margin-top: 20px;
  }
}
body.site__top section.mv-top .mv-top__links__list ul li {
  padding: 0 5px;
  flex: 1 1 0;
  position: relative;
}
body.site__top section.mv-top .mv-top__links__list ul li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #d4d4d4;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__links__list ul + ul li::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #d4d4d4;
  }
}
body.site__top section.mv-top .mv-top__links__list a {
  color: #E60012;
}
body.site__top section.mv-top .mv-top__links__list.is-business a {
  color: #155EA2;
}
body.site__top section.mv-top .mv-top__link {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__link {
    padding-top: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__link:hover::before {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    opacity: 0.3;
    background: #BEBBAC;
    background-blend-mode: multiply;
  }
}
body.site__top section.mv-top .mv-top__link__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__link__icon {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }
}
body.site__top section.mv-top .mv-top__link__text {
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  body.site__top section.mv-top .mv-top__link__text {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.mv-top .mv-top__link__text {
    text-align: center;
  }
}
body.site__top section.mv-top .mv-top__link__text small {
  font-weight: 700;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  body.site__top section.mv-top .mv-top__link__text small {
    font-size: 1.4re;
  }
}
body.site__top section.important {
  margin: 10px 0 100px;
  padding: 0 10px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important {
    margin: 25px auto 120px;
    padding: 0 24px;
  }
}
body.site__top section.important > .inner {
  display: flex;
  border-radius: 12px;
  border: 2px solid #E60012;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important > .inner {
    border-radius: 20px;
    overflow: hidden;
  }
}
body.site__top section.important > .inner > .important-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  gap: 12px 8px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  body.site__top section.important > .inner > .important-title {
    font-size: 2.2rem;
  }
}
body.site__top section.important > .inner > .important-title {
  color: #E60012;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-title {
    padding: 16px 0;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important > .inner > .important-title {
    flex-direction: column;
    flex-shrink: 0;
    width: 280px;
  }
}
body.site__top section.important > .inner > .important-title::before {
  content: "";
  position: absolute;
  display: block;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-title::before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #E60012;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important > .inner > .important-title::before {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    border-right: 2px dashed #E60012;
  }
}
body.site__top section.important > .inner > .important-title > .icon {
  line-height: 0;
}
body.site__top section.important > .inner > .important-links {
  padding: 25px 20px;
  overflow-y: auto;
  flex-grow: 10;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-links {
    max-height: 350px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important > .inner > .important-links {
    padding: 45px 65px;
    max-height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
body.site__top section.important > .inner > .important-links ul li {
  display: flex;
  gap: 6px 24px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-links ul li {
    flex-direction: column;
  }
}
body.site__top section.important > .inner > .important-links ul li span.date {
  flex-shrink: 0;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body.site__top section.important > .inner > .important-links ul li span.date {
    font-size: 1.6rem;
  }
}
body.site__top section.important > .inner > .important-links ul li span.date {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body.site__top section.important > .inner > .important-links ul li span.date {
    line-height: 1;
  }
}
body.site__top section.important > .inner > .important-links ul li a {
  display: inline-flex;
  padding-left: 12px;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_right.svg") left 8px no-repeat;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.important > .inner > .important-links ul li a {
    background-position: left 10px;
  }
}
body.site__top section.pickup {
  overflow: hidden;
}
body.site__top section.pickup .pickup__slider {
  padding: 0 20px 80px;
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__slider {
    width: 1240px;
    margin: 0 auto;
  }
}
body.site__top section.pickup .pickup__items {
  align-items: stretch;
}
body.site__top section.pickup .pickup__item {
  display: flex;
  height: auto;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__item {
    width: 60vw;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item {
    width: 305px;
  }
}
body.site__top section.pickup .pickup__item > a,
body.site__top section.pickup .pickup__item > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F5F4F0;
  border: 1px solid #EEECE8;
  padding: 16px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a,
  body.site__top section.pickup .pickup__item > div {
    gap: 18px;
    padding: 24px;
    border-radius: 12px;
  }
}
body.site__top section.pickup .pickup__item > a.movie .pickup__item-image,
body.site__top section.pickup .pickup__item > div.movie .pickup__item-image {
  position: relative;
}
body.site__top section.pickup .pickup__item > a.movie .pickup__item-image::after,
body.site__top section.pickup .pickup__item > div.movie .pickup__item-image::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url("/echishin/assets/images/common/ic_circle-start_wihte.svg") center no-repeat;
}
body.site__top section.pickup .pickup__item > a .pickup__item-image,
body.site__top section.pickup .pickup__item > div .pickup__item-image {
  position: relative;
  width: 100%;
  aspect-ratio: 216/162;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a .pickup__item-image,
  body.site__top section.pickup .pickup__item > div .pickup__item-image {
    border-radius: 12px;
  }
}
body.site__top section.pickup .pickup__item > a .pickup__item-image img,
body.site__top section.pickup .pickup__item > div .pickup__item-image img {
  max-width: 100%;
  max-height: 100%;
}
body.site__top section.pickup .pickup__item > a .pickup__item-text,
body.site__top section.pickup .pickup__item > div .pickup__item-text {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__item > a .pickup__item-text,
  body.site__top section.pickup .pickup__item > div .pickup__item-text {
    line-height: 1.2;
  }
}
body.site__top section.pickup .pickup__item > a .pickup__item-title,
body.site__top section.pickup .pickup__item > div .pickup__item-title {
  font-weight: 700;
}
body.site__top section.pickup .pickup__item > a {
  padding-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a {
    padding-bottom: 60px;
  }
}
body.site__top section.pickup .pickup__item > a[href$=".pdf"] .pickup__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.site__top section.pickup .pickup__item > a[href$=".pdf"] .pickup__item-title::after {
  content: "";
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background: url("/echishin/assets/images/common/ic_link_pdf.svg") center/contain no-repeat;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a:hover .pickup__item-image img {
    transition: 0.25s all ease-out;
    transform: scale(1.1);
  }
}
body.site__top section.pickup .pickup__item > a.pickup__item-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 32px;
  padding: 0 0 10px 14px;
  left: 0;
  bottom: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a.pickup__item-btn {
    height: 42px;
    padding: 0 0 10px 24px;
  }
}
body.site__top section.pickup .pickup__item > a.pickup__item-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg") center/contain no-repeat;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a.pickup__item-btn::after {
    width: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__item > a.pickup__item-btn:hover::after {
    transition: 0.25s all ease-out;
    background-image: url("/echishin/assets/images/common/ic_circle-arrow_right_white.svg");
    background-position: center;
    background-size: contain;
  }
}
body.site__top section.pickup .pickup__item > a.pickup__item-btn .btn__link--arrow-right {
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
}
body.site__top section.pickup .pickup__item > a.pickup__item-btn .btn__link--arrow-right span {
  line-height: 1;
  position: relative;
  padding: 0 0 2px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__item > a.pickup__item-btn .btn__link--arrow-right span {
    font-size: 0.85em;
  }
}
body.site__top section.pickup .pickup__item > a.pickup__item-btn .btn__link--arrow-right span::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000000;
}
body.site__top section.pickup .pickup__pagination {
  display: flex;
  background-color: #EEECE8;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__pagination {
    left: 20px;
    bottom: 45px;
    width: calc(100vw - 150px);
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__pagination {
    width: 750px;
    margin-left: 20px;
    bottom: 25px;
  }
}
body.site__top section.pickup .pickup__pagination > span {
  margin: 0;
  flex: 1 1 0;
  border-radius: 9999px;
  height: 4px;
  transition: 0.25s all linear;
  background-color: transparent;
}
body.site__top section.pickup .pickup__pagination > span.swiper-pagination-bullet-active {
  background-color: #413C3A;
}
body.site__top section.pickup .pickup__prev, body.site__top section.pickup .pickup__next {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  -webkit-text-decoration: -9999px;
          text-decoration: -9999px;
  border: 1.5px solid #EEECE8;
  border-radius: 9999px;
  top: auto;
  bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__prev, body.site__top section.pickup .pickup__next {
    bottom: 0;
    width: 60px;
    height: 60px;
  }
}
body.site__top section.pickup .pickup__prev svg, body.site__top section.pickup .pickup__next svg {
  display: none;
}
body.site__top section.pickup .pickup__prev {
  background: url("/echishin/assets/images/common/ic_circle-arrow_left_white.svg") center/contain no-repeat;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__prev {
    left: auto;
    right: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__prev {
    left: 790px;
  }
}
body.site__top section.pickup .pickup__next {
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_white.svg") center/contain no-repeat;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__next {
    right: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.pickup .pickup__next {
    right: auto;
    left: 860px;
  }
}
body.site__top section.pickup .pickup__more {
  position: absolute;
  right: 0;
  bottom: 15px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.pickup .pickup__more {
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
body.site__top section.service {
  margin-top: 100px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tabs {
    border-bottom: 1px solid #D4D4D4;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tabs {
    display: grid;
    grid-template-columns: max(50% - 620px, 20px) 1fr 1fr 1fr 1fr 1fr 1fr max(50% - 620px, 20px);
    grid-template-rows: auto 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tabs article {
    display: contents;
  }
}
body.site__top section.service .service__tab {
  position: relative;
  background-color: white;
  border: none;
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab {
    border-top: 1px solid #D4D4D4;
    border-radius: 0;
    width: 100%;
    height: 92px;
    padding: 12px 20px;
    gap: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tab {
    grid-row: 1;
    display: flex;
    flex-direction: column-reverse;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    padding: 6px 0;
    gap: 6px;
  }
}
body.site__top section.service .service__tab-hidden {
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab::before {
    position: relative;
    z-index: 5;
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background: url("/echishin/assets/images/common/ic_circle-plus_red.svg") center/contain no-repeat;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tab::before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 15px);
    right: 0px;
    top: 0;
    border-right: 2px dashed #F5F4F0;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab.service__tab-link::before {
    background-image: url("/echishin/assets/images/common/ic_circle-arrow_right_red.svg");
  }
}
body.site__top section.service .service__tab.is-open {
  cursor: default;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tab.is-open {
    color: #E60012;
    background-color: #F5F4F0;
    filter: drop-shadow(0 4px 4px rgba(65, 60, 58, 0.08));
    overflow: visible;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab.is-open::before {
    background-image: url("/echishin/assets/images/common/ic_circle-minus_red.svg");
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tab.is-open::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 46px;
    height: 12px;
    background-color: #F5F4F0;
    /* なめらかな辺：clip-path三角 */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    /* ※影は親のfilterでまとめて付くのでここは不要 */
    pointer-events: none;
  }
}
body.site__top section.service .service__tab h4 {
  position: relative;
  z-index: 10;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  body.site__top section.service .service__tab h4 {
    font-size: 2rem;
  }
}
body.site__top section.service .service__tab h4 {
  text-shadow: 0 0 2px #D4D4D4;
  text-align: left;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab h4 {
    flex-grow: 1;
  }
}
body.site__top section.service .service__tab > figure.article__header__bg {
  position: static;
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__tab > figure.article__header__bg {
    width: 90px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__tab > figure.article__header__bg {
    width: 160px;
  }
}
body.site__top section.service .service__content {
  background-color: #f5f4f0;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__content {
    grid-row: 2;
    grid-column: 1/-1;
  }
}
body.site__top section.service .service__content-inner {
  display: grid;
  padding: 30px 20px;
  gap: 20px;
  grid-template-areas: "chead" "btnlink" "morelink";
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__content-inner {
    width: 1240px;
    margin: 0 auto;
    padding: 45px 20px;
    gap: 12px 40px;
    align-items: center;
    grid-template-columns: auto 1fr;
    grid-template-areas: "chead morelink" "btnlink btnlink";
  }
}
body.site__top section.service .service__content-inner > .c-heading {
  grid-area: chead;
}
body.site__top section.service .service__content-inner > .more__link {
  grid-area: morelink;
}
@media only screen and (max-width: 767px) {
  body.site__top section.service .service__content-inner > .more__link {
    justify-self: center;
  }
}
body.site__top section.service .service__content-inner > .btn__links {
  grid-area: btnlink;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.service .service__content-inner > .btn__links .btn__item .btn__link {
    padding: 10px 0px 10px 35px;
  }
}
body.site__top section.lifestage {
  margin-top: 120px;
}
body.site__top section.lifestage > .inner {
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.lifestage > .inner {
    display: flex;
    flex-wrap: wrap;
    width: 1240px;
    margin: 0 auto;
    justify-content: space-between;
  }
}
body.site__top section.lifestage .c-heading-title small {
  vertical-align: middle;
  margin-left: 1em;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body.site__top section.lifestage .c-heading-title small {
    font-size: 2.4rem;
  }
}
body.site__top section.lifestage .lifestage-caption {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.lifestage .lifestage-caption {
    gap: 12px;
  }
}
body.site__top section.lifestage .lifestage-caption strong {
  font-size: 2rem;
}
@media (min-width: 768px) {
  body.site__top section.lifestage .lifestage-caption strong {
    font-size: 3.8rem;
  }
}
body.site__top section.lifestage .lifestage-caption strong {
  font-weight: 700;
  margin-bottom: 20px;
}
body.site__top section.lifestage .lifestage-caption p {
  margin: 0;
}
body.site__top section.lifestage .lifestage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.lifestage .lifestage-cards {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.lifestage .lifestage-cards {
    margin-top: 30px;
    gap: 24px;
  }
}
body.site__top section.lifestage .lifestage-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: white;
  display: grid;
  padding: 60px 12px 20px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.lifestage .lifestage-card {
    grid-template-areas: "ls-title" "ls-caption" "ls-button";
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.lifestage .lifestage-card {
    padding: 20px 20px 20px 35px;
    gap: 0 24px;
    align-items: end;
    grid-template-rows: 1fr auto;
    grid-template-areas: "ls-title ls-title" "ls-caption ls-button";
    width: calc(50% - 12px);
    height: 210px;
    border-radius: 12px;
  }
}
body.site__top section.lifestage .lifestage-card__image {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.site__top section.lifestage .lifestage-card__image figure {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.lifestage .lifestage-card__image figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
body.site__top section.lifestage .lifestage-card__title {
  grid-area: ls-title;
  margin: 0;
  align-self: end;
}
body.site__top section.lifestage .lifestage-card__caption {
  grid-area: ls-caption;
}
body.site__top section.lifestage .lifestage-card__button {
  grid-area: ls-button;
}
@media only screen and (max-width: 767px) {
  body.site__top section.lifestage .lifestage-card__button {
    justify-self: end;
  }
}
body.site__top section.help {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.site__top section.help {
    padding-bottom: 46.5425531915%;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help {
    padding-bottom: 265px;
    background-size: cover;
  }
}
body.site__top section.help::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, #FFF 26.48%, rgba(255, 255, 255, 0) 100%);
  height: 117.0212765957vw;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help::before {
    height: 627px;
  }
}
body.site__top section.help .help__bg {
  position: absolute;
  z-index: -1;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  opacity: 0;
  animation: fade-slide 24s infinite;
}
body.site__top section.help .help__bg:nth-child(1) {
  background-image: url("/echishin/assets/images/top/bg_help01.webp");
  animation-delay: 0s;
}
body.site__top section.help .help__bg:nth-child(2) {
  background-image: url("/echishin/assets/images/top/bg_help02.webp");
  animation-delay: 8s;
}
body.site__top section.help .help__bg:nth-child(3) {
  background-image: url("/echishin/assets/images/top/bg_help03.webp");
  animation-delay: 16s;
}
body.site__top section.help .help-cards {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-cards {
    grid-template-columns: repeat(3, 1fr);
    width: 1240px;
    margin: 0 auto;
  }
}
body.site__top section.help .help-card {
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card {
    border-radius: 12px;
  }
}
body.site__top section.help .help-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.5px;
  background-color: #E60012;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 9999px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card::before {
    width: 40px;
  }
}
body.site__top section.help .help-card__body {
  background-color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  body.site__top section.help .help-card__body {
    font-size: 2rem;
  }
}
body.site__top section.help .help-card__body {
  font-weight: 700;
  padding: 25px 20px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.help .help-card__body {
    border-radius: 8px 8px 0 0;
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card__body {
    border-radius: 12px 12px 0 0;
    gap: 12px;
    flex-direction: column-reverse;
    text-align: center;
  }
}
body.site__top section.help .help-card__body figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  body.site__top section.help .help-card__body figure {
    width: 100px;
    height: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card__body figure {
    width: 130px;
    height: 80px;
  }
}
body.site__top section.help .help-card__foot {
  background-color: rgba(245, 244, 240, 0.8);
  display: flex;
  align-items: center;
  padding: 10px 20px;
  min-height: 95px;
  border-radius: 0 0 8px 8px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card__foot {
    border-radius: 0 0 12px 12px;
    height: 110px;
  }
}
body.site__top section.help .help-card__foot ul li a {
  display: inline-block;
  padding-left: 14px;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_right.svg") left 8px/8px auto no-repeat;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.help .help-card__foot ul li a {
    background-position: left 10px;
    background-size: 10px auto;
    padding-left: 20px;
  }
}
body.site__top section.community {
  background-color: rgb(248, 247, 244);
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community {
    background-color: #F5F4F0;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner {
    padding-top: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner {
    display: flex;
    width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__contents {
    padding: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__contents {
    width: 700px;
    padding: 100px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__contents .c-heading-top .c-heading-h2 {
    border-color: #E1E0DC;
  }
}
body.site__top section.community > .inner .community__contents .c-heading-title {
  display: flex;
  gap: 0 0.5em;
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__contents .c-heading-title {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__contents .c-heading-title {
    align-items: center;
  }
}
body.site__top section.community > .inner .community__contents .c-heading-title small {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  body.site__top section.community > .inner .community__contents .c-heading-title small {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__contents p {
    margin: 20px 0;
  }
}
body.site__top section.community > .inner .community__images {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__images {
    padding: 64px 0 80px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__images {
    width: 500px;
    height: 688px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__images div {
    display: flex;
    gap: 20px;
  }
}
body.site__top section.community > .inner .community__images div ul {
  display: flex;
  gap: 12px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__images div ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__images div ul + ul {
    margin-top: 12px;
  }
}
body.site__top section.community > .inner .community__images div ul li {
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__images div ul li img {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__images-line01 {
    width: 2016px;
    animation: scrollX4 24s linear infinite;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__images-line01 {
    animation: scrollY4 24s linear infinite;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.community > .inner .community__images-line02 {
    width: 1512px;
    animation: scrollX3 24s linear infinite;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.community > .inner .community__images-line02 {
    animation: scrollY3 24s linear infinite;
  }
}
body.site__top section.information {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}
body.site__top section.information > .inner {
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner {
    display: flex;
    flex-wrap: wrap;
    width: 1240px;
    margin: 0 auto;
    justify-content: space-between;
  }
}
body.site__top section.information > .inner .c-heading {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .c-heading {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.information > .inner .information__tabs {
    overflow: visible;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__tabs {
    width: 205px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__tabs__wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  body.site__top section.information > .inner .information__tabs .information__tab {
    width: calc(50% - 10px);
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__tabs .information__tab {
    height: auto;
  }
}
body.site__top section.information > .inner .information__tabs .information__tab button {
  border: none;
  border-radius: 4px;
  background-color: #EEECE8;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body.site__top section.information > .inner .information__tabs .information__tab button {
    font-size: 1.8rem;
  }
}
body.site__top section.information > .inner .information__tabs .information__tab button {
  padding: 5px 0;
  font-weight: bold;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__tabs .information__tab button {
    border-radius: 8px;
    padding: 10px 0;
  }
}
body.site__top section.information > .inner .information__tabs .information__tab button.is-open {
  background-color: #E60012;
  color: white;
}
body.site__top section.information > .inner .information__pagination {
  display: none !important;
}
body.site__top section.information > .inner .information__prev, body.site__top section.information > .inner .information__next {
  top: calc(50% - 16px);
  width: 32px;
  height: 32px;
  margin: 0;
  background-color: #fff;
  border: 1px solid #EEECE8;
  border-radius: 100%;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__prev, body.site__top section.information > .inner .information__next {
    display: none;
  }
}
body.site__top section.information > .inner .information__prev svg, body.site__top section.information > .inner .information__next svg {
  display: none;
}
body.site__top section.information > .inner .information__prev {
  left: -16px;
  background: url("/echishin/assets/images/common/ic_circle-arrow_left_white.svg") center/contain no-repeat;
}
body.site__top section.information > .inner .information__next {
  right: -16px;
  background: url("/echishin/assets/images/common/ic_circle-arrow_right_white.svg") center/contain no-repeat;
}
body.site__top section.information > .inner .information__contents {
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  body.site__top section.information > .inner .information__contents {
    max-height: 350px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__contents {
    width: 895px;
    padding-right: 20px;
    max-height: 240px;
  }
}
body.site__top section.information > .inner .information__contents ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__contents ul {
    gap: 20px;
  }
}
body.site__top section.information > .inner .information__contents ul li {
  display: flex;
  gap: 0px 24px;
}
@media only screen and (max-width: 767px) {
  body.site__top section.information > .inner .information__contents ul li {
    flex-direction: column;
  }
}
body.site__top section.information > .inner .information__contents ul li span.date {
  flex-shrink: 0;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body.site__top section.information > .inner .information__contents ul li span.date {
    font-size: 1.6rem;
  }
}
body.site__top section.information > .inner .information__contents ul li span.date {
  font-weight: 400;
}
body.site__top section.information > .inner .information__contents ul li a {
  display: inline-flex;
  padding-left: 12px;
  background: url("/echishin/assets/images/common/ic_arrow-simple_red_right.svg") left 8px no-repeat;
}
@media print, screen and (min-width: 768px) {
  body.site__top section.information > .inner .information__contents ul li a {
    background-position: left 10px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.mv-top .mv-top__links__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.mv-top .mv-top__links__list ul li {
    width: 240px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.mv-top .mv-top__links__list ul li a {
    padding: 70px 0 5px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.mv-top .mv-top__links__list ul li:not(:first-of-type)::before,
  body.site__top.category-business section.mv-top .mv-top__links__list ul + ul li::before {
    left: 0px;
    top: -10px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #d4d4d4;
    border-left: none;
  }
}
body.site__top.category-business section.category-top-caption .category-top-caption__content-title {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  body.site__top.category-business section.category-top-caption .category-top-caption__content-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.category-top-caption .category-top-caption__content-title {
    text-align: center;
  }
}
body.site__top.category-business section.support {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.site__top.category-business section.support {
    padding-bottom: 46.5425531915%;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support {
    padding-bottom: 265px;
    background-size: cover;
  }
}
body.site__top.category-business section.support::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, #FFF 50%, rgba(255, 255, 255, 0) 100%);
  height: 247.3404255319vw;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support::before {
    height: 930px;
  }
}
body.site__top.category-business section.support .c-area {
  position: relative;
  z-index: 2;
}
body.site__top.category-business section.support .c-area .btn__link {
  width: 212px;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .c-area .btn__link {
    width: 240px;
  }
}
body.site__top.category-business section.support .support__bg {
  position: absolute;
  z-index: -1;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  opacity: 0;
  animation: fade-slide 24s infinite;
}
body.site__top.category-business section.support .support__bg:nth-child(1) {
  background-image: url("/echishin/assets/images/top/bg_help01.webp");
  animation-delay: 0s;
}
body.site__top.category-business section.support .support__bg:nth-child(2) {
  background-image: url("/echishin/assets/images/top/bg_help02.webp");
  animation-delay: 8s;
}
body.site__top.category-business section.support .support__bg:nth-child(3) {
  background-image: url("/echishin/assets/images/top/bg_help03.webp");
  animation-delay: 16s;
}
body.site__top.category-business section.support .support-cards {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 0 20px;
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-cards {
    grid-template-columns: repeat(2, 1fr);
    width: 1240px;
    margin: 65px auto 0;
  }
}
body.site__top.category-business section.support .support-card {
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card {
    border-radius: 12px;
  }
}
body.site__top.category-business section.support .support-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.5px;
  background-color: #E60012;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 9999px;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card::before {
    width: 40px;
  }
}
body.site__top.category-business section.support .support-card__body {
  background-color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  display: grid;
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  body.site__top.category-business section.support .support-card__body {
    font-size: 2rem;
  }
}
body.site__top.category-business section.support .support-card__body {
  padding: 25px 20px;
}
@media only screen and (max-width: 767px) {
  body.site__top.category-business section.support .support-card__body {
    border-radius: 8px 8px 0 0;
    gap: 20px;
    align-items: center;
    grid-template-columns: 34.7222222222% 1fr;
    grid-template-areas: "scard-figure scard-title" "scard-text scard-text";
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card__body {
    border-radius: 12px 12px 0 0;
    gap: 12px;
    padding: 32px 48px;
    justify-items: center;
    grid-template-areas: "scard-title" "scard-figure" "scard-text";
  }
}
body.site__top.category-business section.support .support-card__body-title {
  grid-area: scard-title;
  font-weight: 700;
}
body.site__top.category-business section.support .support-card__body figure {
  grid-area: scard-figure;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  body.site__top.category-business section.support .support-card__body figure {
    width: 100px;
    height: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card__body figure {
    width: 130px;
    height: 80px;
  }
}
body.site__top.category-business section.support .support-card__body p {
  grid-area: scard-text;
  position: relative;
}
body.site__top.category-business section.support .support-card__body p::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #d4d4d4;
  position: absolute;
  left: 0;
  top: -10px;
}
body.site__top.category-business section.support .support-card__foot {
  background-color: rgba(245, 244, 240, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  min-height: 95px;
  border-radius: 0 0 8px 8px;
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card__foot {
    border-radius: 0 0 12px 12px;
    height: 110px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site__top.category-business section.support .support-card__foot .btn__link {
    width: 285px;
  }
}

@keyframes scrollX3 {
  0% {
    transform: translateX(-120px);
  }
  100% {
    transform: translateX(-876px);
  }
}
@keyframes scrollX4 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1008px);
  }
}
@keyframes scrollY3 {
  0% {
    transform: translateY(-160px);
  }
  100% {
    transform: translateY(-1180px);
  }
}
@keyframes scrollY4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1360px);
  }
}/*# sourceMappingURL=style.css.map */