@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  scroll-padding-top: 160px;
}
html body {
  font-family: "source-han-sans-cjk-ja", sans-serif;
  color: #333333;
  background: #ffffff;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}
html body * {
  box-sizing: border-box;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}
html p, html h1, html h2, html h3, html h4, html ul, html li {
  margin: 0;
  padding: 0;
}
html a {
  text-decoration: none;
  color: inherit;
}
html ul {
  list-style: none;
}

section {
  padding: 45px 0;
}

.sec-title {
  text-align: left;
  position: relative;
  line-height: 17px;
  padding-left: 12px;
}
.sec-title .ja {
  font-size: 18px;
  font-weight: bold;
  line-height: 17px;
  letter-spacing: 1.1px;
  text-align: left;
  color: #221f1c;
}
.sec-title .en {
  font-size: 12px;
  color: #94b6e8;
}
.sec-title::before {
  display: block;
  content: "NEWS";
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  font-size: 41px;
  font-weight: bold;
  line-height: 0.5;
  letter-spacing: 0.82px;
  color: #e2eaf5;
  z-index: -1;
  left: 0px;
}
.sec-title--about {
  text-align: center;
}
.sec-title--about span {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0.5px;
  text-align: left;
  color: #1871f8;
  position: relative;
}
.sec-title--about span::before, .sec-title--about span::after {
  content: "";
  display: block;
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #1871f8;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.sec-title--about span::before {
  top: -15px;
}
.sec-title--about span::after {
  top: inherit;
  bottom: -15px;
}

.another {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.another .sec-title::before {
  content: "COLUMN";
}
.another__contents {
  width: 93%;
  margin: 0 auto;
  display: flex;
  height: 110px;
  border-radius: 4px;
  box-shadow: 0.8px 0.55px 7.5px 0 rgba(1, 1, 1, 0.12);
  background-color: #fff;
  position: relative;
}
.another__contents a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.another__contents .img {
  width: 100px;
  height: 100%;
  flex: none;
  margin-right: 13px;
}
.another__contents .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.another__contents .text {
  padding: 13px 13px 13.5px 0;
}
.another__contents .text h3 {
  font-size: 10.5px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.42px;
  text-align: left;
  color: #181d23;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.another__contents .text p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.4px;
  text-align: left;
  color: #181d23;
  height: 43px;
  overflow: hidden;
  position: relative;
}
.another__contents .text p::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #fff;
  opacity: 0.8;
  bottom: 0;
  left: 0;
}
.another__contents .text .more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 20px;
  border-radius: 100px;
  border: solid 1px #fd662b;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 75px;
}
.another__contents .text .more span {
  font-size: 9px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.42px;
  text-align: left;
  color: #fd662b;
}
.another__contents .text .more::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 5px;
  background: url(../images/top/arrow_more.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.fadein.is-active {
  opacity: 1;
}

.page {
  background-color: #f3f6fa;
  padding: 40px 3.5%;
}
.page .page-title {
  text-align: center;
  margin-bottom: 42px;
}
.page .page-title .en {
  display: block;
  font-size: 17px;
  color: #1871f8;
  letter-spacing: 0.08em;
}
.page .page-title .ja {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.page article {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.6;
}
.page article .title {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 1px gray;
}
.page article .text {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.page article .sec .sectitle {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
}
.page article .sec .text {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.page article dl {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.82;
  letter-spacing: 1.32px;
  text-align: left;
  color: #181d23;
}
.page article dl dt {
  display: flex;
  align-items: center;
  height: 35px;
  padding-left: 12px;
  background-color: #d9e1ed;
  border-top: solid 1px #ededed;
}
.page article dl dd {
  display: flex;
  align-items: center;
  height: 38px;
  padding-left: 12px;
  margin: 0;
}

.archive {
  background-color: #f3f6fa;
  padding: 11.5px 3.5% 40px;
}
.archive .kv {
  margin-bottom: 25px;
}
.archive .kv .breadcrumb {
  margin-bottom: 20px;
}
.archive .kv .breadcrumb ul li {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 1.17px;
  text-align: left;
  color: #313131;
}
.archive .kv .breadcrumb ul li a {
  color: #3291cb;
}
.archive .kv .page-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.64px;
  text-align: left;
  color: #171d25;
}
.archive .kv .count {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 1.17px;
  text-align: left;
}
.archive .brands {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.archive .brands .brand {
  display: block;
}
.archive .brands .brand .a {
  display: block;
}
.archive .brands .brand__name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.64px;
  text-align: left;
  color: #1871f8;
  margin-bottom: 11.5px;
}
.archive .brands .brand__img {
  width: 100%;
  aspect-ratio: 7/3;
  margin-bottom: 14px;
}
.archive .brands .brand__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.archive .brands .brand__title {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 0.44px;
  text-align: left;
  color: #181d23;
  margin-bottom: 14px;
}
.archive .brands .brand__tags {
  margin-bottom: 17px;
}
.archive .brands .brand__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5px;
}
.archive .brands .brand__tags ul li a {
  display: block;
  height: 14px;
  border-radius: 1px;
  border: solid 1px #468df9;
  padding: 0 9px;
  background-color: #fff;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 1.28px;
  text-align: center;
  color: #468df9;
}
.archive .brands .brand__feature {
  border: solid 1px #bcc8d9;
  border-top: solid 4px #1871f8;
  background-color: #fff;
}
.archive .brands .brand__feature table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.46px;
  text-align: left;
  color: #181d23;
}
.archive .brands .brand__feature table tr {
  display: flex;
  align-items: center;
  align-items: stretch;
  border-bottom: solid 1px #bcc8d9;
}
.archive .brands .brand__feature table tr .title {
  width: 30%;
  border-right: solid 1px #bcc8d9;
  padding: 11px 0 11px 15px;
  align-items: center;
  display: flex;
  gap: 5px;
}
.archive .brands .brand__feature table tr .title img {
  width: 13px;
}
.archive .brands .brand__feature table tr .acf {
  width: 70%;
  padding: 11px 15px;
}
.archive .brands .brand__feature .acf-text {
  width: 93%;
  margin: 13px auto 26px;
  padding: 16px 13px 18px;
  border-radius: 5px;
  background-color: #f5f7cc;
}
.archive .brands .brand__feature .acf-text p {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 0.44px;
  text-align: left;
  color: #181d23;
}
.archive .brands .brand__feature .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82%;
  max-width: 580px;
  margin: 0 auto;
  gap: 8px;
  height: 50px;
  border-radius: 100px;
  background: #06C755;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0px 5px 0 0 #263e30;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.archive .brands .brand__feature .cta-btn .micro {
  position: absolute;
  top: -9px;
  width: 135px;
  height: 18px;
  border-radius: 100px;
  border: solid 1px #06c755;
  background-color: #fff;
  font-size: 10.5px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.42px;
  text-align: center;
  color: #06c755;
}
.archive .brands .brand__feature .cta-btn img {
  width: 23.5px;
  height: 26.5px;
  object-fit: contain;
}
.archive .brands .brand__feature .cta-btn .text {
  font-size: 16.5px;
  font-weight: bold;
  line-height: 3.32;
  letter-spacing: 1.32px;
  text-align: center;
  color: #fff;
}
.archive .brands .brand__feature .cta-btn:active {
  transform: scale(0.98);
}
.archive .pagi {
  padding: 19px 0 20px;
}
.archive {
  /* 上段 */
}
.archive .pagi__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.archive .pagi__prev,
.archive .pagi__next {
  width: 90px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.15s;
}
.archive .pagi__prev {
  background: #428bf8;
  color: #fff;
  border: 2px solid #428bf8;
}
.archive .pagi__next {
  background: #fff;
  color: #428bf8;
  border: 1px solid #428bf8;
}
.archive .pagi__prev.is-disabled,
.archive .pagi__next.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.archive .pagi__count {
  font-size: 10px;
  letter-spacing: 1.17px;
  color: #313131;
  text-align: center;
  flex: 1;
}
.archive {
  /* 下段 */
}
.archive .pagi__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.archive .pagi__num,
.archive .pagi__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.17px;
  text-align: left;
  color: #313131;
  transition: background 0.15s;
}
.archive .pagi__num:hover {
  background: #f0f0f0;
}
.archive .pagi__num.is-current {
  background: #c8d4e6;
  pointer-events: none;
}
.archive .pagi__step {
  color: #555;
  border-radius: 50%;
}
.archive .pagi__step:hover {
  background: #f0f0f0;
}
.archive .pagi__step.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.archive .pagi__ellipsis {
  font-size: 14px;
  color: #555;
  padding: 0 4px;
}

.single {
  background-color: #f3f6fa;
  padding: 55px 7% 40px;
  margin-bottom: 45px;
}
.single > .single {
  padding: 0;
}
.single .kv {
  margin-bottom: 25px;
}
.single .kv .breadcrumb {
  margin-bottom: 20px;
}
.single .kv .breadcrumb ul li {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 1.17px;
  text-align: left;
  color: #313131;
}
.single .kv .breadcrumb ul li a {
  color: #3291cb;
}
.single .kv .page-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.64px;
  text-align: left;
  color: #171d25;
}
.single .kv .page-title .brand-name {
  color: #1871f8;
}
.single .btns {
  margin-bottom: 16px;
}
.single .btns ul {
  width: 100%;
  display: flex;
  gap: 4.5px;
}
.single .btns ul li {
  flex: auto;
  width: 25%;
  text-align: center;
}
.single .btns ul li .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 2px;
  background-color: #a7bcdc;
}
.single .btns ul li .btn span {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.84px;
  text-align: center;
  color: #fff;
}
.single .btns ul li .btn.active {
  background-color: #1871f8;
}
.single .contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 30px;
}
.single .contents .brand {
  display: block;
}
.single .contents .brand .a {
  display: block;
}
.single .contents .brand__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: left;
  color: #181d23;
  margin-bottom: 15px;
}
.single .contents .brand__tags {
  margin-bottom: 17px;
}
.single .contents .brand__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5px;
}
.single .contents .brand__tags ul li a {
  display: block;
  height: 14px;
  border-radius: 1px;
  border: solid 1px #468df9;
  padding: 0 9px;
  background-color: #fff;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 1.28px;
  text-align: center;
  color: #468df9;
}
.single .contents .brand__img {
  width: 100%;
  aspect-ratio: 7/3.5;
  margin-bottom: 14px;
}
.single .contents .brand__img .news-list {
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.single .contents .brand__img .news-list.single-banner {
  margin: 0 auto;
  width: 370px;
}
.single .contents .brand__img .news-list.single-banner .slick-list {
  padding: 0 !important;
}
.single .contents .brand__img .news-list .news-item {
  max-width: 350px;
  margin: 0 10px;
}
.single .contents .brand__img .news-list .news-item .thumbnail {
  width: 350px;
  height: 225px;
  overflow: hidden;
}
.single .contents .brand__img .news-list .news-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single .contents .brand__img .news-list .slick-dots {
  display: flex;
  width: 100%;
  gap: 0px;
  bottom: -12px !important;
}
.single .contents .brand__img .news-list .slick-dots li {
  flex: 1;
  width: auto;
  height: 4px;
  border-radius: 2px;
  background-color: #bbcbe4;
}
.single .contents .brand__img .news-list .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  background-color: transparent;
  border: none;
}
.single .contents .brand__img .news-list .slick-dots li button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: none;
}
.single .contents .brand__img .news-list .slick-dots li.slick-active {
  border-radius: 2px;
}
.single .contents .brand__img .news-list .slick-dots li.slick-active button::before {
  border-radius: 2px;
  background-color: #1871f8;
}
.single .contents .brand__img .news-list .slick-arrow {
  width: 28px;
  height: 35px;
  opacity: 0.55;
  background-color: #1e54a5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.single .contents .brand__img .news-list .slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 13px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
}
.single .contents .brand__img .news-list .slick-arrow.prev {
  border-radius: 4px 0 0 4px;
  left: calc(50% - 187px);
}
.single .contents .brand__img .news-list .slick-arrow.prev::before {
  left: 47%;
  background: url(../images/top/sec02/PC/left_black.png) no-repeat;
  background-size: contain;
}
.single .contents .brand__img .news-list .slick-arrow.next {
  border-radius: 0 4px 4px 0;
  right: calc(50% - 185px);
}
.single .contents .brand__img .news-list .slick-arrow.next::before {
  left: 53%;
  background: url(../images/top/sec02/PC/right_black.png) no-repeat;
  background-size: contain;
}
.single .contents .brand__feature {
  border: solid 1px #bcc8d9;
  background-color: #fff;
  margin: 40px 0 25px;
}
.single .contents .brand__feature table {
  width: 100%;
  border-collapse: collapse;
}
.single .contents .brand__feature table tr {
  display: flex;
  align-items: stretch;
  border-bottom: solid 1px #bcc8d9;
}
.single .contents .brand__feature table tr .title {
  width: 30%;
  padding: 12.5px 19px;
  mix-blend-mode: multiply;
  background-color: #dde6f5;
  display: flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.46px;
  text-align: left;
  color: #181d23;
}
.single .contents .brand__feature table tr .acf {
  width: 70%;
  padding: 12.5px 19px;
  display: flex;
  align-items: center;
}
.single .contents .brand__feature table tr .acf span {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.46px;
  text-align: left;
  color: #181d23;
}
.single .contents .brand__article.patern01 {
  display: flex;
  flex-direction: column;
}
.single .contents .brand__article.patern01 h2 {
  display: flex;
  align-items: center;
  height: 100%;
  border-left: solid 2.5px #448cf8;
  padding-left: 10px;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1.28px;
  text-align: left;
  color: #448cf8;
}
.single .contents .brand__article.patern01 p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.48px;
  text-align: left;
  color: #181d23;
  margin-bottom: 20px;
}
.single .contents .brand__article.patern02 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 23px 12.5px 25px;
  background-color: #fff;
}
.single .contents .brand__article.patern02 .wrapper {
  display: flex;
  gap: 10px;
  border-bottom: solid 1px #bcc8d9;
  padding-bottom: 18px;
}
.single .contents .brand__article.patern02 .wrapper h2 {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #448cf8;
}
.single .contents .brand__article.patern02 .wrapper h2 span {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1.96px;
  text-align: center;
  color: #fff;
}
.single .contents .brand__article.patern02 .wrapper p {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.48px;
  text-align: left;
  color: #181d23;
}
.single .contents .brand__article.patern02 .wrapper:last-child {
  padding-bottom: 0;
  border: none;
}
.single .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82%;
  max-width: 580px;
  margin: 0 auto;
  gap: 8px;
  height: 50px;
  border-radius: 100px;
  background: #06C755;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0px 5px 0 0 #263e30;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.single .cta-btn .micro {
  position: absolute;
  top: -9px;
  width: 135px;
  height: 18px;
  border-radius: 100px;
  border: solid 1px #06c755;
  background-color: #fff;
  font-size: 10.5px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.42px;
  text-align: center;
  color: #06c755;
}
.single .cta-btn img {
  width: 23.5px;
  height: 26.5px;
  object-fit: contain;
}
.single .cta-btn .text {
  font-size: 16.5px;
  font-weight: bold;
  line-height: 3.32;
  letter-spacing: 1.32px;
  text-align: center;
  color: #fff;
}
.single .cta-btn:active {
  transform: scale(0.98);
}
.single.column {
  padding: 0 0 40px;
  margin: 0 auto;
}
.single.column .kv {
  margin-bottom: 25px;
}
.single.column .kv .breadcrumb {
  margin-bottom: 20px;
}
.single.column .kv .breadcrumb ul li {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 1.17px;
  text-align: left;
  color: #313131;
}
.single.column .kv .breadcrumb ul li a {
  color: #3291cb;
}
.single.column .kv .column-title {
  display: flex;
  align-items: center;
  gap: 8.5px;
  margin-bottom: 50px;
}
.single.column .kv .column-title .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: solid 1px #1871f8;
}
.single.column .kv .column-title .img img {
  width: 60%;
  height: 60%;
  object-fit: cover;
}
.single.column .kv .column-title h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: left;
  color: #2a3139;
  position: relative;
}
.single.column .kv .column-title h1:before {
  content: "";
  display: block;
  position: absolute;
  content: "ARTICLE LIST";
  font-family: GranthaSangamMN;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.7px;
  text-align: left;
  color: #94b6e8;
  bottom: -24px;
  left: 0;
}
.single.column .kv .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.single.column .kv .tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5px;
}
.single.column .kv .tags ul li a {
  display: block;
  height: 14px;
  border-radius: 1px;
  border: solid 1px #468df9;
  padding: 0 9px;
  background-color: #fff;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 1.28px;
  text-align: center;
  color: #468df9;
}
.single.column .kv .date time {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: right;
  color: #ababab;
}
.single.column .kv .thumbnail {
  width: 100%;
  aspect-ratio: 650/373;
}
.single.column .kv .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single.column .contents-top {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}
.single.column .contents-top .about {
  padding: 16px 25px 23px;
  border-radius: 4.5px;
  border: solid 1px #e4ecf8;
  background-color: #fff;
}
.single.column .contents-top .about__title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: solid 1px #e4ecf8;
  margin-bottom: 17px;
}
.single.column .contents-top .about__title .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #1871f8;
}
.single.column .contents-top .about__title .img img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.single.column .contents-top .about__title h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.68px;
  text-align: left;
  color: #181d23;
}
.single.column .contents-top .about__content ul li {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.5px;
  text-align: left;
  color: #3b90f8;
}
.single.column .contents-top .author {
  padding: 16px 15px;
  border-radius: 4.5px;
  border: solid 1px #e4ecf8;
  background-color: #fff;
  display: flex;
  gap: 10px;
}
.single.column .contents-top .author__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: none;
}
.single.column .contents-top .author__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.single.column .contents-top .author__text {
  font-size: 12.5px;
  line-height: 1.4;
  letter-spacing: 1.5px;
  text-align: left;
}
.single.column .contents-top .author__text .name {
  font-weight: bold;
  margin-bottom: 10px;
}
.single.column .contents-top .author__text .exp {
  font-weight: 500;
}
.single.column .contents-middle {
  background-color: #fff;
  padding: 20px max(3.5%, 25px);
}
.single.column .contents-middle .toc {
  margin-bottom: 50px;
}
.single.column .contents-middle .toc__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1.92px;
  text-align: left;
  color: #5693f7;
  margin-bottom: 23px;
}
.single.column .contents-middle .toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single.column .contents-middle .toc__item > a {
  display: block;
  padding: 13px 0;
  border-bottom: solid 1px #dce6f4;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: left;
  color: #9c9c9c;
  text-decoration: none;
}
.single.column .contents-middle .toc__child {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: child-counter;
}
.single.column .contents-middle .toc__child-item {
  counter-increment: child-counter;
}
.single.column .contents-middle .toc__child-item > a {
  display: block;
  padding: 13px 0 13px 40px;
  border-bottom: solid 1px #dce6f4;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: left;
  color: #9c9c9c;
  text-decoration: none;
  position: relative;
}
.single.column .contents-middle .toc__child-item > a::before {
  content: counter(child-counter) ".";
  position: absolute;
  left: 15px;
  color: #9c9c9c;
}
.single.column .contents-middle .toc__rank {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single.column .contents-middle .toc__rank-item > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: solid 1px #dce6f4;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #9c9c9c;
  text-decoration: none;
}
.single.column .contents-middle .toc__rank-item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 20px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.single.column .contents-middle .toc__rank-item.rank-1 .badge {
  background-color: #f1b50c;
}
.single.column .contents-middle .toc__rank-item.rank-2 .badge {
  background-color: #77756f;
}
.single.column .contents-middle .toc__rank-item.rank-3 .badge {
  background-color: #af620f;
}
.single.column .contents-middle h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.68px;
  text-align: left;
  color: #181d23;
  padding-left: 37px;
  padding-right: 15px;
  margin-bottom: 19px;
  position: relative;
}
.single.column .contents-middle h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #1871f8;
  background: url(../images/top/light.png) no-repeat;
  background-size: 44% 66%;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.single.column .contents-middle h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.68px;
  text-align: left;
  color: #181d23;
  padding-right: 15px;
  margin-bottom: 13px;
}
.single.column .contents-middle .box01 {
  width: 100%;
  padding: 21px 23px 25px 25px;
  border-radius: 4.5px;
  background-color: #e7eef8;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.5px;
  text-align: left;
  color: #2a3139;
}
.single.column .contents-middle p {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.5px;
  text-align: left;
  color: #2a3139;
  margin-bottom: 20px;
}
.single.column .contents-middle p .marker {
  background: linear-gradient(transparent 60%, rgba(245, 66, 30, 0.3) 50%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.single.column .ranking {
  margin-bottom: 30px;
}
.single.column .ranking .rank-item {
  display: block;
  margin-bottom: 5px;
}
.single.column .ranking .rank-item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 60px;
  height: 32.5px;
  border-radius: 1.5px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1.8px;
  color: #fff;
}
.single.column .ranking .rank-item.rank-1 .badge {
  background-color: #f1b50c;
}
.single.column .ranking .rank-item.rank-2 .badge {
  background-color: #77756f;
}
.single.column .ranking .rank-item.rank-3 .badge {
  background-color: #af620f;
}
.single.column .ranking .sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: bold;
  color: #73777c;
}
.single.column .ranking h2 {
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
}
.single.column .ranking .img {
  width: 100%;
  aspect-ratio: 65/39;
  margin-bottom: 25px;
}
.single.column .ranking .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single.column .ranking table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}
.single.column .ranking table tr {
  display: flex;
  align-items: stretch;
  border-bottom: solid 1px #bcc8d9;
}
.single.column .ranking table tr th {
  width: 40%;
  padding: 12.5px 19px;
  mix-blend-mode: multiply;
  background-color: #dde6f5;
  display: flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: left;
  color: #2a3139;
}
.single.column .ranking table tr td {
  width: 60%;
  padding: 12.5px 19px;
  display: flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: left;
  color: #2a3139;
}
.single.column .ranking p {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.5px;
  text-align: left;
  color: #2a3139;
  margin-bottom: 20px;
}
.single.column .ranking__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  border-radius: 3px;
  box-shadow: 0px 4px 0 0 #94340f;
  background-color: #fd662b;
}
.single.column .ranking__cta a {
  font-size: 16px;
  font-weight: bold;
  line-height: 3.31;
  letter-spacing: 0.96px;
  text-align: center;
  color: #fff;
}

.archive.column .kv {
  padding-left: 7%;
  padding-right: 7%;
  margin-bottom: 55px;
}
.archive.column .kv .breadcrumb {
  margin-bottom: 20px;
}
.archive.column .kv .breadcrumb ul li {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 1.17px;
  text-align: left;
  color: #313131;
}
.archive.column .kv .breadcrumb ul li a {
  color: #3291cb;
}
.archive.column .kv .column-title {
  display: flex;
  align-items: top;
  gap: 8.5px;
  margin-bottom: 55px;
}
.archive.column .kv .column-title .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: solid 1px #1871f8;
}
.archive.column .kv .column-title .img img {
  width: 60%;
  height: 60%;
  object-fit: cover;
}
.archive.column .kv .column-title h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: left;
  color: #2a3139;
  position: relative;
}
.archive.column .kv .column-title h1:before {
  content: "";
  display: block;
  position: absolute;
  content: "ARTICLE LIST";
  font-family: GranthaSangamMN;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.7px;
  text-align: left;
  color: #94b6e8;
  bottom: -24px;
  left: 0;
}
.archive.column .another {
  padding-top: 0;
}

/*# sourceMappingURL=page.css.map */
