@charset "UTF-8";

/*カラー*/
:root {
  --primary-main: #0095D8;
  --primary-dark: #104A77;
  --primary-light: #EFF9FD;
  --primary-gradation: linear-gradient(to left, #0095D8 0%, #00518F 100%);
  --secondary-main: #FB8D00;
  --secondary-dark: #D29EA2;
  --secondary-light: #FEF5F6;
  --secondary-gradation: linear-gradient(to left, #FB8D00 0%, #E65200 100%);
  --line: #D3DADD;
  --main-text: #2D2D2D;
  --sub-text: #7A8A93;
  --extra-text: #666666;
  --line-main: #D3DADD;
  --gray-40: #9EB3BE;
  --gray-70: #607079;
  --text-secondary: #607079;
  --text-main: #272D30;
  --new-primary-main-gradient: linear-gradient(90deg, #00CAF2 0%, #0095D8 100%);
  --background-white: #FFF;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--main-text);
  background: #F2F4F7;
}

/*仕様定義*/

/*ライン*/
.line {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  margin-bottom: 16px;
}

.line-left {
  height: 4px;
  width: 60px;
  background: var(--extra-text);
  margin-right: 4px;
}

.line-right {
  height: 4px;
  width: 60px;
  background: var(--primary-main);
}

.line-s {
  width: 64px;
  height: 4px;
  background: var(--line-main);
}

/*シャドウ*/
.float {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  ;
}

.right {
  float: right;
  margin-left: auto;
}

.mb-48.mb-48 {
  margin-bottom: 48px;
}

/*テキスト*/
h1 {
  font-size: 3.2em;
  font-weight: 700;
}

h2 {
  font-size: 2.8em;
  font-weight: 500;
}

h3 {
  font-size: 2.2em;
  font-weight: 400;
  line-height: 29px;
}

h4 {
  font-size: 2em;
  font-weight: 700;
  line-height: 26px;
}

p {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 20px;
}

p.small {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.2em;
  color: #666666;
}


.text-m {
  font-weight: 500;
  padding-bottom: 12px;
}

.text-blue {
  color: var(--primary-main);
}

.text-pink {
  color: var(--secondary-main);
  font-size: 32px;
  font-weight: 700;
}

.text-gradation {
  background: var(--primary-gradation);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.text-grey {
  color: #B3B9BD;
}

.btn-solid {
  color: white;
  background: var(--secondary-main);
  border: 1px solid var(--secondary-main);
  transition: all .3s ease-in-out;
}

.btn-solid-b {
  color: white;
  background: var(--primary-main);
  border: 1px solid var(--primary-main);
  transition: all .3s ease-in-out;
}

.btn-group {
  display: flex;
  text-align: center;
}

.btn-word {
  display: inline-block;
  position: relative;
}

a.btn-word:after {
  content: '';
  position: absolute;
  left: 25%;
  display: inline-block;
  height: 2em;
  width: 50%;
  border-bottom: 1.5px solid;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

a.btn-word:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.btn-solid:hover {
  background: white;
  color: var(--secondary-main);
  border: 1px solid var(--secondary-main);
  transition: all .3s ease-in-out;
}

.btn-solid-b:hover {
  background: white;
  color: var(--primary-main);
  border: 1px solid var(--primary-main);
  transition: all .3s ease-in-out;
}

.btn-solid:active, .btn-solid-b:active {
  transform: scale(0.95);
  transition: all .3s ease-in-out;
}

.bg-blue {
  background: var(--primary-light);
}

.section {
  width: 100%;
  padding: 96px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section+.article {
  padding-bottom: 112px;
}

.section.feature {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-0 {
  padding-top: 0;
}

/** Header **/
header {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}

.header {
  padding: 19.5px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.logo-placer {
  height: 32px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.logo-placer a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24.5px;
  letter-spacing: 0.15000000596046448px;
  text-align: left;
  color: var(--text-main)
}

.logo-placer a img {
  height: 32px;
  transform: translateY(3px);
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.header-nav-item {
  font-size: 1.4em;
  width: 104px;
  height: 32px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}

/** Main **/
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  box-shadow: 0px 0px 40px 0px #00000014;
}

.top {
  width: 100%;
  background-color: #f2f4f7;
  position: relative;
  margin-top: 73px;
  padding-bottom: 64px;
  box-sizing: border-box;
}

.top .card {
  max-width: 1040px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.top .card>.img {
  width: 100%;
  height: auto;
  aspect-ratio: 1040/391;
  margin-bottom: 16px;
}

.top .card>.title {
  font-size: 32px;
  font-weight: 700;
  line-height: 44.8px;
  letter-spacing: 0.04em;
  text-align: left;
  background: linear-gradient(90.6deg, #00B3F2 0%, #0095D8 99.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top .card>.createdAt {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  color: var(--text-secondary);
}


.btn-signin {
  padding: 16px 100px;
  display: inline-block;
  margin: 40px 0 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  font-size: 1.7em;
}

.btn-gradation-orange {
  color: white;
  background-image: var(--secondary-gradation);
  background-size: 150% 100%;
  border-radius: 100px;
  transition: all .3s ease-in-out;
}

.btn-gradation-blue {
  color: white;
  background-image: var(--primary-gradation);
  background-size: 150% 100%;
  border-radius: 100px;
  margin-left: 32px;
  transition: all .3s ease-in-out;
}

.btn-gradation-orange:hover, .btn-gradation-blue:hover {
  background-position: 90% 0;
  transition: all .3s ease-in-out;
}

.subcatch {
  text-align: left;
  font-weight: 700;
  font-size: 2.4em;
  line-height: 2.2em;
}

/* Feature */

.feature {
  width: 100%;
  gap: 64px;
  display: flex;
  flex-direction: column;
  background-color: #EAEEF4;
}

.feature .box {
  max-width: 1040px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature .feature-title {
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}

.feature .list {
  width: 100%;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.feature .feature-card {
  max-width: 468px;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  user-select: none;
  text-decoration: none;
}

.feature .feature-card:hover {
  box-shadow: 0px 4px 24px 0px rgba(16, 74, 119, 0.24);
}

.feature .feature-card:hover .title {
  text-decoration: underline;
}

.feature .feature-card .title {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 700;
  padding: 0 16px;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature .feature-card .subtitle {
  width: 100%;
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
}

.feature .feature-card .subtitle>.tag {
  padding: 5px 8px;
  box-sizing: border-box;
  background-color: #8C9EA9;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  color: #fff;
}

.feature .feature-card .subtitle>.date {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #83959E;
}

.feature .feature-card .image {
  width: 100%;
  height: auto;
  aspect-ratio: 492/184;
  margin-bottom: 4px;
}

/** Issue **/

.issue .list {
  gap: 24px 23.5px;
}

.issue .issue-card {
  max-width: 304px;
  width: 100%;
  padding: 8px 8px 16px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  user-select: none;
  background: #FFF;
  text-decoration: none;
}

.issue .issue-card:hover {
  box-shadow: 0px 4px 24px 0px rgba(16, 74, 119, 0.24);
}

.issue .issue-card:hover .title {
  text-decoration: underline;
}

.issue .issue-card .image {
  width: 100%;
  height: auto;
  aspect-ratio: 315/118;
  margin-bottom: 16px;
}

.issue .issue-card .tags {
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.issue .issue-card .tag {
  padding: 5px 8px;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
}

.issue .issue-card .tag.issue-type {
  background-color: var(--primary-dark);
  color: #fff;
}

.issue .issue-card .tag.issue-category {
  border: 1px solid var(--gray-40);
  color: var(--gray-70);
  padding: 4px 8px;
}

.issue .issue-card .title {
  padding: 0 16px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.issue .issue-card .detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.issue .issue-card .detail>.detail-content {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 4px;
}

.issue .issue-card .detail>.detail-content>p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
}

.issue .issue-card .company {
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.issue .issue-card .company>img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.issue .issue-card .company>p {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.04em;
  text-align: left;
}

/** Article **/

.article {
  background-color: #F2F4F7;
}

.article-wrapper {
  width: 100%;
  max-width: 1040px;
}

.article-section1 {
  max-width: 720px;
  width: 100%;
  margin-bottom: 24px;
}

.profile-desc {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 21px */
}

.article-section2 {
  max-width: 720px;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: 96px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}

.article-section3 {
  max-width: 720px;
  width: 100%;
}

.article-section2>.profile-content {
  width: 100%;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.article-section2>.profile-index {
  width: 100%;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.article-section2>.profile-content>.tags, .article-section2>.profile-image>.tags {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-direction: row;
  align-items: center;
}

.article-section2>.profile-content>.tags>p, .article-section2>.profile-image>.tags>p {
  font-size: 14px;
  font-weight: 700;
  line-height: 24.5px;
  text-align: left;
  color: var(--text-secondary);
}

.article-section2>.profile-content>.tags>.tag, .article-section2>.profile-image>.tags>.tag {
  padding: 4px 8px;
  color: #fff;
  background-color: var(--text-secondary);
  border-radius: 2px 0px 0px 0px;
}

.article-section2>.profile-content>.text {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: var(--text-secondary);
}

.index-header {
  color: var(--primary-dark);
  font-feature-settings: 'liga' off, 'clig' off;
  
  /* NEW/見出し/PC/H3 */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.8px;
}

.indexs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.index-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.index-text {
  flex: 1 0 0;
  color: var(--primary-main, #0095D8);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
}

#index-1, #index-2, #index-3 {
  scroll-margin: 73px;
}

.article-section2>.profile-image>img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.article-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  text-align: left;
  color: #607079;
}

.article-sm-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  color: #607079;
}

.article-bg {
  width: 100%;
  height: auto;
  max-width: 960px;
  aspect-ratio: 960/540;
  margin-bottom: 96px;
}

.article-sm-section {
  max-width: 720px;
  width: 100%;
  margin-bottom: 96px;
  font-size: 12px;
  line-height: 21.6px;
}

.article-sns {
  max-width: 720px;
  width: 100%;
  display: flex;
  padding: 16px 40px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}

.article-sns>.title {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
  color: var(--text-secondary);
}

.article-sns>.sns-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}

.article-sns>.sns-list img {
  width: 32px;
  height: 32px;
}

.article-news {
  max-width: 720px;
  width: 100%;
  margin-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-news>.title {
  font-size: 32px;
  font-weight: 700;
  line-height: 44.8px;
  text-align: left;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.article-news>.subtitle {
  width: 100%;

  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: var(--text-secondary);
  display: inline-block;
}

.article-news>.news {
  margin-bottom: 32px;
}

.article-news>.news-mb16 {
  margin-bottom: 16px;
}

.article-news>.news:last-child {
  margin-bottom: 0px;
}

.article-news .subtitle .checkpoint {  
  width: 32px;
  height: 2px;
  margin-right: 12px;
  margin-bottom: 5px;
  background: linear-gradient(to right, var(--primary-main) 0%, var(--primary-main) 50%, #C9D7DF 50%, #C9D7DF 100%);
  display: inline-block;
}

.article-news>.subtitle .checkpoint>span {
  display: inline-block;
}

.link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 0;
  margin: auto 12px;
}

.link a {
  display: block;
}

.link-col-3 {
  width: 320px;
  justify-content: left;
  text-align: left;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.link-img {
  background: white;
  border-radius: 5px 5px 0 0;
  padding: 8px 0 8px 12px;
}

.link-img img {
  height: 34px;
}

.link-text-hi {
  background: var(--primary-main);
  color: white;
  padding: 12px;
  border-radius: 0 0 5px 5px;
}

/** Footer **/

.footer-link {
  background: var(--text-main);
  color: white;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 40px 40px 140px 40px;
  gap: 38px;
}

.footer-logo {
  height: 64px;
  padding-top: 32px;
}

.footer-link ul {
  max-width: 769px;
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-link ul li {
  font-size: 12px;
  font-weight: 300;
  line-height: 19.92px;
  letter-spacing: 0.4000000059604645px;
  text-align: left;
  color: #fff;
}


.footer-link ul li a {
  gap: 2px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.link-icon {
  display: flex;
  align-items: center;
}

.copyright>p {
  font-size: 10px;
  font-weight: 300;
  line-height: 16.6px;
  letter-spacing: 0.4000000059604645px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

@keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  45% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  65%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.col-3-c {
  width: 215px;
  position: relative;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  margin: 24px auto;
}

.col-3-c img {
  width: 100%;
}

.arrow-right img {
  width: 24px;
}

.method {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.col-2 {
  margin: 60px auto 80px;
  width: 352px;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}

.col-2 img {
  width: 100%;
}

.method-text {
  margin-top: 24px;
}

.method-text h3 {
  font-weight: 700;
}

.method-p {
  padding: 16px 0 24px;
}

.c-img {
  width: 320px;
}

.mg-b {
  margin-bottom: 10px;
}

.free {
  border: 2px solid #666666;
}

.free-t {
  background: #666666;
}

.entry {
  border: 2px solid var(--primary-main);
}

.entry-t {
  background: var(--primary-main);
}

.basic {
  border: 2px solid var(--primary-dark);
}

.basic-t {
  background: var(--primary-dark);
}

.option {
  text-align: left;
  padding: 16px 24px;
  border-radius: 5px;
}

.option ul {
  padding-left: 16px;
}

.option ul li {
  font-size: 1.2em;
  line-height: 1.4em;
  list-style: disc;
  padding-left: 16px;
}

.col-5 {
  background: white;
  border-radius: 5px;
  position: relative;
  width: 160px;
  height: 149px;
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  justify-content: center;
}

.is-mobile {
  display: none !important;
}
h1.feature-sp-num {
  margin-right: 12px;
  color: var(--secondary-main);
}

.sp-img {
  margin: 0 auto;
}

.sp-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}

.project-list {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: #EAEEF4;
}

.project-list-button {
  display: flex;
  width: 223px;
  height: 48px;
  padding: 0px 24px 0px 48px;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  background: var(--new-primary-main-gradient);
}

.project-list-button:hover {
  background: var(--primary-dark, #104A77);
}

.button-text {
  display: flex;
  width: 199px;
  height: 18px;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.64px;
}

.external-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.txt-highlight {
  background: linear-gradient(#FFF 0 0) 0/100% 40% no-repeat;
  background-position: bottom;
  --webkit-box-decoration-break: clone;
  font-weight: 700;
}

/* Responsive */

@media screen and (max-width: 1279px) {
  .top {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .feature .feature-card {
    max-width: 468px;
  }

  .issue .issue-card {
    max-width: 304px;
  }
}

@media screen and (max-width: 768px) {
  .top {
    margin-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .top .card>.title {
    padding: 0;
    box-sizing: border-box;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature .list {
    margin-bottom: 8px;
  }

  .issue .list {
    margin-bottom: 0px;
  }

  .feature .feature-card {
    max-width: 339px;
  }

  .issue .issue-card {
    max-width: 339px;
  }

  .header {
    padding: 10px 12px;
  }

  .header-nav-item {
    height: 26px;
  }

  .logo-placer {
    gap: 12px;
    height: 21px;
  }

  .logo-placer img {
    width: 102px;
    height: 20px;
  }

  .logo-placer a {
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.15000000596046448px;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav li:last-child {
    display: none;
  }

  .header-nav-item {
    font-size: 11px;
    line-height: 19.25px;
    letter-spacing: 0.15000000596046448px;
  }

  .header-nav-item.header-nav-item {
    width: fit-content;
    min-width: 0;
    margin: 0;
  }

  .header-nav-item.btn-solid {
    padding: 0 13px;
  }

  .footer-link {
    gap: 50px;
    padding: 40px 40px 38px 40px;
    flex-direction: column;
  }

  .footer-link.footer-link ul {
    max-width: 324px;
  }

  .copyright>p {
    text-align: start;
  }
}

@media screen and (max-width: 375px) {
  .top {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 32px;
  }

  .top .card>.title {
    padding-left: 24px;
    padding-right: 24px;
  }

  .top .card>.createdAt {
    padding-left: 24px;
    padding-right: 24px;
    
    color: var(--text-secondary, #607079);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
  }

  .section {
    padding: 56px 24px;
  }

  .top .card>.title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.04em;
  }

  .feature .list {
    margin-bottom: 0;
  }

  .footer-link ul {
    width: 324px;
  }

  .footer-link ul li a {
    letter-spacing: 0.01px;
  }

  .index-header {
    color: var(--text-main, #272D30);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    letter-spacing: 0.72px;
  }

  .article-section2 {
    padding: 16px;
    margin-bottom: 72px;
  }

  .article-news>.title {
    color: var(--primary-dark, #104A77);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    margin-bottom: 8px;
  }

  .article-news>.title.mb-16 {
    margin-bottom: 16px;
  }

  .mb-8.mb-8 {
    margin-bottom: 8px;
  }

  .mb-32.mb-32 {
    margin-bottom: 32px;
  }

  .article-news>.news-mb16 {
    margin-bottom: 0;
  }

  .article-news>.news-mb16.mb-16 {
    margin-bottom: 16px;
  }

  .article-news .subtitle .checkpoint {
    margin-right: 4px;
  }

  .txt-highlight {
    background: none;
    font-weight: 400;
  }

  .article-news>.news {
    margin-bottom: 8px;
  }

  .article-news {
    margin-bottom: 72px;
  }

  .article-bg {
    margin-bottom: 72px;
  }

  .section.feature {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .feature .feature-title {
    font-size: 20px;
    line-height: 140%; /* 28px */
    letter-spacing: 1.6px;
    margin-bottom: 0;
    text-align: center;
  }

  .feature .box {
    gap: 16px;
  }

  .issue .issue-card .tags {
    padding: 0 8px;
  }

  .issue .issue-card .title {
    padding: 0 8px;
  }

  .issue .issue-card .detail>.detail-content {
    padding: 0 8px;
  }

  .issue .issue-card .company {
    padding: 0 8px;
  }

  .feature {
    gap: 40px
  }

  .feature .feature-card .title {
    padding: 0 8px;
  }

  .feature .feature-card .subtitle {
    padding: 0 8px;
  }

  .article-section2>.profile-content>.tags, .article-section2>.profile-image>.tags {
    display: none;
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-sp {
    flex-direction: column;
  }

  .is-mobile {
    display: flex !important;
  }

  .profile-image {
    display: flex;
    gap: 12px;
  }

  .article-section2>.profile-content>.tags>.tag, .article-section2>.profile-image>.tags>.tag {
    border-radius: 2px;
    color: var(--background-white, #FFF);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
  }

  .article-section2>.profile-image>img {
    width: 64px;
    height: 64px;
  }

  .article-section1 {
    margin-bottom: 16px;
  }

  .project-list {
    padding: 32px 24px;
  }

  #index-1, #index-2, #index-3 {
    scroll-margin: 48px;
  }
}
