@charset "UTF-8";
/* [ クレステック ] common.css */
/*==================================================*
 *  [ 基本設定 ]
 *==================================================*/
.head-1 {
  font-size: clamp(32px, 3.0555555556vw, 44px);
  line-height: 1.2;
}
@media only screen and (width <= 1024px) {
  .head-1 {
    line-height: 1.3;
  }
}

.head-2 {
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.4;
}

.head-3 {
  font-size: clamp(24px, 2.0833333333vw, 30px);
  line-height: 1.4;
}
@media only screen and (width <= 1024px) {
  .head-3 {
    line-height: 1.5;
  }
}

.head-4 {
  font-size: clamp(22px, 1.8055555556vw, 26px);
  line-height: 1.4;
}
@media only screen and (width <= 1024px) {
  .head-4 {
    line-height: 1.5;
  }
}

.head-5 {
  font-size: clamp(20px, 1.5277777778vw, 22px);
  line-height: 1.4;
}
@media only screen and (width <= 1024px) {
  .head-5 {
    line-height: 1.6;
  }
}

.head-6 {
  font-size: clamp(17px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.4;
}

.txt-caption {
  font-size: 1.4rem !important;
  line-height: 1.6;
}

.inter {
  font-family: "Inter", sans-serif !important;
}

.t-wh {
  color: #fff;
}

.t-acc {
  color: #3053F8;
}

.t-blk {
  color: #000;
}

.t-c {
  text-align: center;
}

.t-l {
  text-align: left;
}

.t-r {
  text-align: right;
}

.fw-m {
  font-weight: 500;
}

.fw-b {
  font-weight: 700;
}

.bg-lgry {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.bg-lgry::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  z-index: -10;
}

.bg-lbl {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.bg-lbl::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #E8EAF2;
  z-index: -10;
}

.link-ul {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .link-ul:hover {
    text-decoration: none;
  }
}

/*==================================================*
 *  [ リスト系 ]
 *==================================================*/
.circle-list {
  padding-left: 1.5em;
}
.circle-list > li {
  font-size: 1.6rem;
  line-height: 1.8;
}

.num-list {
  padding-left: 1.25em;
}
.num-list li {
  font-size: 1.6rem;
  line-height: 1.8;
}

.num-kk-list {
  list-style: none;
  counter-reset: kk-num;
}
.num-kk-list > li {
  font-size: 1.6rem;
  line-height: 1.8;
}
.num-kk-list > li::before {
  counter-increment: kk-num;
  content: "(" counter(kk-num) ")";
  padding-right: 1em;
}

.dl-list {
  margin-top: 24px;
}
.dl-list:nth-of-type(n + 2) {
  margin-top: 16px;
}
.dl-list dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.dl-list dt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #3053F8;
  border-radius: 50%;
  transform: translateY(-50%);
}

/*==================================================*
 *  [ ページタイトルBOX ]
 *==================================================*/
.page-ttlbox {
  display: flex;
  flex-direction: column-reverse;
}
.page-ttlbox:has(.page-ttl-c), .page-ttlbox:has(.page-ttl-d) {
  flex-direction: column;
}
.page-ttlbox div[class*="page-ttl"] {
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-ttlbox div[class*="page-ttl"] > div {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.page-ttlbox div[class*="page-ttl"] .page-subtxt {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.page-ttlbox .page-ttl-a {
  padding-top: 64px;
  padding-bottom: 48px;
}
@media only screen and (width <= 1024px) {
  .page-ttlbox .page-ttl-a {
    padding-top: 40px;
  }
}
.page-ttlbox .page-ttl-b > div {
  padding-top: 64px;
}
.page-ttlbox .page-ttl-b > div > * {
  position: relative;
  padding-bottom: clamp(16px, 1.67vw, 24px);
}
.page-ttlbox .page-ttl-b > div > *::before, .page-ttlbox .page-ttl-b > div > *::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
}
.page-ttlbox .page-ttl-b > div > *::before {
  width: 140px;
  background: #3053F8;
  z-index: +1;
}
.page-ttlbox .page-ttl-b > div > *::after {
  width: 100%;
  background: #E5E5E5;
}
@media only screen and (width <= 1024px) {
  .page-ttlbox .page-ttl-b > div {
    padding-top: 40px;
  }
}
.page-ttlbox .page-ttl-c {
  width: 100%;
  color: #fff;
  aspect-ratio: 15 / 4;
}
.page-ttlbox .page-ttl-c.flex {
  justify-content: center;
  align-items: center;
}
.page-ttlbox .page-ttl-c > div > * {
  width: 58%;
}
.page-ttlbox .page-ttl-c .page-subtxt {
  margin-top: min(40px, 2.78vw);
}
@media only screen and (width <= 1024px) {
  .page-ttlbox .page-ttl-c {
    aspect-ratio: 400 / 317;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-ttlbox .page-ttl-c > div > * {
    width: 100%;
  }
  .page-ttlbox .page-ttl-c .page-subtxt {
    margin-top: min(24px, 6vw);
  }
}
.page-ttlbox .page-ttl-d {
  color: #fff;
  aspect-ratio: 144 / 25;
}
.page-ttlbox .page-ttl-d.flex {
  justify-content: center;
  align-items: center;
}
@media only screen and (width <= 1024px) {
  .page-ttlbox .page-ttl-d {
    padding-top: 20px;
    padding-bottom: 20px;
    aspect-ratio: 5 / 2;
  }
}
.page-ttlbox .breadcrumb {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 14px auto;
}
.page-ttlbox .breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.page-ttlbox .breadcrumb ul li {
  font-size: 1.4rem;
}
.page-ttlbox .breadcrumb ul li::after {
  content: '\203A';
  display: inline-block;
  margin: 0 0.686em;
}
.page-ttlbox .breadcrumb ul li:last-child::after {
  content: none;
}
.page-ttlbox .breadcrumb ul li a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .page-ttlbox .breadcrumb ul li a:hover {
    text-decoration: none;
  }
}
@media only screen and (width <= 1024px) {
  .page-ttlbox .breadcrumb {
    display: none;
  }
}

/*==================================================*
 *  [ 見出し ]
 *==================================================*/
.ttl-minor {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
}
.ttl-minor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #E5E5E5;
}

.ttl-ul {
  display: block;
}
.ttl-ul > * {
  position: relative;
  padding-bottom: clamp(16px, 1.67vw, 24px);
}
.ttl-ul > *::before, .ttl-ul > *::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
}
.ttl-ul > *::before {
  width: 140px;
  background: #3053F8;
  z-index: +1;
}
.ttl-ul > *::after {
  width: 100%;
  background: #E5E5E5;
}

.grd-circle span {
  color: #3053F8;
}
.grd-circle span::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #677ff2, #012148);
  border-radius: 50%;
  margin-right: 10px;
}

/*==================================================*
 *  [ 配置 ]
 *==================================================*/
.flex {
  display: flex;
}

.a-c {
  align-items: center;
}

.a-fs {
  align-items: flex-start;
}

.a-fe {
  align-items: flex-end;
}

.a-s {
  align-items: stretch;
}

.j-c {
  justify-content: center;
}

.j-fs {
  justify-content: flex-start;
}

.j-fe {
  justify-content: flex-end;
}

.j-sb {
  justify-content: space-between;
}

.j-sa {
  justify-content: space-around;
}

.m-c {
  margin-left: auto;
  margin-right: auto;
}

.indent-wrap {
  padding-left: 1.5em;
}

/*==================================================*
 *  [ リンク ]
 *==================================================*/
.link-circle a {
  display: block;
}
.link-circle a span, .link-circle a b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-circle a span::after, .link-circle a b::after {
  flex-shrink: 0;
  content: '';
  display: inline-block;
  width: 24px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url("../img/icon_circle.svg") center/contain no-repeat;
  margin-left: 0.25em;
}
@media (hover: hover) {
  .link-circle a:hover {
    opacity: 0.7;
  }
}

.link-txt {
  display: block;
}
.link-txt span, .link-txt b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.link-txt span::after, .link-txt b::after {
  flex-shrink: 0;
  content: '';
  display: inline-block;
  width: 0.463em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../img/icon_chevron.svg);
  margin-left: 0.75em;
}
.link-txt span::before, .link-txt b::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .link-txt:hover span::before, .link-txt:hover b::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.link-return {
  display: block;
  width: fit-content;
}
.link-return span {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.link-return span::before {
  flex-shrink: 0;
  content: '';
  display: inline-block;
  width: 0.938em;
  height: auto;
  aspect-ratio: 5 / 4;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/icon_return.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../img/icon_return.svg);
}
@media (hover: hover) {
  .link-return:hover {
    opacity: 0.7;
  }
  .link-return:hover span {
    text-decoration: none;
  }
}

.more-btn {
  display: block;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.8;
}
.more-btn span {
  position: relative;
}
.more-btn span::after {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='11.5' fill='%233053F8' stroke='%233053F8' stroke-width='1'/><path d='M10 8.93359L13.1084 12L10 15.0664L10.9463 16L15 12L10.9463 8L10 8.93359Z' fill='%23ffffff'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 0.75em;
  transition: all .4s ease;
}
@media (hover: hover) {
  .more-btn:hover {
    color: #3053F8;
  }
  .more-btn:hover span::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='11.5' fill='%23ffffff' stroke='%233053F8' stroke-width='1'/><path d='M10 8.93359L13.1084 12L10 15.0664L10.9463 16L15 12L10.9463 8L10 8.93359Z' fill='%233053F8'/></svg>");
  }
}

.bl-btn {
  display: block;
  width: fit-content;
  min-width: 179px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  border-radius: 1.75em;
  border: 1px solid #3053F8;
  background: #3053F8;
  padding: 1em 2.5em;
  transition: all .4s ease;
}
.bl-btn span::after {
  content: '';
  display: inline-block;
  width: 0.438em;
  height: auto;
  aspect-ratio: 2 / 3;
  background: #fff;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../img/icon_chevron.svg);
  vertical-align: baseline;
  margin-left: 0.75em;
  transition: all .4s ease;
}
@media (hover: hover) {
  .bl-btn:hover {
    color: #3053F8;
    background: #fff;
  }
  .bl-btn:hover span::after {
    background: #3053F8;
  }
}

.border-btn {
  display: block;
  width: 160px;
  height: auto;
  color: #3053F8;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  border: 1px solid #3053F8;
  border-radius: 1.75em;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media (hover: hover) {
  .border-btn:hover {
    color: #fff;
    background: #3053F8;
  }
}

a.ul-link {
  color: #3053F8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  a.ul-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/*==================================================*
 *  [ コンポーネント ]
 *==================================================*/
.subpage-sec-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.subpage-sec-ttl .sec-subtxt {
  width: 100%;
  max-width: 840px;
  text-align: left;
}
@media screen and (width >= 1025px) {
  .subpage-sec-ttl .sec-subtxt {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (width <= 1024px) {
  .subpage-sec-ttl {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.menucard-half {
  margin-bottom: 80px;
}
.menucard-half .menucard-ttl {
  font-size: 2.6rem;
}
.menucard-half .menucard-ttl.ttl-minor {
  color: #3053F8;
}
.menucard-half .menucard-txt .menucard-head {
  font-family: "BIZ UDPMincho", serif !important;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0.375em;
}
.menucard-half .menucard-image img {
  width: 100%;
  border-radius: 8px;
}
.menucard-half .menucard-link {
  list-style: none;
}
.menucard-half .menucard-link li {
  margin-bottom: 12px;
}
.menucard-half .menucard-link li:last-child {
  margin-bottom: 0;
}
.menucard-half .menucard-link li a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-right: calc(1.714em + 0.5em);
}
.menucard-half .menucard-link li a::after {
  content: '';
  position: absolute;
  top: 55%;
  right: 0;
  width: 1.714em;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='11.5' fill='%233053F8' stroke='%233053F8' stroke-width='1'/><path d='M10 8.93359L13.1084 12L10 15.0664L10.9463 16L15 12L10.9463 8L10 8.93359Z' fill='%23ffffff'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all .4s ease;
}
@media (hover: hover) {
  .menucard-half .menucard-link li a:hover {
    color: #3053F8;
  }
  .menucard-half .menucard-link li a:hover::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='11.5' fill='%23ffffff' stroke='%233053F8' stroke-width='1'/><path d='M10 8.93359L13.1084 12L10 15.0664L10.9463 16L15 12L10.9463 8L10 8.93359Z' fill='%233053F8'/></svg>");
  }
}
@media screen and (width >= 1025px) {
  .menucard-half .menucard-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    margin-top: 40px;
  }
  .menucard-half .menucard-txt {
    grid-area: 1 / 1 / 2 / 2;
  }
  .menucard-half .menucard-image {
    grid-area: 1 / 2 / 3 / 3;
  }
  .menucard-half .menucard-link {
    grid-area: 2 / 1 / 3 / 2;
  }
}
@media only screen and (width <= 1024px) {
  .menucard-half {
    margin-bottom: 60px;
  }
  .menucard-half .menucard-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
}

.pcard-half {
  counter-reset: pnum 0;
}
.pcard-half .pcard-ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3053F8;
}
.pcard-half .pcard-ttl span {
  display: inline-block;
  color: #fff;
  font-family: "Inter", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  vertical-align: text-bottom;
  background: #3053F8;
  border-radius: 6px;
  padding: 0.5em 0.75em;
}
.pcard-half .pcard-ttl span.core::after {
  counter-increment: pnum 1;
  content: "CORE " counter(pnum);
}
.pcard-half .pcard-ttl span.point::after {
  counter-increment: pnum 1;
  content: "POINT " counter(pnum);
}
.pcard-half .pcard-image img {
  width: 100%;
  border-radius: 8px;
}
.pcard-half .pcard-txtarea {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pcard-half .pcard-txtarea .more-btn {
  align-self: flex-end;
}
@media screen and (width >= 1025px) {
  .pcard-half .pcard-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    margin-top: 40px;
    margin-bottom: 96px;
  }
  .pcard-half .pcard-wrap:last-child {
    margin-bottom: 0;
  }
  .pcard-half .pcard-ttl {
    grid-area: 1 / 1 / 2 / 2;
  }
  .pcard-half .pcard-image {
    grid-area: 1 / 2 / 3 / 3;
  }
  .pcard-half .pcard-txtarea {
    grid-area: 2 / 1 / 3 / 2;
  }
}
@media only screen and (width <= 1024px) {
  .pcard-half .pcard-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .pcard-half .pcard-wrap:last-child {
    margin-bottom: 0;
  }
  .pcard-half .pcard-ttl span {
    vertical-align: text-top;
  }
}

.dcard-quarter .dcard-wrap {
  display: flex;
  gap: 24px 40px;
  margin-bottom: 60px;
}
.dcard-quarter .dcard-wrap:last-child {
  margin-bottom: 0;
}
.dcard-quarter .dcard-wrap .dcard-image {
  width: 38.71%;
}
.dcard-quarter .dcard-wrap .dcard-image img {
  width: 100%;
  border-radius: 8px;
}
.dcard-quarter .dcard-wrap .dcard-txtarea {
  width: calc(100% - (38.71% + 40px));
}
.dcard-quarter .dcard-wrap .dcard-txtarea .head-4 {
  margin-bottom: 8px;
}
.dcard-quarter .dcard-wrap .dcard-txtarea .dcard-list {
  margin-top: 24px;
}
.dcard-quarter .dcard-wrap .dcard-txtarea .dcard-list:nth-of-type(n + 2) {
  margin-top: 16px;
}
.dcard-quarter .dcard-wrap .dcard-txtarea .dcard-list dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.dcard-quarter .dcard-wrap .dcard-txtarea .dcard-list dt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #3053F8;
  border-radius: 50%;
  transform: translateY(-50%);
}
.dcard-quarter .dcard-wrap .dcard-txtarea ul {
  padding-left: 1.5em;
}
@media screen and (width >= 1025px) {
  .dcard-quarter .dcard-wrap.invert {
    flex-direction: row-reverse;
  }
}
@media only screen and (width <= 1024px) {
  .dcard-quarter .dcard-wrap {
    flex-direction: column;
  }
  .dcard-quarter .dcard-wrap .dcard-image {
    width: 100%;
  }
  .dcard-quarter .dcard-wrap .dcard-txtarea {
    width: 100%;
  }
}

.dcard-half .dcard-h-wrap .dcard-h-ttl {
  color: #3053F8;
}
.dcard-half .dcard-h-wrap .dcard-h-image img {
  width: 100%;
  border-radius: 8px;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea {
  display: flex;
  flex-direction: column;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .head-5 {
  margin-bottom: 24px;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .dcard-h-list {
  margin-top: 24px;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .dcard-h-list:nth-of-type(n + 2) {
  margin-top: 16px;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .dcard-h-list:last-of-type {
  margin-bottom: 24px;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .dcard-h-list dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .dcard-h-list dt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #3053F8;
  border-radius: 50%;
  transform: translateY(-50%);
}
.dcard-half .dcard-h-wrap .dcard-h-txtarea .more-btn {
  align-self: flex-end;
}
@media screen and (width >= 1025px) {
  .dcard-half {
    margin-bottom: 96px;
  }
  .dcard-half:last-child {
    margin-bottom: 0;
  }
  .dcard-half .dcard-h-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    margin-top: 40px;
  }
  .dcard-half .dcard-h-wrap:last-child {
    margin-bottom: 0;
  }
  .dcard-half .dcard-h-wrap .dcard-h-ttl {
    grid-area: 1 / 1 / 2 / 2;
  }
  .dcard-half .dcard-h-wrap .dcard-h-image {
    grid-area: 1 / 2 / 3 / 3;
  }
  .dcard-half .dcard-h-wrap .dcard-h-txtarea {
    grid-area: 2 / 1 / 3 / 2;
  }
  .dcard-half .dcard-h-wrap.invert .dcard-h-ttl {
    grid-area: 1 / 2 / 2 / 3;
  }
  .dcard-half .dcard-h-wrap.invert .dcard-h-image {
    grid-area: 1 / 1 / 3 / 2;
  }
  .dcard-half .dcard-h-wrap.invert .dcard-h-txtarea {
    grid-area: 2 / 2 / 3 / 3;
  }
  .dcard-half .more-btn {
    margin-top: 16px;
  }
}
@media only screen and (width <= 1024px) {
  .dcard-half {
    margin-bottom: 40px;
  }
  .dcard-half:last-child {
    margin-bottom: 0;
  }
  .dcard-half .dcard-h-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .dcard-half .dcard-h-wrap:last-child {
    margin-bottom: 0;
  }
  .dcard-half .more-btn {
    margin-top: 16px;
  }
}

.qcard-wrap {
  display: flex;
  gap: 24px 60px;
  margin-bottom: 60px;
}
.qcard-wrap:last-child {
  margin-bottom: 0;
}
.qcard-wrap .qcard-txtarea {
  width: calc(100% - (22.6% + 60px));
}
.qcard-wrap .qcard-txtarea .head-3 {
  margin-bottom: 24px;
}
.qcard-wrap .qcard-image {
  width: 22.6%;
}
.qcard-wrap .qcard-image img {
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .qcard-wrap {
    align-items: center;
    flex-direction: column;
  }
  .qcard-wrap .qcard-txtarea {
    width: 100%;
  }
  .qcard-wrap .qcard-image {
    width: 72.2%;
    max-width: 500px;
  }
}

.wcard-quarter {
  position: relative;
  padding: 40px;
}
.wcard-quarter:last-child {
  margin-bottom: 0;
}
.wcard-quarter::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  z-index: -9;
}
.wcard-quarter .wcard-wrap {
  display: flex;
  gap: 16px 40px;
}
.wcard-quarter .wcard-wrap .wcard-image {
  width: 41.3%;
}
.wcard-quarter .wcard-wrap .wcard-image img {
  width: 100%;
  border-radius: 8px;
}
.wcard-quarter .wcard-wrap .wcard-txtarea {
  width: calc(100% - (41.3% + 40px));
}
.wcard-quarter .wcard-wrap .wcard-txtarea .head-3 {
  margin-bottom: 16px;
}
.wcard-quarter .wcard-wrap .wcard-txtarea .wcard-list {
  margin-top: 24px;
}
.wcard-quarter .wcard-wrap .wcard-txtarea .wcard-list:nth-of-type(n + 2) {
  margin-top: 16px;
}
.wcard-quarter .wcard-wrap .wcard-txtarea .wcard-list dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.wcard-quarter .wcard-wrap .wcard-txtarea .wcard-list dt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #3053F8;
  border-radius: 50%;
  transform: translateY(-50%);
}
.wcard-quarter .wcard-wrap .wcard-txtarea ul {
  margin-top: 16px;
}
@media screen and (width >= 1025px) {
  .wcard-quarter {
    margin-bottom: 60px;
  }
  .wcard-quarter .wcard-wrap {
    flex-direction: row-reverse;
  }
}
@media only screen and (width <= 1024px) {
  .wcard-quarter {
    padding: 20px;
    margin-bottom: 40px;
  }
  .wcard-quarter .wcard-wrap {
    flex-direction: column;
  }
  .wcard-quarter .wcard-wrap .wcard-image {
    width: 100%;
  }
  .wcard-quarter .wcard-wrap .wcard-txtarea {
    width: 100%;
  }
}

.wcard {
  position: relative;
}
.wcard:last-child {
  margin-bottom: 0;
}
.wcard::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  z-index: -9;
}
.wcard .head-3 {
  margin-bottom: 16px;
}
@media screen and (width >= 1025px) {
  .wcard {
    margin-bottom: 60px;
  }
  .wcard .wcard-wrap {
    padding: 40px;
  }
}
@media only screen and (width <= 1024px) {
  .wcard {
    margin-bottom: 40px;
  }
  .wcard .wcard-wrap {
    padding: 20px;
  }
}

.ccard-wrap {
  display: flex;
  align-items: stretch;
  gap: 40px min(40px, 2.78vw);
}
.ccard-wrap article {
  width: calc((100% - (min(40px, 2.78vw) * 2)) / 3);
}
.ccard-wrap article a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}
.ccard-wrap article a .ccard-image {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.ccard-wrap article a .ccard-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 512 / 269;
  object-fit: cover;
  transition: all .25s ease;
}
.ccard-wrap article a .ccard-txtarea {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ccard-wrap article a .ccard-txtarea time {
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02em;
}
.ccard-wrap article a .ccard-txtarea .ccard-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.ccard-wrap article a .ccard-txtarea .ccard-txt {
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media (hover: hover) {
  .ccard-wrap article a:hover .ccard-image img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  .ccard-wrap article a:hover .ccard-txtarea .ccard-ttl {
    color: #3053F8;
  }
}
@media only screen and (width <= 1024px) {
  .ccard-wrap {
    flex-direction: column;
  }
  .ccard-wrap article {
    width: 100%;
  }
}

.ncard-wrap {
  display: flex;
  flex-direction: column;
}
.ncard-wrap .ncard-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px min(40px, 2.78vw);
}
.ncard-wrap .ncard-list li {
  width: calc((100% - (min(40px, 2.78vw) * 2)) / 3);
}
.ncard-wrap .ncard-list li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  border-radius: 8px;
}
.ncard-wrap .ncard-list li a .ncard-image-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 129 / 71;
  object-fit: cover;
}
.ncard-wrap .ncard-list li a .ncard-image-wrap .icon-cat {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  display: block;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid #46C33D;
  border-radius: 4px;
  padding: 0.5em 0.667em;
  z-index: +1;
}
.ncard-wrap .ncard-list li a .ncard-image-wrap .ncard-image {
  width: 100%;
  height: auto;
  aspect-ratio: 129 / 71;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.ncard-wrap .ncard-list li a .ncard-image-wrap .ncard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .25s ease;
}
.ncard-wrap .ncard-list li a .ncard-txtarea {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.ncard-wrap .ncard-list li a .ncard-txtarea time {
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}
.ncard-wrap .ncard-list li a .ncard-txtarea .icon-subcat {
  display: inline-block;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background: #DAEED8;
  border: 1px solid #46C33D;
  padding: 0.5em 0.667em;
  margin-left: 1em;
}
.ncard-wrap .ncard-list li a .ncard-txtarea .ncard-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.ncard-wrap .ncard-list li a .ncard-txtarea .txt-caption {
  overflow-wrap: anywhere;
}
.ncard-wrap .ncard-list li a .ncard-txtarea .ncard-txt {
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media (hover: hover) {
  .ncard-wrap .ncard-list li a:hover .ncard-image-wrap .ncard-image img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  .ncard-wrap .ncard-list li a:hover .ncard-txtarea .ncard-ttl {
    color: #3053F8;
  }
}
.ncard-wrap .bl-btn {
  align-self: flex-end;
}
@media only screen and (width <= 1024px) {
  .ncard-wrap .ncard-list {
    flex-direction: column;
  }
  .ncard-wrap .ncard-list li {
    width: 100%;
  }
  .ncard-wrap .bl-btn {
    align-self: center;
  }
}

.flex-triple {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.flex-triple .ft-item {
  width: calc((100% - (40px * 2)) / 3);
  display: flex;
  flex-direction: column;
}
.flex-triple .ft-item .ft-ttl {
  margin-bottom: 8px;
}
.flex-triple .ft-item .ft-txt {
  flex-grow: 1;
  margin-bottom: 16px;
}
.flex-triple .ft-item .ft-img img {
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .flex-triple {
    flex-direction: column;
  }
  .flex-triple .ft-item {
    width: 100% !important;
  }
}

.flex-half {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.flex-half .fh-item {
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
}
.flex-half .fh-item figure, .flex-half .fh-item img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (width <= 1024px) {
  .flex-half {
    flex-direction: column;
  }
  .flex-half .fh-item {
    width: 100%;
  }
}

.stepflow .sf-wrap {
  counter-reset: sf-num 0;
  margin-top: 60px;
}
.stepflow .sf-wrap .sf-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
}
.stepflow .sf-wrap .sf-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background: #CACDD9;
  z-index: -2;
}
.stepflow .sf-wrap .sf-item:last-child {
  padding-bottom: 0;
}
.stepflow .sf-wrap .sf-item:last-child::after {
  content: none;
}
.stepflow .sf-wrap .sf-item .sf-num {
  display: block;
  width: 80px;
  height: auto;
  aspect-ratio: 1 / 1;
  color: #fff;
  font-family: "Inter", sans-serif !important;
  text-align: center;
  background: #3053F8;
  border-radius: 50%;
  padding-top: 22.5px;
}
.stepflow .sf-wrap .sf-item .sf-num p {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}
.stepflow .sf-wrap .sf-item .sf-num::after {
  counter-increment: sf-num 1;
  content: counter(sf-num,decimal-leading-zero);
  font-size: 2.2rem;
}
.stepflow .sf-wrap .sf-item .sf-txt {
  width: calc(100% - (24px + 80px));
}
.stepflow .sf-wrap .sf-item .sf-txt p {
  margin-top: 1em;
}
.stepflow .sf-wrap .sf-item .sf-txt p + ul {
  margin-top: 1em;
}

.question .qa-list {
  counter-reset: qa-num 0;
  margin-top: 60px;
}
.question .qa-list dt {
  position: relative;
  color: #3053F8;
  font-size: clamp(20px, 1.5277777778vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  background-color: #E8EAF2;
  border-radius: 8px;
  padding: 0.545em 0.727em 0.545em 2.5em;
  margin-bottom: 0.727em;
}
.question .qa-list dt::before {
  counter-increment: qa-num 1;
  content: "Q" counter(qa-num) ".";
  position: absolute;
  top: 50%;
  left: 1.067em;
  font-family: "Inter", sans-serif !important;
  font-size: 0.682em;
  transform: translateY(-50%);
}
.question .qa-list dd {
  font-size: 1.6rem;
  text-indent: -2.05em;
  padding-left: 3.65em;
  padding-right: 1.5em;
  margin-bottom: 4em;
}
.question .qa-list dd::before {
  content: "A.";
  font-family: "Inter", sans-serif !important;
  font-size: 0.938em;
  font-weight: 700;
  margin-right: 1.067em;
}
.question .qa-list dd:last-child {
  margin-bottom: 0;
}
.question .qa-list dd a.more-btn {
  padding-left: 2.0em;
  margin-top: 1.0em;
}
@media only screen and (width <= 1024px) {
  .question .qa-list dt {
    line-height: 1.6;
  }
}

.swipemove-wrap {
  position: relative;
  width: 100%;
}
.swipemove-wrap .swipe-box {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.swipemove-wrap .swipe-box .bl-tale {
  width: 100%;
  min-width: 1240px;
  border-collapse: collapse;
}
.swipemove-wrap .swipe-box .bl-tale th {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid #E5E5E5;
  padding: 0.889em;
}
.swipemove-wrap .swipe-box .bl-tale th:nth-of-type(1) {
  width: 24.25%;
  background: #3053F8;
}
.swipemove-wrap .swipe-box .bl-tale th:nth-of-type(2) {
  background: #CACDD9;
}
.swipemove-wrap .swipe-box .bl-tale td {
  font-size: 1.6rem;
  line-height: 1.8;
  vertical-align: top;
  border: 1px solid #E5E5E5;
  background: #fff;
  padding: 0.625em 1em;
}
.swipemove-wrap .swipe-box img {
  width: 100%;
  min-width: 1240px;
}
@media screen and (width >= 1025px) {
  .swipemove-wrap .swipe-hint {
    display: none;
  }
}
@media only screen and (width <= 1024px) {
  .swipemove-wrap .swipe-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    opacity: 0;
    animation: fadeOut 2s forwards ease-in-out;
    animation-play-state: paused;
  }
  .swipemove-wrap .swipe-hint .icon-swipe {
    width: 100px;
    height: auto;
    aspect-ratio: 100 / 103;
    animation: swipeMove 1.5s infinite ease-in-out;
    animation-play-state: paused;
  }
  .swipemove-wrap.is-visible .swipe-hint {
    animation-play-state: running;
  }
  .swipemove-wrap.is-visible .swipe-hint .icon-swipe {
    animation-play-state: running;
  }
}

@keyframes swipeMove {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.gry-table {
  display: flex;
  align-items: stretch;
  gap: 24px 16px;
}
.gry-table .gt-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gry-table .gt-item .bg-ttl {
  background: #E8EAF2;
  border-radius: 6px;
  padding: 8px 16px;
}
.gry-table.column-2 .gt-item {
  width: calc((100% - 16px) / 2);
}
.gry-table.column-3 .gt-item {
  width: calc((100% - (16px * 2)) / 3);
}
.gry-table.column-4 .gt-item {
  width: calc((100% - (16px * 3)) / 4);
}
@media only screen and (width <= 1024px) {
  .gry-table {
    flex-direction: column;
  }
  .gry-table .gt-item {
    width: 100% !important;
  }
}

.topic-wrap {
  background: #E8EAF2;
  border-radius: 16px;
  padding: 48px 62px;
}
.topic-wrap .topic-ttl {
  font-family: "BIZ UDPMincho", serif !important;
  font-size: 2.8rem;
  margin-bottom: 8px;
}
.topic-wrap .topic-ttl-subtxt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.topic-wrap .topic-area {
  display: flex;
  gap: 40px;
}
.topic-wrap .topic-area .topic-txt {
  width: calc(100% - (36% + 40px));
}
.topic-wrap .topic-area .topic-txt .head-4 {
  border-left: 4px solid #3053F8;
  padding-left: 12px;
}
.topic-wrap .topic-area .topic-img {
  width: 36%;
}
.topic-wrap .topic-area .topic-img img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (width <= 1024px) {
  .topic-wrap {
    padding: 32px 20px;
  }
  .topic-wrap .topic-ttl-subtxt {
    font-size: 1.6rem;
  }
  .topic-wrap .topic-area {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .topic-wrap .topic-area .topic-txt {
    width: 100%;
  }
  .topic-wrap .topic-area .topic-img {
    width: 100%;
  }
}

/*==================================================*
 *  [ 余白個別指定 ]
 *==================================================*/
.mt00 {
  margin-top: 0 !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.ml-a {
  margin-left: auto !important;
}

@media screen and (width >= 1025px) {
  .pc-mt00 {
    margin-top: 0 !important;
  }

  .pc-mt10 {
    margin-top: 10px !important;
  }

  .pc-mt15 {
    margin-top: 15px !important;
  }

  .pc-mt20 {
    margin-top: 20px !important;
  }

  .pc-mt25 {
    margin-top: 25px !important;
  }

  .pc-mt30 {
    margin-top: 30px !important;
  }

  .pc-mt40 {
    margin-top: 40px !important;
  }

  .pc-mt50 {
    margin-top: 50px !important;
  }

  .pc-mt60 {
    margin-top: 60px !important;
  }

  .pc-mt70 {
    margin-top: 70px !important;
  }

  .pc-mt80 {
    margin-top: 80px !important;
  }

  .pc-mt90 {
    margin-top: 90px !important;
  }

  .pc-mt100 {
    margin-top: 100px !important;
  }

  .pc-mt120 {
    margin-top: 120px !important;
  }

  .pc-mt160 {
    margin-top: 160px !important;
  }

  .pc-mb00 {
    margin-bottom: 0 !important;
  }

  .pc-mb10 {
    margin-bottom: 10px !important;
  }

  .pc-mb15 {
    margin-bottom: 15px !important;
  }

  .pc-mb20 {
    margin-bottom: 20px !important;
  }

  .pc-mb30 {
    margin-bottom: 30px !important;
  }

  .pc-mb40 {
    margin-bottom: 40px !important;
  }

  .pc-mb50 {
    margin-bottom: 50px !important;
  }

  .pc-mb60 {
    margin-bottom: 60px !important;
  }

  .pc-mb70 {
    margin-bottom: 70px !important;
  }

  .pc-mb80 {
    margin-bottom: 80px !important;
  }

  .pc-mb90 {
    margin-bottom: 90px !important;
  }

  .pc-mb100 {
    margin-bottom: 100px !important;
  }
}
@media only screen and (width <= 1024px) {
  .sp-mt00 {
    margin-top: 0 !important;
  }

  .sp-mt10 {
    margin-top: 10px !important;
  }

  .sp-mt15 {
    margin-top: 15px !important;
  }

  .sp-mt20 {
    margin-top: 20px !important;
  }

  .sp-mt25 {
    margin-top: 25px !important;
  }

  .sp-mt30 {
    margin-top: 30px !important;
  }

  .sp-mt40 {
    margin-top: 40px !important;
  }

  .sp-mt50 {
    margin-top: 50px !important;
  }

  .sp-mt60 {
    margin-top: 60px !important;
  }

  .sp-mt70 {
    margin-top: 70px !important;
  }

  .sp-mt80 {
    margin-top: 80px !important;
  }

  .sp-mt90 {
    margin-top: 90px !important;
  }

  .sp-mt100 {
    margin-top: 100px !important;
  }

  .sp-mb00 {
    margin-bottom: 0 !important;
  }

  .sp-mb10 {
    margin-bottom: 10px !important;
  }

  .sp-mb15 {
    margin-bottom: 15px !important;
  }

  .sp-mb20 {
    margin-bottom: 20px !important;
  }

  .sp-mb25 {
    margin-bottom: 25px !important;
  }

  .sp-mb30 {
    margin-bottom: 30px !important;
  }

  .sp-mb40 {
    margin-bottom: 40px !important;
  }

  .sp-mb50 {
    margin-bottom: 50px !important;
  }

  .sp-mb60 {
    margin-bottom: 60px !important;
  }

  .sp-mb70 {
    margin-bottom: 70px !important;
  }

  .sp-mb80 {
    margin-bottom: 80px !important;
  }

  .sp-mb90 {
    margin-bottom: 90px !important;
  }

  .sp-mb100 {
    margin-bottom: 100px !important;
  }

  .sp-ml-a {
    margin-left: auto !important;
  }
}
