@charset "utf-8";

/****************************************
コースメニュー
****************************************/
.sectionMenu * {
  box-sizing: border-box;
}

.sectionMenu {
  padding: 100px 0 0;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 18px;
}

.sectionMenuTtl {
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  position: relative;

  & img {
    position: absolute;
    top: -125%;
    left: 0;
    z-index: -1;
    width: 35%;
    opacity: 0.6;
  }
}

.sectionMenuSubTtl {
  font-size: 40px;
  text-align: center;
  margin: 40px auto 0;
  font-weight: 900;
  background: linear-gradient(transparent 70%, #fbf22c 70%);
  width: fit-content;
  padding: 0 10px;
}

.sectionMenuList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  &:first-of-type {
    margin-bottom: 100px;
  }

  & li {
    width: 50%;
    margin-top: 60px;

    &:nth-child(odd) {
      border-right: 1px dotted #000;
      padding-right: 60px;
    }

    &:nth-child(even) {
      padding-left: 60px;
    }
  }

  & + p {
    text-align: center !important;
    margin-top: 60px;
    font-size: 14px;
  }
}

.sectionMenuCts {
  & dt {
    color: #005bac;
    font-size: 28px;
    font-weight: 900;

    & span {
      width: 40px;
      display: inline-block;
      line-height: 40px;
      text-align: center;
      background-color: #005bac;
      color: #FFF;
      margin-right: 10px;
      font-weight: 600;
    }
  }

  & dd {
    margin-top: 10px;
  }
}

.sectionMenuOutline {
  font-weight: 600;
  font-size: 20px;
}

.sectionMenuOutlineSub {
  font-size: 15px;
  font-weight: 500;
}

.sectionMenuOutlineNote {
  font-size: 14px;
}

.sectionMenuTable {
  color: #005bac;
  width: 100%;
  font-size: 26px;
  position: relative;
  margin-top: 15px;
  line-height: 1.4;

  &:before,
  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid #005bac;
    border-bottom: 2px solid #005bac;
    width: 10px;
    height: 90%;
  }

  &:before {
    left: 0;
    border-left: 2px solid #005bac;
  }

  &:after {
    right: 0;
    border-right: 2px solid #005bac;
  }

  & th,
  td {
    vertical-align: top;
    padding: 5px 30px;
    font-weight: 900;
  }

  & th {
    & span {
      font-size: 18px;
      font-weight: 500;
    }
  }

  & td {
    text-align: right;
  }
}

@media only screen and (max-width: 768px) {
  .sectionMenu {
    padding: 50px 0;
  }

  .sectionMenuTtl {
    font-size: 32px;

    & img {
      top: -100%;
    }
  }

  .sectionMenuSubTtl {
    font-size: 22px;
    margin: 20px auto 0;
  }

  .sectionMenuList {
    margin-bottom: 50px;

    & li {
      width: 100%;
      margin-top: 30px;

      &:nth-child(odd) {
        border-right: none;
        padding-right: 0;
      }

      &:nth-child(even) {
        padding-left: 0;
      }
    }
  }

  .sectionMenuCts {
    & dt {
      font-size: 20px;

      & span {
        width: 30px;
        line-height: 30px;
      }
    }
  }

  .sectionMenuOutline {
    font-size: 16px;
  }

  .sectionMenuOutlineSub {
    font-size: 14px;
  }

  .sectionMenuOutlineNote {
    font-size: 12px;
  }

  .sectionMenuTable {
    font-size: 16px;

    & th,
    td {
      padding: 5px 20px;
    }

    & th {
      & span {
        font-size: 12px;
      }
    }
  }
}
