@charset "UTF-8";
@media screen and (min-width: 769px) {
  /* ========================================================
  # ベース設定
  ======================================================== */

  /* ========================================================
  # ユーティリティ
  ======================================================== */
  .forPC {
    display: block;
  }
  .forSP {
    display: none;
  }
  .fz-sm {
    font-size: 16px;
  }
  .fz-lg {
    font-size: 20px;
  }

  /* ========================================================
  # 共通パーツ
  ======================================================== */
  /* 二重丸、丸、三角、バツ */
  .verygood.verygood--lg,
  .good.good--lg,
  .notgood.notgood--lg,
  .bad.bad--lg {
    width: 40px;
    height: 40px;
    margin: 10px auto 20px;
  }
  /* 点りスト */
  .listDot--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .listDot--center {
    width: fit-content;
    margin: 0 auto;
  }
  /* ボタン1（比較表の中のボタン） */
  .btn1 {
    font-size: 14px;
    padding: 8px 20px 8px 15px;
  }
  /* ボタン2（検索ボタン） */
  .btn2.btn2--sm {
    min-width: 100%;
    font-size: 16px;
    padding: 16px 30px 18px;
  }
  .btn2.btn2--sm.btn2--arrow::after {
    right: 15px;
  }
  /* おすすめコースのカード */
  .card1--row .card1__body {
    padding: 10px 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  /* ========================================================
  # 共通パーツ form
  ======================================================== */
  .search__ttl img {
    max-height: 160px;
    margin: 0 auto;
    object-fit: contain;
}
  /* .form__desc {
    grid-template-columns: repeat(4, 1fr);
    padding: 25px;
  } */
  .form__desc.form__desc--5col {
    grid-template-columns: repeat(5, 1fr);
  }
  .form__label {
    padding: 12px 10px 12px 30px;
    background-color: #fff;
    display: block;
    border: 1px solid #464646;
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(70, 70, 70, 0.2);
    transition: all 0.3s;
    outline: 1px solid transparent;
  }
  .form__label::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #e9e9e9;
    border-radius: 3px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .form__label::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/ico_check.svg) no-repeat center center / contain;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
  }
  .form__label.selected,
  .form__label.on  {
    border-color: var(--Accent);
    outline: 1px solid var(--Accent);
    box-shadow: none;
  }
  .form__label.on::after,
  .form__label.selected::after {
    opacity: 1;
  }
  .form__label input {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .form__txt {
    font-size: 16px;
    font-weight: bold;
    line-height: calc(24 / 16);
  }
  /* ========================================================
  # セクション mv
  ======================================================== */
  .mv__img::before {
    margin: 0;
    font-size: 16px;
    right: calc((100% - 750px) / 2);
    top: -36px;
  }
  /* headerロゴ */
  .header__logo {
    height: 42px;
    max-width: 750px;
  }
  .header__logo::before {
    width: 210px;
    height: 42px;
  }

  /* ========================================================
  # セクション kyozai
  ======================================================== */
  .kyozai__table {
    grid-template-columns: 160fr 400fr 400fr;
  }
  .kyozai__tableTtl {
    font-size: 14px;
  }
  .kyozai__tableCel {
    padding: 20px;
    font-size: 16px;
  }
  .kyozai__tableCel--center {
    text-align: center;
  }
  .kyozai__tableCelTtl {
    font-size: 20px;
  }

  /* ========================================================
  # セクション hikaku
  ======================================================== */
  .hikaku__ttl img {
    max-height: 160px;
    margin: 0 auto;
    object-fit: contain;
  }
  .hikaku__table {
    /* width: 100%; */
    width: 960px;
    display: grid;
    grid-template-columns: 114px repeat(5, 1fr);
  }
  .hikaku__table--sm {
    width: 100%;
    grid-template-columns: 114px repeat(3, 1fr);
  }
  .hikaku__tableTtl {
    font-size: 14px;
  }
  .hikaku__tableTtl small {
    font-size: 12px;
  }
  .hikaku__tableCel {
    font-size: 14px;
  }

  /* ========================================================
  # セクション point
  ======================================================== */
  .point__ttl img {
    max-height: 150px;
    margin: 0 auto;
    object-fit: contain;
  }
  .point__inner {
    padding-right: 20px;
  }
  .point__list {
    padding-right: 0;
  }

  /* ========================================================
  # セクション interview
  ======================================================== */
  .interview {
    padding-top: 30px;
  }
  .interview__ttl img {
    max-height: 120px;
    margin: 0 auto;
    object-fit: contain;
  }
  .interview__list {
    gap: 40px;
  }
  .interview__itemTtl {
    font-size: 20px;
    padding: 7px 0 11px 48px;
  }
  .interview__itemTtl::before {
    font-size: 32px;
    width: 38px;
    height: 38px;
    padding-bottom: 5px;
  }
  .interview__itemTtl::after {
    width: calc(100% - 48px);
    border-bottom: 2px dotted var(--Main);
  }
  .interview__itemWrap {
    grid-template-columns: 300px 1fr;
    column-gap: 85px;
    max-width: 730px;
    margin: 30px auto 0;
  }
  .interview__itemImg {
    grid-area: initial;
    padding-left: 30px;
  }
  .interview__itemBody {
    display: block;
  }
  .interview__itemFukidashi {
    grid-area: initial;
    margin-top: 20px;
    padding: 30px;
    font-size: 16px;
    line-height: calc(24 / 16);
  }
  .interview__itemFukidashi::before {
    width: 16px;
    height: 18px;
    background: url(../img/ico_fukidashi_pc.svg) no-repeat center center / contain;
    left: -15px;
    top: 30px;
    transform: initial;
  }
  .interview__itemCopy {
    grid-area: initial;
    margin-top: 25px;
    text-align: left;
    font-size: 16px;
    line-height: calc(24 / 16);
    text-underline-offset: 5px;
  }
  .interview__itemQuote {
    grid-area: initial;
    margin-top: 51px;
    font-size: 12px;
  }
  .interview__itemComments {
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 30px;
    max-width: 100%;
    margin: 30px auto 0;
  }
  .interview__itemComment {
    /* flex-direction: row-reverse; */
    width: 80%;
    margin: 0 auto;
  }
  .interview__itemPerson {
    width: 75px;
  }
  .interview__itemPerson img {
    position: static;
    transform: initial;
  }
  .interview__itemName {
    position: static;
    transform: initial;
    font-size: 12px;
    margin-top: 5px;
  }
  /* .interview__itemFukidashi2::before {
    right: auto;
    left: -11px;
    rotate: 0deg;
  } */

  /* ========================================================
  # セクション ranking
  ======================================================== */
  .ranking {
  }
  .ranking__ttl {
    /* margin-bottom: 10px; */
  }
  .ranking__ttl img {
    max-height: 160px;
    margin: 0 auto;
    object-fit: contain;
}
  .ranking__item {
    padding-top: 20px;
  }
  .ranking__head {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-left: 0;
  }
  .ranking__label {
    width: 100px;
    height: 120px;
  }
  .ranking__headWrap {
  }
  .ranking__subTitle {
    font-size: 16px;
  }
  .ranking__link {
    font-size: 34px;
  }
  .ranking__bnr {
    margin-top: 10px;
  }
  /* .ranking__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  } */
  .ranking__pointBox {
    padding: 40px 40px 30px;
    max-width: 700px;
    margin: 40px auto 0;
  }
  .ranking__recommend.ranking__recommend--other {
    margin-top: 0;
  }
  .ranking__contentsList {
    display: flex;
    gap: 20px;
  }
  .ranking__category {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #000;
    position: relative;
  }
  .ranking__categoryTtl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 14px;
    background-color: #fff;
    width: max-content;
  }
  .ranking__categoryTtl::before,
  .ranking__categoryTtl::after {
    display: none;
  }
  .ranking__subList {
    gap: 14px;
    margin-top: 0;
  }
  .ranking__subItem {
    width: 58px;
  }
  .ranking__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ranking__tableRow {
    display: grid;
    grid-template-columns: 111px 1fr;
  }
  .ranking__tableRow:nth-last-child(-n + 2) .ranking__tableHead,
  .ranking__tableRow:nth-last-child(-n + 2) .ranking__tableData {
    border-bottom: none;
  }
  .ranking__tableHead {
    font-size: 14px;
  }
  /* インタビュー */
  .ranking__interviewList {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .ranking__interviewName {
    font-size: 12px;
  }
  .ranking__interviewItem {
    padding: 10px;
  }
  .ranking__moreBtn {
    max-width: 700px;
  }
  /* ポイント */
  .ranking__pointsTtl::before {
    width: calc(390 / 960 * 100%);
  }
  .ranking__pointsTtl::after {
    width: calc(390 / 960 * 100%);
  }
  .ranking__points--other .ranking__pointsTtl::before {
    width: calc(145 / 465 * 100%);
  }
  .ranking__points--other .ranking__pointsTtl::after {
    width: calc(145 / 465 * 100%);
  }
  .ranking__pointsItem {
    gap: 15px;
  }
  .ranking__pointsItemTxt {
    font-size: 16px;
    line-height: calc(27 / 16);
  }
  .ranking__points--other .ranking__pointsItemTxt {
    font-size: 14px;
    line-height: calc(22 / 14);
  }
  .ranking__pointsItem .ranking__pointTxt {
    font-size: 16px;
    line-height: calc(27 / 16);
  }
  .ranking__pointsItem img {
    width: 70%;
    margin: 0 auto;
  }

  /* ========================================================
  # セクション matome
  ======================================================== */
  .matome__ttl img {
    max-height: 190px;
    margin: 0 auto;
    object-fit: contain;
  }
  .matome__text {
    text-align: center;
  }

  /* ========================================================
  # セクション result
  ======================================================== */
  .result__btnWrap {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    align-items: center;
  }
  .result__btn {
    padding: 11px 17px;
    font-size: 14px;
  }

  /* ========================================================
  # セクション recommend
  ======================================================== */
  .recommend {
  }
  .recommend__ttl img{
    max-height: 135px;
    margin: 0 auto;
    object-fit: contain;
  }
  .recommend__inner {
    padding: 0 24px;
  }
  .recommend__wrap {
    overflow: initial;
    padding-left: 0;
    padding-bottom: 32px;
    margin-top: 8px;
  }
  .recommend__list {
    /* grid-template-columns: 2fr 1fr 1fr; */
    gap: 33px;
    width: 100%;
  }
  .recommend__item {
    padding: 22px 0;
  }
  .recommend__item:nth-child(1) {
    padding: 20px 18px;
    border-radius: 20px;
  }
  .recommend__bnr {
    width: 190px;
    min-height: 197px;
  }
  .recommend__itemTtl {
    margin-top: 15px;
  }
  .recommend__link.txt-link {
    font-size: 20px;
  }
  .recommend__box {
    margin-top: 17px;
    min-height: 194px;
  }
  .recommend__boxTtl {
    font-size: 16px;
    padding: 10px 5px;
  }
  .recommend__points {
    padding: 14px;
  }
  .recommend__item:nth-child(1) .recommend__points {
    background-color: #fff;
  }
  .recommend__point {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    font-size: 14px;
  }
  .recommend__point img {
    width: 32px;
    height: 32px;
  }
  .recommend__btn {
    margin-top: 12px;
  }


  /* ========================================================
  # セクション positioningMap
  ======================================================== */
  .positioningMap {
    margin-top: 8px;
  }
  .positioningMap__ttl img {
    max-height: 120px;
    margin: 0 auto;
    object-fit: contain;
  }
  .positioningMap__bg {
    padding: 58px 90px;
  }
  .positioningMap__label {
    height: 40px;
    font-size: 14px;
  }
  .positioningMap__label--01 {
    width: 90px;
  }
  .positioningMap__label--02 {
    width: 90px;
  }
  .positioningMap__label--03 {
    width: 80px;
  }
  .positioningMap__label--04 {
    width: 80px;
  }
  .positioningMap__item {
    width: 21%;
    padding: 5px;
  }
  .positioningMap__item--01 {
    width: 28.19%;
    right: 7%;
  }
  .positioningMap__item--01::before {
    top: -103%;
  }
  .positioningMap__item-catch {
    font-size: 12px;
  }
/* ========================================================
# セクション importance
======================================================== */
.importance{
  padding-top: 15px;
  padding-bottom: 20px;
}
.importance__ttl img {
  max-height: 115px;
  margin: 0 auto;
  object-fit: contain;
}
.importance__img{
  margin-top: 15px;
}


/* ========================================================
# セクション elementaryページrecommend
======================================================== */
.elementary-recommend {
  padding-bottom: 42px;
}

.elementary-recommend__ttl img {
  max-height: 140px;
  margin: 0 auto;
  object-fit: contain;
}

.elementary-recommend__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 30px auto 0;
  max-width: 952px;
}

.elementary-recommend__item-ttl {
  top: -5px;
}

.elementary-recommend__item-flag {
  width: 174px;
  top: -27px;
}

.elementary-recommend__item-img {
  height: 105px;
  padding-top: 35px;
}

.elementary-recommend__item-img img {
  width: 160px;
  object-fit: contain;
}

.elementary-recommend__item:nth-child(2) .elementary-recommend__item-img img {
  width: 170px;
}

.elementary-recommend__item:nth-child(3) .elementary-recommend__item-img img {
  width: 121px;
}

.elementary-recommend__item-body {
  padding: 10px;
}

.elementary-recommend__item-btn {
  display: block;
  position: relative;
  bottom: auto;
  right: auto;
  margin-top: 16px;
  border-radius: 60px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background-image: none;
  background-color: var(--Accent);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.elementary-recommend__item-btn::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_arrow_cta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
/* 20250310 サイト横幅調整 */
.search__inner {
  padding: 0 20px;
}
.present__ttl {
  max-height: 120px;
  object-fit: contain;
}

}

