:root {
  --container-padding: 20px;
  --page-width: calc(1280px + (var(--container-padding) * 2));
  --cnt-width: calc(1040px + (var(--container-padding) * 2));
  --bg: #ffffff;
  --bg-yellow: #fff7d2;
  --bg-blue: #cef2ff;
  --bg-red: #ffebed;
  --bg-gray: #f3f3f3;
  --text-red: #d00f31;
  --text-pink: #f66876;
  --dark-red: #cc0033;
  --text-black: #3a3a3a;
  --text-blue: #1b67bd;
  --white: #ffffff;
  --marker-yellow: #feffae;
  --marker-yellow-dark: #f6d172;
  --marker-yellow-dark_2: #fabe00;
  --font-normal: 500;
  --font-bold: 700;
  --bg-pink: #fed9ec;
  --bg-yellow: #fff9e8;
  --bg-green: #d3f0b6;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: clamp(14px, calc(10.667px + 0.3704vw), 16px);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-black);
  background: var(--bg);
  font-weight: var(--font-normal);
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

a:hover {
  opacity: 0.8;
}
.page-root {
  overflow: hidden;
}

/* ページ幅を固定（1280px基準） */
.container {
  width: var(--page-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  container-type: inline-size;
}

/* Container1280px基準でコンテンツを1040pxで固定 */
.inner {
  width: var(--cnt-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  container-type: inline-size;
}

/* common */
.font-bold {
  font-weight: var(--font-bold);
}

.color-red {
  color: var(--text-red);
}

.color-pink {
  color: var(--text-pink);
}

.marker {
  background: linear-gradient(transparent 50%, var(--marker-yellow) 50%);
}

.marker_dark {
  background: linear-gradient(transparent 70%, var(--marker-yellow-dark) 70%);
}

.marker_dark_hurf {
  background: linear-gradient(transparent 50%, var(--marker-yellow-dark) 50%);
}

.marker-gray {
  background: linear-gradient(transparent 0%, var(--bg-gray) 0%);
}

.text-20 {
  font-size: 20px;
}

.text-22 {
  font-size: 22px;
}

.text-24 {
  font-size: 24px;
}

.text-27 {
  font-size: 27px;
}

.text-30 {
  font-size: 30px;
}

.text-37 {
  font-size: 37px !important;
}

.text-50 {
  font-size: 50px !important;
}

.text-center {
  text-align: center;
}

sup {
  font-size: 12px;
  vertical-align: super;
}

.m0 {
  margin: 0 !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt17 {
  margin-top: 17px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}
.ml10 {
  margin-left: 10px !important;
}

.text-center {
  text-align: center;
}

a {
  transition: opacity 0.35s ease;
  opacity: 1;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

.c-text__link {
  margin-top: 24px;
  line-height: 150%;
  display: block;
  color: var(--text-black);
  font-size: 1rem;
}

.c-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.c-buttons .c-button {
  max-width: 443px;
}

.c-button__secondary {
  width: 415px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  font-size: 1rem;
  color: var(--white);
  border-radius: 6px;
  background: #3a3a3a url(../images/secondary_arrow.svg) no-repeat 95% 50%;
}

/*-------------------------
    kome
-------------------------*/

.kome-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kome-list-item {
  display: table;
}

.kome-list-item:not(:first-child) {
  margin-top: 4px;
}

.kome-list-item > span {
  line-height: 150%;
  display: table-cell;
  font-size: 0.75rem;
}

.kome-list-item > .kome {
  width: 20px;
}

.kome-list-item .c-text__link {
  display: inline;
  font-size: 0.75rem;
}

/*-------------------------
    faq
-------------------------*/
.faq {
  padding: 60px 0;
  background: #fff9e8;
}

.faq .faq-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.faq .faq-list {
  max-width: 860px;
  margin: 0 auto 28px;
  display: grid;
  gap: 18px;
}

.faq .faq-item {
  text-decoration: none;
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  padding: 12px 20px;
  color: var(--text-black);
  border: 1px solid var(--text-black);
  border-radius: 8px;
  background: #fff;
}

.faq .faq-item:hover {
  opacity: 0.8;
}

.faq .faq-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--text-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.faq .faq-copy {
  padding-left: 12px;
  font-size: 15px;
  color: var(--text-black);
}

.faq .faq-link {
  text-align: center;
  color: #777;
  font-size: 18px;
}

.faq .faq-cta {
  margin-top: 55px;
}

/*-------------------------
    site-header
-------------------------*/

.site-header {
  padding: 23px 0;
}

.site-header img {
  width: 130px;
}

/*-------------------------
    site-footer
-------------------------*/

.site-footer {
  padding: 23px 0;
}

/*-------------------------
    hero
-------------------------*/
.hero {
  line-height: 0.8;
}
.hero img {
  width: 100%;
  max-width: 100vw;
}

/*-------------------------
    intro
-------------------------*/
.intro {
  padding: 55px 0;
  background: var(--bg-yellow);
}

.intro h1 {
  text-align: center;
  line-height: 48px;
  font-size: 2.125rem;
  color: var(--text-pink);
}

.intro h1 {
  text-align: center;
  line-height: 48px;
  font-size: 2.125rem;
  color: var(--text-pink);
}

.intro h1::after {
  width: 120px;
  height: 1px;
  margin: 22px auto 0;
  display: block;
  content: "";
  background: #f66876;
}

.intro h2 img {
  max-width: 165px;
}

.intro .c-text {
  margin-top: 44px;
  line-height: 44px;
  font-size: 1.375rem;
}

.intro .c-text + h2 {
  margin-top: 40px;
}

/*-------------------------
    anchor-list
-------------------------*/

.anchor-list {
  padding: 0;
  margin: 0;
  margin-top: 24px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.anchor-list .anchor-list-item {
  max-width: 237px;
  line-height: normal;
  font-size: 1rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--text-black);
}

.anchor-list .anchor-list-item a {
  text-align: center;
  text-decoration: none;
  position: relative;
  padding: 20px;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  color: var(--text-black);
}

.anchor-list .anchor-list-item a::after {
  position: absolute;
  bottom: -12.5px;
  left: 0;
  right: 0;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  line-height: 1;
  display: flex;
  justify-content: center;
  font-size: 10px;
  align-items: center;
  color: var(--white);
  content: "▼";
  border-radius: 12.5px;
}

.anchor-list .anchor-list-item a.link-dekitogas {
  color: #f66876;
}

.anchor-list .anchor-list-item a.link-poikatsu {
  color: #36c6a5;
}

.anchor-list .anchor-list-item a.link-internet {
  color: #f88d22;
}

.anchor-list .anchor-list-item a.link-dpoint {
  color: #007abf;
}

.anchor-list .anchor-list-item a.link-dekitogas::after {
  background-color: #f66876;
}

.anchor-list .anchor-list-item a.link-poikatsu::after {
  background-color: #36c6a5;
}

.anchor-list .anchor-list-item a.link-internet::after {
  background-color: #f88d22;
}

.anchor-list .anchor-list-item a.link-dpoint::after {
  background-color: #007abf;
}

/*-------------------------
    sec
-------------------------*/

.sec {
  padding: 70px 0;
  background: url(../images/bg_keisen.webp) repeat top left;
}

.sec .inner {
  position: relative;
  padding: 111px 80px 50px;
  background: var(--white);
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.sec .inner .ttl {
  position: absolute;
  left: -11px;
  top: 31px;
}

.sec .c-texts .c-text {
  line-height: 34px;
  font-size: 1.125rem;
}

.sec .c-texts .c-text + .c-text {
  margin-top: 24px;
}

.sec .flex {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 35px;
}

.sec .flex .flex-texts .line {
  margin-top: 38px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.sec .flex-texts .line .sec_img_3 {
  width: 60px;
  height: 60px;
}

.sec .flex-texts .line .sec_img_4 {
  width: 70px;
  height: 70px;
}

.sec .flex-texts .c-texts {
  margin-top: 32px;
}

.sec .flex-images {
  max-width: 371px;
}

.sec .flex-images .sec_img_1 {
  margin-top: -50px;
}

.sec .flex-images .sec_img_2 {
  margin-top: -90px;
}

/*-------------------------
    sec1
-------------------------*/
.sec1 {
  padding: 70px 0;
}

.sec1 .inner {
  border-bottom: 7px solid var(--text-pink);
}

/*-------------------------
    sec2
-------------------------*/

.sec2 .inner {
  border-bottom: 7px solid #36c6a5;
}

.sec2 .flex-images .sec_img_1 {
  margin-top: 0;
}
.sec2 .inner .ttl {
  position: absolute;
  left: auto;
  right: -11px;
  top: 31px;
}

/*-------------------------
    sec3
-------------------------*/

.sec3 .inner {
  border-bottom: 7px solid #f88d22;
}

.sec3 .flex {
  gap: 4px;
}

.sec3 .inner .kome-list {
  margin-top: 20px;
}

.sec3 .flex-images .sec_img_2 {
  margin-top: -140px;
}

/*-------------------------
    sec4
-------------------------*/
.sec4 .inner {
  border-bottom: 7px solid #007abf;
}

.sec4 .inner .ttl {
  position: absolute;
  left: auto;
  right: -11px;
  top: 31px;
}
.sec4 .flex {
  gap: 2px;
}

.sec4 .flex-images {
  max-width: 438px;
}

.sec4 .flex-images .sec_img_1 {
  margin-top: 0;
}

.sec4 .flex-images .sec_img_2 {
  margin-top: -40px;
  max-width: 340px;
}

/*-------------------------
    check point
-------------------------*/

.check-point {
  padding: 34px 0 50px;
}

.check-point h2 {
  text-align: center;
}

.check-point .c-catch {
  text-align: center;
  margin-top: 10px;
}

.check-point .c-card {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.8vw;
}

.check-point .c-card .c-card-item {
  padding: 20px 28px;
  max-width: 330px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.check-point .c-card .c-card-item .c-card-obj {
  margin: 0 auto;
  display: block;
}
.check-point .c-card .c-card-item .text-logo {
  text-align: center;
  margin: 23px auto 0;
}
.check-point .c-card .c-card-item .c-text {
  margin-top: 18px;
  line-height: 27px;
  font-size: 1.125rem;
}

.check-point .c-card .c-card-item .c-text__link {
  font-size: 1.125rem;
}

.check-point._article_1 {
  background: #ffb4bb;
}

.check-point._article_1 .container {
  position: relative;
}

.check-point._article_1 .c-card {
  width: 700px;
  margin: 0 auto;
  margin-top: 18px;
  justify-content: space-between;
  gap: 5px;
}

.check-point._article_1 .obj {
  position: absolute;
  bottom: -50px;
  right: 20px;
  position: absolute;
  width: clamp(160px, 22vw, 303px);
  height: auto;
  max-width: none;
}

@media (min-width: 1280px) {
  .check-point._article_1 .obj {
    right: 35px;
  }
}

@media (max-width: 1130px) {
  .check-point._article_1 .obj {
    right: -25px;
  }
}

.check-point._article_2 {
  padding-bottom: 70px;
  background: #8adbc8;
}

.check-point._article_2 .head {
  margin-top: -50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.check-point._article_2 .head .obj {
  max-width: 124px;
}

.check-point._article_2 .cover {
  z-index: 1;
  position: relative;
  margin-top: -50px;
  padding: 30px 70px 20px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.check-point._article_2 .cover .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.check-point._article_2 .cover .row-img {
  max-width: 224px;
}

.check-point._article_2 .cover .row-texts {
  width: 100%;
}

.check-point._article_2 .cover .row-texts .c-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-point._article_2 .cover .row-texts .c-list-item {
  padding-bottom: 13px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  border-bottom: dotted 2px #36c6a5;
}

.check-point._article_2 .cover .row-texts .c-list-item .text {
  font-size: 1.68rem;
}

.check-point._article_2 .cover .row-texts .c-list-item:not(:first-child) {
  margin-top: 22px;
}

.check-point._article_2 .cover .row-texts .c-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.check-point._article_3 {
  background: #feba77;
}

.check-point._article_3 .c-card .c-card-item .line {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.check-point._article_3 .c-card .c-card-item .line > img {
  width: 140px;
}

.check-point._article_3 .c-card .c-card-item .line > .c-text {
  margin-top: 0;
  line-height: 1;
  font-weight: 700;
/*  font-size: 1.425rem;*/
}

.check-point._article_3 .c-card .c-card-item .ttl {
  text-align: center;
  padding: 5px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: #3a3a3a;
}

.check-point._article_3 .c-card .c-card-item .ttl {
  text-align: center;
  padding: 5px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: #3a3a3a;
}

.check-point._article_3 .c-card .c-card-item .c-text a {
  display: inline;
}

.check-point._article_4 {
  background: #94cbea;
}

.check-point._article_4 .c-h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1.375rem;
  color: #007abf;
}

.check-point._article_4 .c-h3 > .font-s {
  font-size: 1rem;
}
.check-point._article_4 .c-card-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
.check-point._article_4 .c-card-img {
  margin-top: 8px;
}
.check-point._article_4 .c-card .c-card-item .c-text__link {
  margin-top: auto;
  font-size: 0.875rem;
}

/*-------------------------
    .toppa
-------------------------*/
.toppa {
}

.toppa h2 {
  text-align: center;
}

.toppa .inner {
  padding: 60px 80px 77px;
  border-bottom: 7px solid #d00f31;
}

.toppa .c-text {
  text-align: center;
  margin-top: 30px;
  line-height: 150%;
  font-size: 1rem;
}

.toppa .c-text .text-l {
  font-size: 1.25rem;
}

.toppa .c-full-image {
  margin: 34px auto 0;
  max-width: 760px;
}

.toppa .kome-list {
  margin-top: 30px;
}

.toppa .kome-list-item > .kome {
  width: 25px;
}

/*-------------------------
    Only PC
-------------------------*/
@media (min-width: 901px) {
  .header-inner {
    padding: 0 30px;
  }

  .is-Pc {
    display: inline;
  }

  .is-Sp {
    display: none;
  }
}

/*-------------------------
    Only SP
    max-width: 900px.
-------------------------*/
@media (max-width: 900px) {
  /* Container */
  .container {
    width: 100%;
    padding: 0 18px;
  }

  /* inner */
  .container {
    width: 100%;
    padding: 0 10px;
  }

  sup {
    font-size: 10px;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header img {
    width: 102px;
  }

  .c-buttons {
    margin-top: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .c-button__secondary {
    padding: 20px;
    width: 100%;
    font-size: 3.2vw;
  }

  .kome-list-item:not(:first-child) {
    margin-top: 4px;
  }

  .kome-list-item > span {
    font-size: 2.4vw;
  }

  /*-------------------------
        site-footer
    -------------------------*/

  .site-footer {
    padding: 25px 0;
    font-size: 10px;
  }

  /*-------------------------
        FAQ
    -------------------------*/
  .faq {
    padding: 32px 0;
  }

  .faq .faq-title {
    font-size: 8.1cqw;
  }

  .faq .faq-copy {
    font-size: 3.2vw;
  }

  .faq .faq-list {
    padding: 0 12px;
  }

  .faq .faq-item {
    grid-template-columns: 35px 1fr 34px;
    padding: 12px;
  }

  .faq .faq-icon {
    width: 35px;
    height: 35px;
  }

  .faq .faq-cta a {
    margin: 45px auto 0;
    max-width: 86%;
    display: block;
  }
  /*-------------------------
        intro
    -------------------------*/
  .intro {
    padding: 40px 0;
  }

  .intro h1 {
    line-height: 160%;
    font-size: 5.3vw;
  }

  .intro .c-text {
    margin-top: 12px;
    line-height: 200%;
    font-size: 3.46vw;
  }

  .intro .c-text + h2 {
    margin-top: 20px;
  }

  .intro h2 {
    max-width: 26.4vw;
    margin: 22px auto 0;
  }

  .intro h2 img {
    width: 100%;
  }

  .intro h1::after {
    width: 70px;
  }

  .anchor-list {
    margin-top: 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }

  .anchor-list .anchor-list-item {
    width: 100%;
    max-width: 100%;
  }

  .anchor-list .anchor-list-item a {
    padding: 16px 10px;
    font-size: 3.2vw;
  }

  .anchor-list .anchor-list-item a::after {
    width: 18px;
    height: 18px;
    font-size: 1.6vw;
  }

  /*-------------------------
        sec
    -------------------------*/
  .sec {
    position: relative;
    padding: 35px 0;
    background-size: 70px auto;
  }

  .sec .inner {
    width: 95%;
    padding: 70px 15px 20px;
  }

  .sec .inner .ttl {
    top: 20px;
    width: 36%;
  }

  .sec .flex {
    margin-top: 10px;
    flex-direction: column;
    position: relative;
    z-index: 1;
    gap: 20px;
  }

  .sec .flex-images {
    display: none;
  }

  .sec .flex-texts .line .sec_img_3 {
    width: 60px;
    height: auto;
  }

  .sec .flex-texts .c-texts {
    margin-top: 25px;
  }

  .sec .c-texts .c-text {
    line-height: 180%;
    font-size: 3.73vw;
  }

  .sec .flex-texts .line .sec_img_4 {
    width: 11.2vw;
    height: auto;
  }

  .sec .c-h2 {
    margin-top: 5px;
  }

  .sec .c-h2 img {
    width: 74%;
  }

  .sec .flex .flex-texts .line {
    gap: 4px;
    margin-top: 10px;
  }

  .sec .flex .flex-texts ._sp-line-2 {
    margin-top: 25px;
  }

  .sec1 .inner {
    border-bottom: 3px solid var(--text-pink);
  }

  .sec1 .inner::before {
    position: absolute;
    right: 0;
    top: -25px;
    width: 205px;
    height: 265px;
    display: block;
    content: "";
    background: url(../images/sp_sec1_img_1.webp) no-repeat center center;
    background-size: contain;
  }

  .sec1 .flex,
  .sec1 .c-h2 {
    position: relative;
    z-index: 1;
    gap: 11px;
  }

  .sec1 .flex .flex-texts .line:not(._sp-line-2) {
    max-width: 87%;
  }

  .sec2 .inner .ttl {
    left: -11px;
    right: auto;
  }

  .sec2 .c-h2 img {
    width: 64%;
  }

  .sec2 .flex .flex-texts .line:not(._sp-line-2) {
    max-width: 90%;
  }

  .sec2 .inner::before {
    position: absolute;
    right: -25px;
    top: -25px;
    width: 205px;
    height: 265px;
    display: block;
    content: "";
    background: url(../images/sp_sec2_img_1.webp) no-repeat center center;
    background-size: contain;
  }

  .sec3 .c-h2 img {
    width: 90%;
  }

  .sec3 .inner::before {
    position: absolute;
    right: -25px;
    top: -15px;
    width: 205px;
    height: 300px;
    display: block;
    content: "";
    background: url(../images/sp_sec3_img_1.webp) no-repeat center center;
    background-size: contain;
  }

  .sec3 .flex .flex-texts .line._sp-line-2 {
    width: 80%;
    margin-left: auto;
  }

  .sec4 .c-h2 img {
    width: 65%;
  }

  .sec4 .inner .ttl {
    right: auto;
    left: -11px;
  }

  .sec4 .flex .flex-texts ._sp-line-2 {
    max-width: 90%;
    margin-left: auto;
  }

  .sec4 .inner::before {
    position: absolute;
    right: -25px;
    top: -15px;
    width: 205px;
    height: 265px;
    display: block;
    content: "";
    background: url(../images/sp_sec4_img_1.webp) no-repeat center center;
    background-size: contain;
  }

  .check-point {
    padding-top: 20px;
  }

  .check-point h2 {
    max-width: 99px;
    margin: 0 auto;
  }

  .check-point .c-catch {
    margin-top: 8px;
  }

  .check-point .c-card._clm-3 {
    flex-direction: column;
  }

  .check-point .c-card._clm-3 .c-card-item {
    padding: 16px;
  }

  .check-point._article_1 {
    padding-bottom: 67px;
  }

  .check-point._article_1 .obj {
    width: 40%;
    left: 40%;
    right: auto;
    bottom: -67px;
    margin: 0 auto;
  }

  .check-point._article_1 .c-card {
    width: 100%;
    justify-content: center;
  }

  .check-point._article_1 .c-card .c-card-item {
    width: 46%;
    padding: 16px 14px 24px;
    border-radius: 20px;
  }

  .check-point._article_1 .c-card .c-card-item {
    width: 49%;
    padding: 16px 12px 24px;
    border-radius: 10px;
  }

  .check-point._article_1 .c-card .c-card-item .c-card-obj {
    width: 25px;
  }

  .check-point._article_1 .c-card .c-card-item .text-logo {
    margin-top: 12px;
  }

  .check-point._article_1 .c-card .c-card-item .text-logo._1 img {
    width: 90px;
  }

  .check-point._article_1 .c-card .c-card-item .text-logo._2 img {
    width: 72px;
  }

  .check-point._article_1 .c-card .c-card-item .c-text {
    margin-top: 8px;
    line-height: 160%;
    font-size: 3.2vw;
  }

  .check-point._article_1 .c-card .c-card-item .c-text__link {
    display: inline;
    font-size: 3.2vw;
  }

  .check-point._article_2 {
    padding-bottom: 40px;
  }

  .check-point._article_2 .cover {
    margin-top: -25px;
    padding: 15px;
    border-radius: 10px;
  }

  .check-point._article_2 .head {
    margin-top: -25px;
    justify-content: center;
  }

  .check-point._article_2 .head .obj {
    width: 75px;
  }

  .check-point._article_2 .head > img {
    width: 228px;
    margin-left: -30px;
  }

  .check-point._article_2 .cover .row {
    gap: 9px;
  }

  .check-point._article_2 .cover .row-img {
    min-width: 100px;
    width: 100px;
  }

  .check-point._article_2 .cover .row-texts .c-list-item {
    gap: 8px;
  }

  .check-point._article_2 .cover .row-texts .c-list-item > img {
    width: 25px;
  }

  .check-point._article_2 .cover .row-texts .c-list-item .text {
    font-size: 3.2vw;
  }

  .check-point._article_2 .cover .row-texts .c-list-item:not(:first-child) {
    margin-top: 10px;
  }

  .check-point._article_3 .c-card .c-card-item .line > img {
    width: 86px;
  }

  .check-point._article_3 .c-card .c-card-item .line > .c-text {
    font-size: 4.13vw;
  }

  .check-point._article_3 .c-card .c-card-item .line {
    height: 27px;
  }

  .check-point._article_3 .c-card .c-card-item .sp-flex {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9px;
  }

  .check-point._article_3 .c-card .c-card-item .sp-flex {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9px;
  }

  .check-point._article_3 .c-card .c-card-item .sp-flex > div {
    flex-shrink: 0;
    width: 150px;
  }

  .check-point._article_3 .c-card .c-card-item .c-text,
  .check-point._article_3 .c-card .c-card-item .c-text__link {
    margin-top: 0;
    font-size: 3.2vw;
    line-height: 170%;
  }

  .check-point._article_3 .c-card .c-card-item .c-text a {
    margin-top: 4px;
    display: block;
  }

  .check-point._article_3 .c-card .c-card-item .ttl {
    margin-top: 0;
    font-size: 2.13vw;
  }

  .check-point._article_4 .c-card-item {
    border-radius: 20px;
  }

  .check-point .c-card._clm-3 .c-card-item {
    padding: 14px 14px 20px;
    max-width: 100%;
  }

  .check-point._article_4 .c-h3 {
    font-size: 5.06vw;
  }

  .check-point._article_4 .c-h3 > .font-s {
    font-size: 3.4vw;
  }

  .check-point._article_4 .c-card .c-card-item .c-text__link {
    margin-top: 10px;
  }

  .check-point._article_4 .c-card .c-card-item .c-text__link {
    font-size: 3.4vw;
  }

  .toppa h2 {
    max-width: 90%;
    margin: 0 auto;
  }

  .toppa .c-text {
    margin-top: 0;
    font-size: 3.46vw;
  }

  .toppa .kome-list {
    margin-top: 15px;
  }

  .toppa .inner {
    padding-bottom: 30px;
  }

  .is-Sp {
    display: inline;
  }

  .is-Pc {
    display: none;
  }
}
