/*== 共通パーツ ==*/
/*= webfont =*/
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap&family=Mochiy+Pop+One&display=swap');

#body-wrapper {
  font-family: "Zen Maru Gothic", sans-serif;

  /* ページタイトル */
  .page-title {
    background-image: repeating-linear-gradient(10deg, var(--white), #E7F3FE 1px, #E7F3FE 60px, var(--white) 61px, var(--white) 80px);
    font-size: 2rem;
    text-align: center;

    @media screen and (max-width:1023px) {
      &,
      .inner_box {
        padding: 0;
      }

      img {
        width: 100%;
      }
    }
    @media screen and (min-width:1024px) {
      .inner_box {
        padding: 0 2.8rem 2rem 1rem;
      }
    }
    @media screen and (min-width:1110px) {
      .inner_box {
        padding: 0 0 2rem;
      }
    }
  }
  h1 {
    color: var(--title-color);
    font-weight: 700;
    font-size: 2.5rem;
  }

  .section {
    background: var(--white);
  }

  /* ページリード */
  .lead-section b {
    background: linear-gradient(transparent 60%, #ff9ec0 60%);
  }

  /* ページメインコンテンツ */
  .page-body {}

  .txt-link {
    color: #0000ff;
    text-decoration: underline;
  }

  .page-body-lead {
    background: var(--white);
    overflow: hidden;
    padding-top: max(3.15rem, 12.66cqi);
    padding-bottom: 1.6rem;

    .page-body-lead_bg {
      border-radius: 5rem 5rem 0 0;
      background: var(--main-color);
    }

    .inner_box {
      position: relative;
      padding-bottom: 2rem;
    }

    .page-body-lead-title {
      position: absolute;
      left: max(1.666rem, 6.66cqi);
      top: max(2.4rem, 9.6cqi);
      width: 25%;

      @media screen and (min-width:768px) {
        top: 1.25rem;
      }
    }

    .page-body-lead-img {
      position: relative;
      width: 90%;
      left: 16%;
      z-index: 2;
      text-align: center;

      picture {
        display: block;
      }
    }

    .page-body-lead-txt {
      position: relative;
      color: var(--white);
      z-index: 3;
    }
  }

  .page-body-content {
    padding: 1.6rem 0;

    .inner_box {
      padding: 0 1.6rem;

      @media screen and (min-width:1024px) {
        padding: 3.4375rem 2.8rem 3.4375rem 1rem;
      }
      @media screen and (min-width:1280px) {
        padding: 3.4375rem 0;
      }
    }

    .content-desc {
      padding: 1.6rem 0;
    }
  }

  .content-scrollview {
    padding-top: 1.6rem;
    overflow-x: scroll;
    /*-ms-overflow-style: none;
    scrollbar-width: none;*/

    picture {
      display: inline-block;
    }

    img {
      max-height: initial;
      max-width: initial;
    }

    h3 {
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 1.3rem;

      @media screen and (min-width:500px) {
        font-size: 1.65rem;
      }
    }

    /*::-webkit-scrollbar {
      display: none;
    }*/
    @media screen and (min-width:1024px) {
      img {
        max-height: 100%;
        max-width: 100%;
      }
      overflow: hidden;
    }
  }

  .page-footer {
    padding: .4rem 0 2rem;
  }

  /* フォーム選択タブ */
  .tab-btn-list {
    display: grid;
    padding-bottom: 3rem;
    gap: 1.6rem;
  }

  .tab-btn {
    border-radius: 1rem;
    border: var(--main-color) 2px solid;
    display: block;
    padding: 2.3rem 0;
    font-size: 1.4rem;
    color: var(--main-color);
    position: relative;
    text-align: center;
  }

  .tab-btn:before,
  .tab-btn:after {
    content: "";
    width: 1rem;
    height: 2px;
    transform: rotate(45deg) translateX(calc(-50% + 1px));
    position: absolute;
    bottom: .6rem;
    right: 0;
    left: 0;
    margin: auto;
    background: var(--main-color);
    border-radius: 2px 0 0 2px;
  }

  .tab-btn:after {
    transform: rotate(-45deg) translateX(calc(50% - 1px));
    border-radius: 0 2px 2px 0;
  }

  .tab-btn:hover,
  .tab-selected {
    background: var(--main-color);
    color: var(--white);
    opacity: 1;

    &:before,
    &:after {
      background: var(--white);
    }
  }

  .form-section {
    position: relative;
    background: #e4e9f3;
    padding-top: 3.33rem;
    pointer-events: none;

    &:before {
      content: "";
      width: 100%;
      height: 100%;
      background: var(--black);
      opacity: .48;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
    }

    h2 {
      font-size: 3.125rem;
      display: none;
    }
  }

  .tab-active {
    pointer-events: all;

    &:before {
      display: none;
    }
  }

  .tab-content {
    display: none;
    scroll-margin-top: calc(var(--header-height-sp) * 2.4);
  }

  .tab-show {
    display: block;
  }
  .wpcf7-turnstile {
    text-align: center;
  }
}

@media screen and (min-width:768px) {
  #body-wrapper {
    .page-body-lead .page-body-lead_bg {
      top: 1.25rem;
    }

    .page-body-lead .page-body-lead-img {
      top: 0;
      width: 100%;
      left: 0;
    }

    .content-header_wrap {
      display: grid;
      grid-template-columns: 1fr 390px;
      gap: 1.25rem;
    }

    .content-desc {
      line-height: 2.1875;
      letter-spacing: -.025rem;
    }

    .content-title {
      max-width: 365px;
    }
  }
}

@media screen and (min-width:1024px) {
  #body-wrapper {

    /* ページタイトル */
    .page-title {
      padding: 2.5rem 0;
    }

    .page-title .inner_box {
      display: grid;
      grid-template-columns: 1fr 500px;
      gap: 40px;

      .page-title-kv {
        margin: 0;
      }

      .page-title-kv:after {
        display: none;
      }
    }

    /* ページリード */
    .lead-section {
      .inner_box {
        max-width: 880px;
      }

      padding-top: 4.375rem;

      p {
        line-height: 2.1875;
      }

      p:not(:last-child) {
        padding-bottom: 2.5rem;
      }

      b {
        font-size: 1.25rem;
      }
    }

    /* ページメインコンテンツ */
    .page-body-lead {
      padding-top: 1.6rem;
    }

    .page-body-lead .inner_box {
      max-width: 940px;
      padding-top: 2rem;
      display: grid;
      align-items: center;
    }

    .page-body-lead p:not(:last-child) {
      margin-bottom: 3.125rem;
    }

    .page-body-content {
      padding: 0;
    }
  }

  .tab-content {
    scroll-margin-top: var(--header-height-pc);
  }

  .form-section .inner_box {
    padding: 0 2rem;
  }
}
@media screen and (min-width:1110px) {
  .form-section .inner_box {
    padding: 0;
  }
}


/*= 各ページ独自要素 =*/
/* 資格の子ページ共通 */
.certifications #body-wrapper,
.qualified #body-wrapper {
  .page-footer {
    text-align: center;
  }

  @media screen and (max-width:1023px) {
    .page-body-lead-title {
      width: 18%;
    }

    .page-body-lead-img {
      width: 88%;
      left: 14%;
      padding-bottom: 1.5rem;
    }

    .page-body-lead-txt {
      left: -1.6rem;
    }

    .page-body-lead_bg .inner_box {
      padding-bottom: 0;
    }

    .merit-list li {
      height: max(3.6rem, 14.4cqi);
      padding-bottom: max(2rem, 8.25cqi);
      box-sizing: content-box;
    }

    .merit-list li img {
      height: 100%;
      width: auto;
    }

    .merit-section2 .content-scrollview img {
      max-height: 31.66rem;
    }

    .content-overview .content-desc {
      padding-bottom: 0;
    }
  }

  @media screen and (min-width:1024px) {
    .page-body-lead-title {
      left: 0;
    }

    .page-body-lead_bg .inner_box {
      padding-top: 1rem;
    }

    .page-footer {
      padding-top: 2.1625rem;
      padding-bottom: 5.5rem;
    }
  }
}

/* 短大資格取得 */
.certifications #body-wrapper {
  .page-body-lead_bg {
    background: #4fd895;
  }

  .page-body-lead-img {
    top: max(-1.5rem, -4.4cqi);
    left: 1.6rem;
  }

  .merit-section3 {
    .subject {
      display: grid;
      grid-template-columns: min(450px, 61.33cqi) min(1120px, 149.33cqi);
      gap: 4.5rem;
    }

    .subject-catch {
      white-space: nowrap;
      letter-spacing: -1px;
    }

    .subject-item {
      display: flex;
      flex-grow: 1;
      flex-direction: column;
      margin: 0;
    }

    .subject-item dl {
      border: 3px solid #84ccd3;
      border-radius: .25rem;
      display: flex;
      flex-grow: 1;
      flex-direction: column;
      margin: 0;
    }

    .subject-item dt {
      background: #84ccd3;
    }

    .subject-header {
      padding: 1.5rem 1.5rem 1rem;
    }

    .subject-name {
      font-size: 1.4rem;
    }

    .subject-header p {
      font-size: 1.2rem;
      line-height: 1.2;
      padding-top: 1rem;
      font-family: 'Noto Sans JP';
    }

    .subject-list {
      padding: 0 1rem 1rem;
    }

    .subject-list li {
      font-size: 1.1rem;
      font-family: 'Noto Sans JP';
      padding-top: 1rem;
    }

    .general-subject dl {
      position: relative;
    }

    .general-subject dl:before,
    .general-subject dl:after {
      content: "";
      width: 2px;
      height: 2rem;
      background: var(--text-color);
      position: absolute;
      margin: auto;
      top: 0;
      bottom: 0;
      right: -2.5rem;
    }

    .general-subject dl:after {
      transform: rotate(90deg);
    }

    .general-subject .subject-list {
      height: 100%;
    }

    .core-subject .subject-list {
      display: grid;
      grid-template-columns:55% 45%;
      height: 100%;
    }
  }

  .merit-section4 .content-scrollview img {
    width: 1000px;
  }

  @media screen and (max-width:1023px) {
    .content-overview {
      padding-top: 0;
    }

    .merit-section2 .content-scrollview img {
      max-height: 31.66rem;
    }
  }
  @media screen and (min-width:500px) {
    .page-body-lead-img {
      top: 0;
    }

    .merit-section3 {
      .subject {
        grid-template-columns: 17.8125rem 42.1875rem;
        gap: 2.5rem;
      }

      .subject-header {
        padding: 1.5rem 1rem 1rem;
      }

      .subject-name {
        font-size: 1.2rem;
      }

      .subject-header p {
        font-size: 1rem;
      }

      .general-subject dl:before,
      .general-subject dl:after {
        right: -1.5rem;
      }
    }
  }

  @media screen and (min-width:1024px) {
    .page-body-lead_bg .inner_box {
      grid-template-columns: max-content 490px;
    }

    .merit-list li {
      padding-top: 1rem;
    }

    .page-body-lead-txt {
      align-self: end;
    }

    .page-body-lead .inner_box {
      justify-content: space-between;
    }
    .merit-section3 .subject {
      grid-template-columns: 57fr 137fr;
    }
    .merit-section4 .content-scrollview img {
      width: 100%;
    }
  }
}

/* 資格取得 */
.qualified #body-wrapper {
  .page-body-lead_bg {
    background: #13acff;
  }

  .page-body-lead-img {
    top: max(-.75rem, -2.4cqi);
  }

  .cert-list {
    width: auto;
    min-width: 100%;
    background-image: repeating-linear-gradient(10deg, var(--white), #E9F2FE 1px, #E9F2FE 7px, var(--white) 8px, var(--white) 9px);

    td,
    th {
      white-space: nowrap;
      text-align: left;
    }

    th {
      background: #13acff;
      color: var(--white);
      text-align: left;
      padding: 1rem .75rem;
      font-size: 1.2rem;
    }

    td {
      vertical-align: middle;
      border-bottom: 1px solid #29abe2;
    }

    td img {
      height: 1rem;
      vertical-align: middle;
      padding: 0 .5rem .3rem 0;
      box-sizing: content-box;
    }

    td p {
      display: inline-block;
      font-size: 1.2rem;
      font-weight: 500;
    }

    .cert-group {
      padding: 1.2rem .5rem;
    }

    .cert-item {
      padding: 1.2rem 1rem;
    }
  }

  .cert-best3 {
    width: 100%;
    margin: 1.2rem 0;
    border-top: 2px dashed #e6e6e6;

    th {
      width: 4.66666666667rem;
      padding: 1rem 0;
      border-bottom: 2px dashed #e6e6e6;
    }

    td {
      font-size: 1.2rem;
      font-weight: 500;
      vertical-align: middle;
      padding: 1rem 1.2rem;
      border-bottom: 2px dashed #e6e6e6;
    }
  }

  .cert-best4-6,
  .cert-best7-10 {
    width: 100%;
    border: 2px solid #e6e6e6;
    border-bottom: none;

    th,
    td {
      vertical-align: middle;
      font-weight: 500;
      font-size: 1rem;
      padding: 1.2rem 1.5rem;
      border-bottom: 2px solid #e6e6e6;
    }

    th {
      background: #e6f7ff;
      text-align: center;
      border-right: 2px solid #e6e6e6;
      width: 20%;
    }
  }

  .cert-best7-10 {
    border-top: none;
  }

  .merit-section2 .content-title {
    width: 62.5%;
    min-width: 210px;
  }

  @media screen and (min-width:1024px) {
    .page-body-lead_bg .inner_box {
      grid-template-columns: max-content 570px;
    }

    .merit-list li {
      padding-top: 2rem;
    }

    .page-body-lead-img {
      top: 0;
    }

    .page-body-lead .inner_box {
      justify-content: center;
      gap: 2rem;
      padding-bottom: 1rem;
    }

    .merit-section2 .content-body {
      display: grid;
      grid-template-columns: 320px 375px 1fr;
    }

    .merit-section2 .content-title {
      width: 224px;
      margin-bottom: 1rem;
    }

    .cert-best3,
    .cert-best3 th,
    .cert-best3 td {
      border: none;
      padding: .5rem 0;
      width: auto;
      text-align: left;
    }

    .cert-best3 td {
      font-size: 1.5625rem;
    }

    .cert-best4-6 th,
    .cert-best7-10 th {
      width: auto;
      font-size: 1.25rem;
    }

    .cert-best4-6 td,
    .cert-best7-10 td {
      padding: .5rem;
      font-size: 1.25rem;
    }

    .cert-best4-6 {
      border-right: none;
    }

    .cert-best4-6 th {
      padding: 0 1rem;
    }

    .cert-best7-10 {
      border-top: 2px solid #e6e6e6;
    }

    .cert-best7-10 th {
      padding: 0 .25rem;
    }
  }
}


/* 熱血教師陣 */
.teacher #body-wrapper {
  .page-body {
    background-color: #f3f3f7;
  }

  .content-overview .inner_box {
    padding-bottom: 0;
  }

  .teachers-list {
    display: grid;
    gap: 1.3rem;

    .popup-target {
      display: none;
    }

    .teacher-item {
      box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
    }

    .teacher-jobtitle,
    .teacher-name,
    .teacher-profile {
      font-weight: 500;
    }
  }

  .executive-list {
    padding-bottom: 1.3rem;

    .teacher-item {
      background-image: linear-gradient(90deg, #f8fdfe, #e5f2f7);
      position: relative;
    }

    @media screen and (min-width:768px) {
      grid-template-columns: repeat(2, 1fr);
    }

    .btn-icon {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 3rem;

      @media screen and (min-width:1024px) {
        width: 4rem;
      }
    }

    .item-view {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    .teacher-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 1.6rem;
      position: relative;
    }

    .teacher-name {
      font-size: 1.4rem;
    }
  }

  .staff-list {
    grid-template-columns: repeat(2, 1fr);

    @media screen and (min-width:768px) {
      grid-template-columns: repeat(3, 1fr);
    }

    @media screen and (min-width:1024px) {
      grid-template-columns: repeat(4, 1fr);
    }

    .teacher-item {
      background: var(--white);
    }

    .teacher-thumb {
      background-image: linear-gradient(90deg, #f8fdfe, #e5f2f7);
    }

    .teacher-info {
      padding: .5rem 1rem;
    }

    .teacher-jobtitle,
    .teacher-profile {
      font-size: .85rem;
      line-height: 1.2;
    }

    .teacher-name {
      font-size: 1.1rem;
      margin-bottom: .5rem;
    }
  }
}

.teacher #popup-wrapper {
  font-family: 'Zen Maru Gothic';

  .popup-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: solid var(--black) 2px;
  }

  .job_title {
    padding-bottom: 1rem;
    font-weight: 500;
  }

  .teacher-name {
    font-size: 1.4rem;
    font-weight: 500;
  }

  .popup-body p {
    line-height: 1.4;
    font-size: 1.33rem;
    font-weight: 500;
  }
}


/* 入試日程・募集要項 & 学費・学費システム 共通 */
.entrance_examination #body-wrapper,
.expenses #body-wrapper {
  background: #f0f5fb;

  .page-title .inner_box {
    @media screen and (min-width:1024px) {
      display: block;
    }
  }

  section {
    background: #f0f5fb;
    padding-bottom: 3.5rem;
  }

  .page-body .inner_box {
    padding: 0 1.6rem;
  }

  h1 {
    background: #bdd2ee;
    padding: 4rem .5rem 3.333rem;
    font-weight: 900;
  }

  h2 {
    font-size: 1.666rem;
    color: #284ca1;
    font-weight: 700;
    margin-bottom: .875rem;
  }

  h3 {
    background: #284ca1;
    color: var(--white);
    font-size: 1.4rem;
    padding: .5rem;
    font-weight: 500;
    margin: 6px 0 .875rem;
    position: relative;

    &:before {
      /* content: "";
      height: 2px;
      width: 100%;
      background: #ff0000;
      position: absolute;
      top: -6px;
      left: 0; */
    }
  }

  p,
  li,
  a,
  td,
  th,
  span,
  address,
  h4,
  h5,
  h6 {
    font-family: 'Noto Sans JP';
  }

  .item-header {
    background: #cadbf2;
    padding: .875rem;
  }

  .item-body {
    background: var(--white);
    padding: .5rem .875rem;

    p {
      letter-spacing: -0.001rem;
      margin-bottom: .25rem;
    }
  }

  .item-subheader {
    padding: .875rem;
    border-bottom: 2px solid #f0f5fb;
    background: var(--white);
  }

  .page-desc {
    font-size: 1.3rem;
    padding: 1.6rem;
    margin: 0;

    @media screen and (min-width:1024px) {
      text-align: center;
    }
  }

  .support-notes {
    padding-top: .8rem;
  }

  .note {
    padding-bottom: .4rem;
    font-size: .8rem;
    line-height: 1.8;
  }

  .note a {
    text-decoration: underline;
  }

  table {
    min-width: 100%;

    th {
      background: #bdd2ee;
      text-align: center;
      padding: .875rem .5rem;
    }

    td {
      padding: .875rem .5rem;
      background: var(--white);
    }

    th,
    td {
      border-right: 2px solid #f0f5fb;
      border-bottom: 2px solid #f0f5fb;
      text-align: center;
      line-height: 1.3;
    }

    .is_nowrap {
      white-space: nowrap;
    }
  }

  .content-scrollview {
    padding: 0;

    table {
      width: auto;
    }

    td,
    th {
      white-space: nowrap;
    }
  }

  .anchor-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 0 1.6rem 3.5rem;

    @media screen and (min-width:1024px) {
      grid-template-columns: repeat(6, 1fr);
    }

    a {
      padding: 1rem .5rem 2rem;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      position: relative;

      @media screen and (max-width:1023px) {
        min-height: 6rem;
      }
    }

    a:before {
      content: "";
      width: .75rem;
      height: .75rem;
      border: transparent solid 2px;
      transform: rotate(45deg);
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      bottom: .75rem;
    }

    a span {
      line-height: 1.4;
    }

    .ltxt {
      padding-top: .5rem;
    }
  }

  .section-anchor-list {
    a {
      background: #284ca1;
      color: var(--white);
    }

    a:before {
      border-bottom: 2px solid var(--white);
      border-right: 2px solid var(--white);
    }
  }

  .system-anchor-list {
    margin: 0 0 3.5rem;
    border: 1px solid #284ca1;
    gap: 0;

    li {
      border: 1px solid #284ca1;
    }

    a {
      background: var(--white);
      color: #284ca1;
    }

    a:before {
      border-bottom: 2px solid #284ca1;
      border-right: 2px solid #284ca1;
    }
  }

  #section-schedule {
    padding-bottom: 4rem;

    td {
      text-align: center;
    }

    .schedule-mark {
      display: inline-block;
      text-indent: -99999px;
      border-radius: 9999px;
      border: 1px solid var(--text-color);
      width: 1rem;
      height: 1rem;
    }
  }

  .info-table {
    @media screen and (min-width:1024px) {
      padding-bottom: 0;

      li,
      .table-item {
        display: grid;
        grid-template-columns: 13.75rem 1fr;
        background: var(--white);
        margin-bottom: 2px;
      }
    }

    table {
      margin: .5rem 0;
    }

    table td {
      background: #f0f5fb;
      padding: .5rem;
      text-align: center;
    }

    .item-header {
      @media screen and (min-width:1024px) {
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }

    .item-body table {

      td,
      th {
        border-right: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
        text-align: center;
      }
    }
  }

  .advantages-list {
    text-align: center;
    margin-top: 1rem;
    padding: 2.4rem 1.6rem 0;
    background: #ffe7e7;
    border: 1px solid #ff0000;
    border-radius: .875rem;

    @media screen and (min-width:1024px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.875rem;
    }

    .advantages-item {
      position: relative;
      margin-bottom: 2rem;
    }

    .advantages-header {
      position: absolute;
      height: 2rem;
      margin: auto;
      left: 0;
      right: 0;
      top: -1rem;

      img {
        height: 2rem;

        @media screen and (min-width:1024px) {
          height: 2.375rem;
        }
      }
    }

    .advantages-body {
      & * {
        font-family: 'Zen Maru Gothic';
      }

      background: var(--white);
      border-radius: .875rem;
      padding: 2rem .5rem;

      @media screen and (min-width:1024px) {
        padding-bottom: 1rem;
      }

      p {
        font-size: 1.125rem;
        text-align: center;
      }

      .highlight {
        font-size: 1.25rem;
        color: #ff0000;
      }

      strong {
        font-size: 1.25rem;
        font-weight: 500;
      }

      em {
        font-weight: 500;
        font-size: 1.4rem;
        background: linear-gradient(transparent 60%, #fff09a 60%);
        display: inline-block;
      }
    }
  }

  .step-list {
    margin-bottom: 1.75rem;
  }

  /* 入試制度 */
  #section-system {
    #system1 {
      h3 {
        margin-bottom: .5rem;
      }
      .note {
        @media screen and (max-width:1023px) {
          margin-bottom: 2rem;
        }
      }
    }

    #system2 {
      strong {
        color: #ff0000;
        font-weight: 400;
        margin-left: 1rem;
      }
    }
  }


  /* 振込先等 */
  #section-guid {
    address {
      line-height: 1.4;
    }

    p:not(:last-of-type) {
      margin-bottom: 1rem;
    }

    a {
      color: #284ca1;
      text-decoration: underline;
    }

    .letter-dot {
      font-size: 1.666rem;
      font-weight: 700;
      letter-spacing: -.25rem;
    }

    .branch-list {
      padding: 0;
      background: none;
      margin-bottom: 3.5rem;

      @media screen and (min-width:1024px) {
        grid-template-columns: 40% 60%;
      }
    }

    .branch-list .item-body {
      padding: 0;
    }

    .branch-list .list-item {
      margin: 0;
      display: block;
      padding: 1rem;
      background: var(--white);
    }

    .branch-list .list-item:not(:last-child) {
      border-bottom: 2px solid #f0f5fb;
    }
  }
}


/*= 学費・学費システム =*/
.expenses #body-wrapper{
  h3 {
    line-height: 1.4;
  }
  .item-header {
    line-height: 1.4;
  }
  .info-table .item-body .addfee {
    th{
      text-align: left;
      white-space: normal;
      width: 50%;
    }
  }
  .btn-wrapper {
    padding: 1rem 0;
    display: grid;
    gap: 1rem;
    @media screen and (min-width:500px) {
      grid-template-columns: repeat(2,1fr);
    }
  }
  .btn {
    background: var(--white);
    border-radius: 1rem;
    border: var(--accent-color) 2px solid;
    display: block;
    padding: 1.25rem 2.75rem;
    color: var(--accent-color);
    position: relative;
    text-align: center;
    width: 100%;
    display: inline-block;
    font-weight: 700;
  }
  .btn:before {
    content: "";
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .875rem;
    margin: auto;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    border-radius: 2px;
  }
  #section-guid .branch-list {
    margin-bottom: 0;
  }
  .remarks-list {
    padding: 1rem;
    background: var(--white);
    li {
      line-height: 1.6;
      position: relative;
      padding-left:1rem;
    }
    li:not(:last-child) {
      padding-bottom: .75rem;
    }
    li:before {
      content: "";
      display: block;
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #cadbf2;
      top: .75rem;
      left: .15rem;
    }
  }
  #section-system {
    padding-bottom: 0;
    .section-feature, 
    .system-loan .section-overview{
      position: relative;
      border: 1px solid var(--text-color);
      border-radius: 8px;
      background: var(--white);
    }
    h3,h3 * {
      font-family: 'Zen Maru Gothic';
      line-height: 1.4;
    }
    .section-feature {
      margin-top: calc(2rem + 2lh);
      padding: 0 1rem 1.3rem;
      text-align: center;
      @media screen and (min-width:414px) {
        margin-top: calc(2rem + 1lh);
      }
      .feature-title-wrapper {
        position: relative;
        text-align: center;
      }
      .feature-title {
        display: inline-block;
        background: #F7373A;
        border-radius:6px;
        border: 1px solid var(--text-color);
        font-size:1.6rem;
        font-weight: 700;
        margin:calc(-.5rem - 1lh) 0 0;
        padding: .5rem 1rem;
      }
      ul li {
        padding:.666rem 0;
        background-image: linear-gradient(to right,#CADBF2 50%, #fff 50%); 
        background-size: 12px 1px;
        background-repeat: repeat-x;
        background-position: left bottom;
      } 
      ul li:last-child {
        background: none;
        padding-bottom: 0;
      }
    }
    .section-lead {
      padding: 1.6rem 0;
    }
    .system-loan{
      margin-top: calc(2rem + 2lh);
      @media screen and (min-width:414px) {
        margin-top: calc(2rem + 1lh);
      }
      .loan-title-wrapper {
        position: relative;
        margin-bottom: 1rem;
      }
      .loan-title {
        background: var(--white);
        color: var(--text-color);
        border-radius:6px;
        border: 1px solid var(--text-color);
        margin:calc(-.5rem - 1lh) 0 0;
        padding: .5rem 5.8rem .5rem 1rem;
        line-height: 1.2;
        width: calc(100% - 1rem);
        p {
          margin: 0;
        }
      }
      .loan-name{
        font-size:1.6rem;
        font-weight: 700;
      }
      .badge {
        display: inline-block;
        width: 6.8rem;
        height: 6.8rem;
        position: absolute;
        right: -.5rem;
        top: 0;
        bottom: 0;
        margin: auto;
      }
      .section-overview {
        padding: 0 1rem 2rem;
      }
      .usecase-title {
        background:#CADBF2 ;
        font-family: "Zen Maru Gothic";
        display: inline-block;
        padding: .5rem 1.1rem .5rem 1.6rem;
        letter-spacing: .5rem;
        text-align: center;
      }
      .usecase-list {
        background:#F0F5FB ;
        padding: 1rem;
      }
      .usecase-list li{
        display: grid;
        grid-template-columns: 1rem 1fr;
        gap: .5rem;
        align-items: flex-start;
      }
      .usecase-list li:not(:last-child){
        margin-bottom: .5rem;
      }
      .usecase-list p{
        margin: 0;
      }
      .usecase-list img{
        vertical-align: middle;
      }
      .merit-list {
        margin-top: 2rem;
      }
      .merit-list li:not(:last-child) {
        margin-bottom: 1rem;
      }
      .section-desc {
        padding: 1.6rem 0;
      }
    }
    .loan-overview {
      h4 {
        font-size: 1.2rem;
        font-weight: 700;
        font-family: 'Zen maru Gothic';
        padding: 1rem 0;
        line-height: 1.4;
      }
    }
    .section-jfc .info-table .content-scrollview table {
      margin: .5rem;
    }
    .okinawa {
      margin-top: 1rem;
    }
    .section-jaccs .loan-name {
      letter-spacing: -.12rem;
    }
    .revolving {
      .list-item{
        padding: .875rem 0;
      }
      .list-item:not(:last-child){
        border-bottom: 2px solid #f0f5fb;
      }
      h6 {
        font-size: 1.125rem;
        margin-bottom: .5rem;
      }
    }
    @media screen and (min-width:1024px) {
      .section-feature {
        padding:0 0 1.3rem;
        .feature-title-wrapper {
          text-align: left;
          padding:0 0 1rem 1rem;
        }
        .feature-title {
          font-size:1.4rem ;
          padding: .25rem 1rem;
        }
      }
      .section-feature ul,
      .section-jaccs .merit-list{
        display: grid;
        grid-template-columns: repeat(3,1fr);
      }
      .section-feature ul li{
        text-align: center;
        background-image:linear-gradient(to bottom,#CADBF2 50%, #fff 50%);
        background-size: 1px 12px;
        background-position:right bottom;
        background-repeat:repeat-y;
      }
      .section-jaccs .merit-list{
        gap: 1rem;
      }
    }
    .system-loan .loan-title {
      width: auto;
      display: inline-block;
      padding-right: 1rem;
    }
    .system-loan .loan-title p {
      display: inline-block;
      vertical-align: middle;
    }
    .section-jfc .info-table .content-scrollview {
      padding: .5rem;
    }
    .section-jfc .info-table .content-scrollview table {
      width: 100%;
      margin: 0;
    }
  }
  #section-aid {
    .section-title {
      letter-spacing: -.025rem;
    }
  }
  #section-system,
  #section-aid {
    .revolving li,
    .remarks-list li{
      display: block;
    }
  }
}

/*= オープンキャンパス =*/
.open_campus #body-wrapper {
  color: #333333;

  .section {
    background: var(--gray-light);
  }

  .page-title .inner_box {
    position: relative;
    background: var(--gray-light);
  }

  .page-title-name {
    position: relative;
    margin-top: -3.666rem;
  }

  .page-desc {
    padding: 0 1.6rem;
  }

  .content-title {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    height: auto;

    img {
      width: 100%;
    }
  }

  @media screen and (min-width:1024px) {
    .page-title {
      background: var(--white);
      margin-bottom: 2rem;
    }

    .page-title-kv img {
      height: 100%;
      width: auto;
      object-fit: cover;
      object-position: right;
    }

    .page-title-kv {
      padding-top: 1rem;
    }

    .page-title .inner_box {
      background: var(--white);
      display: grid;
      grid-template-areas:
        "kv ttl"
        "kv desc";
      gap: 1rem;
      grid-template-columns: repeat(2,1fr);
      margin: 0 auto;
    }

    .page-title-kv {
      grid-area: kv;
    }

    .page-title-name {
      grid-area: ttl;
      margin: 0;
    }

    .page-desc {
      grid-area: desc;
      padding: 0;

      p {
        font-size: 1.1rem;
        max-width: 34rem;
        text-align: left;
        padding-left: 1rem;
        line-height: 2.6rem;
        padding-bottom: 1rem;
        margin-top: -1rem;
        b {
          font-size: 1.1rem;
        }
      }
    }

    .section2 {
      h3 {
        font-size: 2.06rem !important;
        margin: 3.3rem 0 1.1rem !important;
      }
      .content-desc {
        font-size: 1.31rem;
      }
    }
  }

  
  @media screen and (min-width:1024px) {
    .page-title-name picture {
      width: calc(100% + 3rem);
      display: inline-block;
      position: relative;
      left: -3rem;
      top: -1.5rem;
    }
  }
  
  @media screen and (min-width:1110px) {
    .page-title-name picture {
      width: calc(100% + 6rem);
    }
  }

  .section1 {

    .inner_box {
      padding-bottom: 0;
    }

    /*日程*/
    .timatable-item {
      position: relative;
      padding-left: max(3rem, 13.4cqi);
      margin-bottom: 3.5rem;
    }

    .time-icon {
      position: absolute;
      width: max(2.6rem, 12cqi);
      margin: 0;
      padding: 0;
      left: 0;
      top: 0.2rem;
      height: 100%;
      text-align: center;

      img {
        vertical-align: top;
        padding-bottom: max(1rem, 4.5cqi);
        background: var(--gray-light);
        position: relative;
        z-index: 2;
      }
    }

    .time-icon:before {
      content: "";
      width: 2px;
      height: calc(100% - 10px);
      background: #808080;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      top: 0;
    }

    .time-icon:after {
      content: "";
      width: 0;
      height: 0;
      border: 6px solid transparent;
      border-top: 10px solid #808080;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .timatable-item:last-child .time-icon:before,
    .timatable-item:last-child .time-icon:after {
      display: none;
    }

    .time-title {
      margin-bottom: .6rem;

      img {
        height: max(4rem, 18cqi);
      }
    }

    .time-img img {
      width: 100%;
    }

    .time-desc {
      letter-spacing: -.01rem;
    }

    .time-desc .ls-tight {
      letter-spacing: -.075rem;
    }

    @media screen and (min-width:768px) {
      .timatable-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .timatable-item {
        padding: 0;
      }

      .time-title img {
        width: auto;
        height: 72px;
      }

      .time-icon {
        display: inline-block;
        position: relative;
        height: auto;
        width: 100%;
        text-align: left;

        img {
          background: none;
          padding: 0;
          width: 56px;
        }
      }

      .time-icon:before {
        width: calc(100% - 75px);
        height: 2px;
        top: 7px;
        left: auto;
        right: 0;
      }

      .time-icon:after {
        border-top: transparent solid 6px;
        border-left: #808080 solid 10px;
        top: 2px;
        bottom: auto;
        left: calc(100% - 8px);
        transform: translate(0);
      }

      .timatable-item:last-child .time-icon:before,
      .timatable-item:last-child .time-icon:after {
        display: inline-block;
      }
    }

    @media screen and (min-width:1280px) {
      .timatable-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }

  .section2 {
    .inner_box {
      padding-top: 1rem;
    }

    /*学生寮*/
    h3 {
      font-size: 2.05rem;
      font-weight: 700;
      margin: 1.3rem 0 1.1rem;
      color: #333333;
    }

    .content-desc {
      padding-top: .75rem;
    }

    .content-img img {
      width: 100%;
    }

    .banner {
      padding: 0 1rem;
      box-sizing: border-box;
      display: inline-block;
      width: 100%;
    }

    .voice-list {
      padding-top: 1rem;

      .voice-item {
        padding-bottom: 1.8rem;
        cursor: pointer;
      }

      .item-header {
        position: relative;
        border-radius: 9999px;
        display: grid;
        grid-template-columns: auto 1fr;
        background: var(--white);
        padding-right: 2.5rem;
        align-items: center;

        @media screen and (min-width:370px) {
          min-height: 4.8rem;
        }
      }

      .voice-icon {
        height: 4.8rem;
        aspect-ratio: 1 / 1;
        margin: 0;
      }

      .voice-name {
        text-align: right;
      }

      .item-title {
        font-size: 1.175rem;
        font-weight: 700;
        padding: .666rem;
        position: relative;
        letter-spacing: -.015rem;
        margin: 0;
        line-height: 1.4;
        text-align: left;
        color: #f26697;
      }

      .btn-toggle {
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 9999px;
        background: #b3b3b3;
        margin: auto;
        top: 0;
        bottom: 0;
        right: 0.55rem;
      }

      .btn-toggle:before,
      .btn-toggle:after {
        content: "";
        width: .8rem;
        height: 2px;
        background: var(--white);
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        transition: rotate .25s ease;
      }

      .btn-toggle:after {
        rotate: 90deg;
      }

      .active .btn-toggle:after {
        rotate: 0deg;
      }

      .item-body {
        font-weight: 700;
        padding: 0 0 0 1.333rem;
        opacity: 0;
        min-height: 0;
        height: 0;
        transition: padding .25s ease, opacity .25s ease, min-height .25s ease;
        pointer-events: none;
      }

      .active .item-body {
        padding: 1rem 0 1.333rem 1.333rem;
        opacity: 1;
        min-height: 1rem;
        height: auto;
      }
    }

    @media screen and (min-width:1024px) {
      .banner_wrap {
        max-width: var(--inner-body);
        margin: 0 auto;
      }

      .banner {
        padding: 0;
      }

      .content-body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }

      .content-desc {
        padding-left: 2.4rem;
        padding-top: 0;

        p{
          font-size: 1.31rem;
        }
      }

      .voice-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5.625rem;
      }

      .voice-list .item-body p{
      font-size: 1.125rem;
      }
      .voice-list .item-body {
      opacity: 1;
      padding: 1rem 0;
      }
      .voice-list .active  .item-body {
      padding: 1rem 0;
      }

      .btn-toggle{
        display: none;
      }
      
    }
  }

  .section3 {

    /*種類*/
    .content-body {
      margin-bottom: 4.15rem;
    }

    h2 {
      text-align: center;
      margin-bottom: 2.4rem;

      img {
        width: 100%;
      }
    }

    h3 {
      text-align: center;
      margin-bottom: 1.8rem;
    }

    h4 {
      font-size: 1.3rem;
      font-weight: 700;
    }

    p,
    span {
      margin: 0;
      font-weight: 700;
    }

    .note {
      font-size: .8rem;
    }

    .btn-wrapper {
      text-align: center;
      padding: 0 1.3rem;
    }

    .oc-schedule {
      background: var(--white);
      padding-bottom: 1.3rem;
      border: 3px solid #ff931e;
      border-bottom: 3px solid #ff931e;
      margin-bottom: 1.75rem;

      h4 {
        background: #ff931e;
        color: var(--white);
        padding: 1.14rem;
      }

      .schedule-list {
        padding: 1.5rem 1.3rem;
      }
    }

    .content1 {

      p,
      span {
        text-align: center;
      }

      .oc-support p {
        text-align: left;
        font-weight: 400;
        padding-top: .5rem;
      }

      .schedule-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .73rem;
      }

      .schedule-item {
        border: 1px solid #ff931e;
      }

      .schedule-header {
        padding: 1rem 0;
        border-bottom: 1px solid #ff931e;
        font-size: 1.125rem;
      }

      .year {
        font-size: .8rem;
        line-height: 1;
      }

      .month {
        font-size: 3.25rem;
        line-height: 1;
      }

      .label {
        font-size: 1.5rem;
      }

      .day-list {
        padding-top: 1rem;
        text-align: center;
      }

      .day-item {
        font-weight: 700;
        padding-bottom: 1rem;
        font-size: 1.375rem;
      }
    }

    .oc-rates {
      padding-top: .8rem;

      .rates-table {
        width: 100%;
        border: 1px solid #b3b3b3;
        border-bottom: none;
      }

      th {
        text-align: left;
        padding: 1rem 1.333rem;
        border-bottom: 1px solid #b3b3b3;
      }

      td {
        width: 25%;
        padding: 1rem 1.333rem 1rem 0;
        text-align: right;
        border-bottom: 1px solid #b3b3b3;
      }

      tr:nth-child(odd) th,
      tr:nth-child(odd) td {
        background: #e9f4f5;
      }

      tr:nth-child(even) th,
      tr:nth-child(even) td {
        background: var(--white);
      }
    }

    .content2,
    .content3 {
      .schedule-item {
        border: 1px solid #b3b3b3;
        margin-bottom: .6rem;
      }

      .schedule-item:last-child {
        margin-bottom: 0;
      }

      .schedule-title {
        padding: 1rem 1.333rem;
        background: #e9f4f5;
        font-weight: 700;
        border-bottom: 1px solid #b3b3b3;
        font-size: 1.31rem;
      }

      .schedule-desc {
        padding: .8rem 1.25rem;
        font-weight: 700;

        p {
          font-size: 1.31rem;
        }
      }
    }
    @media screen and (min-width:768px) {
      .content2,.content3 {
        .schedule-list {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 1rem;
        }
        .schedule-list .schedule-item {
          margin-bottom: 0;
        }
      }
    }

    @media screen and (min-width:1024px) {
      h2 {
        margin-bottom: 4rem;
      }

      h3 {
        margin-bottom: 3.125rem;
      }

      .schedule-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
      }

      .content1 {
        h3 img {
          max-width: 550px;
        }

        .schedule-wrapper {
          grid-template-areas: "calender rate"
            "support rate";
        }

        .oc-schedule {
          grid-area: calender;
        }

        .oc-support {
          grid-area: support;
        }

        .oc-support p,
        .oc-support span {
          text-align: left;
          font-weight: 400;
        }

        .oc-rates {
          grid-area: rate;
        }
      }
      .content2,.content3 {
        /*.oc-schedule {
          margin: 0 1.75rem;
        }*/
        .btn-wrapper {
          max-width: 50%;
          margin: 0 auto;
        }
      }
    }
  }

  #section-oc-form {
    /*フォーム*/
    background: var(--white);
    padding-top: 3.8rem;

    h2 {
      text-align: center;
      color: var(--main-color);
      font-size: 2rem;
      margin-bottom: 2.5rem;
      font-weight: 900;
    }

    .section-desc {
      font-size: 1.4rem;
      text-align: center;
      padding-bottom: 2.4rem;
    }

    .tab-btn-list {
      grid-template-columns: repeat(3, 1fr);
      max-width: 880px;
      gap: 2rem;

      @media screen and (min-width:1024px) {
        gap: 5rem;
      }
    }

    .tab-btn-list a {
      padding: 2rem 0 3.2rem;
    }

    .tab-btn-list a:before,
    .tab-btn-list a:after {
      height: 2px;
      width: 0.85rem;
      bottom: 1rem;
    }

    .radio-dormitory-accommo,
    .radio-dormitory-visit {
      .wpcf7-list-item {
        display: block;
      }
    }
  }

  .section-schedule {
    .link-wrapper {
      position: relative;
      padding-right: 1.5rem;
      display: inline-block;
    }

    .link-wrapper a {
      color: #284ca1;
      text-decoration: underline;
    }

    .link-wrapper:before {
      content: "";
      position: absolute;
      width: 1.25rem;
      height: 1.25rem;
      background: #ff0000;
      border-radius: 1.25rem;
      margin: auto;
      top: 0;
      bottom: 0;
      right: 0;
    }

    .link-wrapper:after {
      content: "";
      position: absolute;
      width: .5rem;
      height: .5rem;
      border-top: 2px solid var(--white);
      border-right: 2px solid var(--white);
      rotate: 45deg;
      margin: auto;
      top: 0;
      bottom: 0;
      right: 0;
      translate: -60%;
    }
  }

  .section-days {
    .form-section-body .form-parts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas: "label label"
        "day time";
      margin-bottom: 1rem;
    }

    .form-name {
      grid-area: label;
    }

    .form-name label {
      vertical-align: baseline;
    }

    .form-input {
      grid-area: day;
    }

    .form-select {
      grid-area: time;
    }

    .form-select select {
      height: 100%;
    }
  }

  .form-other-input {
    display: flex;
    align-items: center;
    gap: .5rem;

    label,
    span {
      display: inline-block;
      width: auto;
    }
  }
}


/*= お問い合わせ =*/
.contact #body-wrapper {
  .page-title {
    background: var(--white);

    .inner_box {
      display: block;
      padding: 0 1.6rem;
    }

    h1 {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .page-desc {
      font-size: 1.4rem;
      text-align: center;
      padding-bottom: 2.4rem;
    }

    .tab-btn-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

/*= フォーム（Contactform7） =*/
#body-wrapper .wpcf7-form {
  padding-bottom: 1rem;

  .form-section-title {
    margin-bottom: .3rem;
  }

  .form-section-title .title-txt,
  .form-name label {
    vertical-align: middle;
    display: inline-block;
    font-size: 1.06rem;
    padding-bottom: .4rem;

    @media screen and (min-width:1024px) {
      padding: 0;
    }
  }

  .form-name,
  .form-section-title {
    .label_required {
      background: #ff0000;
      color: var(--white);
      display: inline-block;
      margin-left: .5rem;
      padding: .4rem;
      vertical-align: text-bottom;
      font-size: .9rem;
      border-radius: .2rem;

      @media screen and (min-width:1024px) {
        font-size: .75rem;
        padding: .3rem .4rem;
        vertical-align: middle;
      }
    }
  }

  .form-inner-section,
  .form-parts {
    margin-bottom: 2.4rem;
  }

  .form-parts {
    label {
      border-bottom: none;
      display: inline-block;
    }

    .form-name {
      padding-bottom: .5rem;

      p {
        line-height: 1;
        padding: 0;
        margin: 0;
      }

      label {
        @media screen and (min-width:1024px) {
          display: inline;
          padding-bottom: 0;
          line-height: 1.6;
        }
      }
    }

    input,
    textarea {
      padding: 1.3rem .8rem;
      width: 100%;
      vertical-align: bottom;
      box-sizing: inherit;
      font-size: 1.06rem;
      background: var(--white);
      border-radius: .625rem;

      @media screen and (min-width:1024px) {
        font-size: 1.13333rem;
      }
    }

    input[type=date]::-webkit-calendar-picker-indicator {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }
    input[type="date"]::-webkit-inner-spin-button{
      -webkit-appearance: none;
    }
    input[type="date"]::-webkit-clear-button{
      -webkit-appearance: none;
    }
    input[type="date"]{
      position: relative;
    }

    .wpcf7-checkbox,
    .wpcf7-radio {
      display: inline-block;
      vertical-align: text-bottom;
    }

    .wpcf7-checkbox .wpcf7-list-item {
      margin: 0 16px 8px 0;
      line-height: 1.4;
    }

    .wpcf7-form-control-wrap label {
      background: none;
      border: none;
    }

    input[type="checkbox"]+.wpcf7-list-item-label {
      padding-left: 36px;
      position: relative;
    }

    input[type="checkbox"]+.wpcf7-list-item-label:before,
    .wpcf7-checkbox .wpcf7-list-item-label::before,
    .wpcf7-radio .wpcf7-list-item-label::before {
      width: 24px;
      height: 24px;
      background: var(--white);
      position: absolute;
      left: 0;
      top: 0;
    }

    input[type="checkbox"]:checked+.wpcf7-list-item-label:after,
    .wpcf7-checkbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
      width: 8px;
      height: 12px;
      border-right: var(--main-color) 2px solid;
      border-bottom: var(--main-color) 2px solid;
      position: absolute;
      transform: rotate(45deg);
      left: 8px;
      top: 4px;
    }

    .wpcf7-radio label {
      padding-left: 22px;
      position: relative;
      top: 4px;
      vertical-align: baseline;
    }

    .wpcf7-radio .wpcf7-list-item-label::before {
      width: 16px;
      height: 16px;
      border-radius: 16px;
      top: 2px;
      background: var(--white);
      border-color: var(--white);
    }

    .wpcf7-radio input[type="radio"]:checked+.wpcf7-list-item-label::after {
      width: 12px;
      height: 12px;
      border-radius: 14px;
      background: var(--main-color);
      position: absolute;
      left: 2px;
      top: 4px;
    }

    .form-select {
      position: relative;
      max-width: 500px;

      p {
        height: 100%;
      }

      p:before {
        content: "";
        width: 1rem;
        height: 1rem;
        position: absolute;
        margin: auto;
        border: 2px solid var(--main-color);
        border-left: none;
        border-top: none;
        transform: rotate(45deg) translateY(-25%);
        z-index: 2;
        right: 1rem;
        top: 0;
        bottom: 0;
      }

      select {
        padding: 1rem 2rem 1rem 1.25rem;
        width: 100%;
        height: 100%;
        background: var(--white);
        border-radius: 10px;
        font-size: 1.13333rem;
      }
    }

    .form-radio {
      .wpcf7-list-item {
        margin: 0 1rem 1rem 0;
      }

      label {
        color: var(--black);
      }
    }

    .form-date .wpcf7-form-control-wrap {
      display: inline-block;
      width: 100%;

      input::-webkit-calendar-picker-indicator {
        cursor: pointer;
      }
    }

    &.acceptance_btn {
      display: block;
      text-align: center;
    }
  }

  .btn-wrapper {
    margin-top: 2.15rem;

    p {
      text-align: center;
    }

    .submit-wrapper {
      display: inline-block;
      position: relative;
    }

    input[type="submit"] {
      width: 100%;
      min-width: 16rem;
      transition: color .25s ease, opacity .25s ease, background .25s ease;
      font-size: 1.2rem;
      color: #ff0000;
      border: #ff0000 2px solid;
      padding: 1rem;
      border-radius: 1rem;
      background: var(--white);

      &::before,
      &:after {
        display: none;
      }

      &:hover {
        opacity: .5;
      }
    }

    input[type="submit"]+.wpcf7-spinner {
      display: none;
    }
  }

  .spinner-wrapper,
  .spinner-wrapper * {
    margin-top: 1rem;
    text-align: center;
  }

  .wpcf7-list-item-label {
    vertical-align: text-bottom;
  }

  .wpcf7-not-valid-tip {
    padding: 4px 0;
  }

  /* レイアウト */
  .section-address .form-parts {
    grid-template-columns: 4.5rem 1fr;
  }

  .form-inner-section .form-parts {
    display: grid;
    gap: .5rem;
    margin-bottom: .6rem;
  }

  .form-inner-section .form-input,
  .form-inner-section .form-name {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .form-inner-section .form-name label {
    padding: 0;
  }

  .form-inner-section .form-input p {
    width: 100%;
    padding: 0;
  }

  .section-school .form-parts {
    grid-template-columns: 3.5rem 1fr;
  }

  .grade {
    .form-input p {
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .wpcf7-form-control-wrap {
      width: 8.5rem;
    }
  }

  @media screen and (min-width: 768px) {
    .form-parts {
      label {
        text-align: right;
        padding-right: 8px;
        height: 100%;
      }
    }

    .select-wrapper .form-parts {
      display: block;
    }
  }

  @media screen and (min-width: 1024px) {

    .form-parts,
    .form-inner-section {
      display: grid;
      grid-template-columns: 5fr 14fr;
    }
  }
}

/*= コラム =*/
.column-archive #body-wrapper{
  .inner_box {
    max-width:1100px;
  }
  h1 {
    font-size: 2.5rem;
    padding:4rem 0;
    text-align: center;
    @media screen and (min-width:1024px) {
      font-size: 3.125rem;
      padding: 3.125rem 0;
    }
  }
  .page-body {
    .inner_box {
      @media screen and (min-width:1024px) {
        padding: 0 1.6rem;
      }
    }
    .posts-list {
      @media screen and (min-width:1024px) {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 2.5rem;
      }
      li{
        border: 1px solid var(--main-color);
        border-radius: .666rem;
      }
      @media screen and (max-width:1023px) {
        li:not(:last-child){
          margin-bottom:2rem;
        }
      }
      li a{
        display: grid;
        grid-template-columns: 1fr 3fr;
        padding: 1.25rem;
        gap: 1rem;
      }
      .eyecatch {
      }
      .eyecatch img{
        object-fit: cover;
        border-radius:.666rem;
        height: 100%;
        width: 100%;
      }
      .noimage {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius:.666rem;
        height: 100%;
        width: 100%;
      }
      .eyecatch .noimage img{
        object-fit: contain;
        height: auto;
        width: auto;
      }
      .entry-title {
        line-height: 1.8;
      }
    }
    .nav-wrapper {
      margin:2.86rem auto 5rem;
    }
    .nav-links {
      display: flex;
      gap:1.666rem;
      justify-content: center;
    }
    .pnbtn {
      display: inline-block;
      vertical-align: middle;
    }
    .pnbtn:first-child {
      margin-right:.8rem;
    }
    .pnbtn:last-child {
      margin-left:.8rem;
    }
    .pnbtn a,.pnbtn span{
      display: inline-block;
      line-height: 2rem;
    }
    .prev,.next{
      text-indent: -9999px;
      position: relative;
      width: 2rem;
      height: 2rem;
      border-radius: 2rem;
      background: #ff0000;
    }
    .disabled .prev,
    .disabled .next{
      background: #bdbdbd;
    }
    .prev:before,
    .next:before {
      content: "";
      width: .875rem;
      height: .875rem;
      border-radius: 2px;
      border: 2px solid transparent;
      border-right: 2px solid var(--white);
      border-top: 2px solid var(--white);
      transform: rotate(45deg);
      position: absolute;
      margin: auto;
      top: 0;
      bottom: 0;
      left: calc(50% - .75rem);
      line-height: 2rem;
    }
    .prev:before {
      content: "";
      border: 2px solid transparent;
      border-left: 2px solid var(--white);
      border-bottom: 2px solid var(--white);
      left: 0;
      right: calc(50% - 1.5rem);
    }
    .pnbtn-item a,
    .pnbtn-item span{
      font-size:1.666rem;
      color: #ff0000;
    }
    .pnbtn-current span{
      color: #bdbdbd;
    }
  }

  .page-footer {
    .inner_box {
      padding: 0 1.6rem;
      @media screen and (min-width:1110px){
        padding: 0;
      }
    }
    .course-link {
      margin-top: 6.625rem;
      @media screen and (min-width:1024px){
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1.625rem;
      }
      li{
        margin-bottom: 1.16rem;
      }
      a {
        display: block;
        text-align: center;
        padding: 1.875rem 1.5rem 2rem;
        font-size: 1.5rem;
        background: var(--main-color);
        color: var(--white);
        border-radius: .666rem;
        font-weight: 700;
        position: relative;
        @media screen and (min-width:1110px){
          font-size: 1.75rem;
        }
        @media screen and (max-width:340px){
          font-size: 1.25rem;
        }
      }
      a:before {
        content: "";
        width: 1rem;
        height: 1rem;
        background-image:url(../img/common/icon_linkarrow_sp.webp) ;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        top: 0;
        bottom: 0;
        right: .75rem;
        margin: auto;
        @media screen and (min-width:1024px){
          width: 1rem;
          height: 1.125rem;
          background-image:url(../img/common/icon_linkarrow_pc.webp) ;
        }
      }
      .course_hawaii a {
        background: #52a1a7;
      }
      .course_jc a {
        background: #ed7a99;
      }
      .course_sb a {
        background: #0075b1;
      }
    }
  }
}


/*= アクセスページ =*/
.access #body-wrapper {
  .page-title {
    background-image: none;
  }

  .section-title {
    font-family: 'Zen Maru Gothic';
    display: block;
    color: var(--title-color);
    font-size: 2.667rem;
    font-weight: 700;
    text-align: center;
    padding: 2.93rem 0 0 0;
  }

  .page-main__name {
    color: var(--title-color);
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    border-left: 7px solid var(--accent-color);
    padding: 0 0 .6rem .6rem;
    font-weight: 500;
    line-height: 1;
  }

  .page-main__item {
    padding-bottom: 7.8rem;
    font-family: 'Zen Maru Gothic';
  }

  .page-main__address {
    font-size: 1.33rem;
    font-weight: 500;
    line-height: 1.5;
    padding-top: .8rem;
    padding-bottom: 1.2rem;
  }

  .page-main__title {
    color: var(--title-color);
    background-color: #E3ECF8;
    font-size: 1.6rem;
    font-weight: 500;
    padding: .6rem;
    line-height: 1;
  }

  .page-main__item ul {
    padding: .8rem 0 1rem 0;
  }

  .page-main__item li {
    padding: .3rem 0;
    position: relative;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.93;
  }

  .page-main__item li::before {
    content: "⚫︎";
    color: #51A5C7;
  }

  .page-main__map iframe {
    display: block;
    width: 100%;
    height: 25.2rem;
  }

  .page-main {
    padding-top: 3.86rem;
  }

  .map-link {
    display: block;
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 88%;
    text-align: right;
    padding-top: 1rem;
  }

  @media screen and (min-width:1024px) {
    .section-title {
      font-size: 3.5rem;
      font-weight: 700;
      padding-top: 5.93rem;
      padding-bottom: 12.5rem;
    }

    .page-hero {
      background: url(../img/access/image_hero_pc.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
    }

    .page-hero img {
      display: none;
    }

    .page-main .inner_box{
      padding: 0 2rem;
    }

    .page-main__wrap {
      display: flex;
      justify-content: space-between;
      gap: 4rem;
      padding-top: 1rem;
    }

    .page-main__name {
      font-size: 2.56rem;
      border-bottom: 2px solid var(--accent-color);
      border-left: 10px solid var(--accent-color);
      margin-bottom: 0;
    }

    .page-main {
      padding-top: 5.33rem;
    }

    .page-main__address {
      font-size: 1.75rem;
      padding-top: 0;
      padding-bottom: 2rem;
    }

    .page-main__title {
      font-size: 2.125rem;
      margin-bottom: 0;
    }

    .page-main__item ul {
      padding: .5rem 0;
    }

    .page-main__item li {
      font-size: 1.31rem;
    }

    .page-main__text {
      max-width: 31.9rem;
    }

    /* .page-main__map {
      width: 33.1rem;
    } */

    .page-main__map iframe {
      display: block;
      width: 27rem;
      height: 39rem;
    }

    .page-main__item {
      padding-bottom: 4.4rem;
    }

    .page-main__item:last-child {
      padding-bottom: 13.9rem;
    }

    .map-link {
      font-size: 95%;
    }
  }

  @media screen and (min-width:1110px) {
    .page-main .inner_box{
      padding: 0;
    }
  }
  @media screen and (min-width:1600px) {
    .page-hero {
      background: url(../img/access/image_hero2_pc.webp);
      background-position: bottom;
      background-size: cover;
    }
  }
}


/*= IAAの5つの魅力 =*/
.attractive #body-wrapper {
  img {
    width: 100%;
  }

  .page-hero .hero-image {
    display: block;
    padding-bottom: 1.5rem;
  }

  .page-main {
    font-family: 'Zen Maru Gothic';
  }

  .page-main__item {
    display: block;
    padding: 1.86rem 0;
    color: #333333;
    line-height: 1.83;
  }

  .page-main__item .page-main__wrap:first-of-type .main-image {
    display: block;
    padding-bottom: 1.13rem;
  }

  .page-main__item .page-main__wrap:last-of-type .main-image {
    display: block;
    padding-top: 1.33rem;
  }
  
  @media screen and (min-width:1024px) {
    .page-hero {
      display: block;
      width: 100%;
      max-width: var(--inner-body);
      margin: 0 auto;
    }

    .page-main .inner_box {
      padding: 0 2.8rem;
    }

    .page-main__item {
      display: flex;
      gap: 2rem;
    }

    .page-main .main-image {
      display: block;
      max-width: 34.375rem;
    }

    .page-main__item .page-main__wrap:last-of-type .main-image {
      padding-top: 0;
    }

    .page-main__text {
      max-width: 38.75rem;
      font-size: 1.25rem;
      padding-top: 0;
      letter-spacing: 0px;
    }

    .page-main__item {
      gap: 2.5rem;
    }

    .page-main__item:not(:last-of-type) {
      padding: 2.375rem 0;
    }

    .page-main__item:last-of-type {
      padding: 2.375rem 0 0 0;
    }

    .page-main .page-main__item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-main {
      padding-bottom: 5.31rem;
    }
  }
  @media screen and (min-width:1110px) {
    .page-main .inner_box {
      padding: 0;
    }
  }
}


/*= 先生方へ =*/
.for_teacher #body-wrapper {
  .page-desc {
    background: #E3ECF8;
    padding: 3.875rem 0 4.16rem 0;
  }

  .page-desc__text {
    font-family: 'Zen Maru Gothic';
    font-size: 1.06rem;
    line-height: 2;
    padding-top: 2.25rem;
    text-align: left;
  }

  .page-desc__text span {
    font-size: 0.87rem;
  }

  .desc-image {
    display: block;
    max-width: 17.8rem;
    margin: 0 auto;
  }

  .page-main {
    background: #F9EBEF;
    padding: 2.375rem 0;
    font-family: 'Zen Maru Gothic';
  }

  .page-main__wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 1.81rem;
  }

  .page-main-txt {
    font-size: 1.13rem;
  }

  .page-main-txt span {
    font-size: 1.13rem;
    color: #FF0000;
  }

  .page-main__box .page-main-image:nth-of-type(2) {
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .page-main__box .page-main-image:nth-of-type(2) img {
    width: 100%;
  }

  .page-btm {
    font-family: 'Zen Maru Gothic';
    background: #E3ECF8;
    padding: 2.68rem 0;
  }

  .page-btm-txt {
    font-size: 1.13rem;
    line-height: 2;
  }

  .page-btm span {
    font-size: 1rem;
  }

  .page-main__title .page-main-image img {
    display: block;
    max-width: 58.4rem;
    width: 100%;
    margin: 0 auto;
  }
  @media screen and (min-width:1024px) {
    .page-desc {
      padding: 4.56rem 0;
    }

    .desc-image {
      display: block;
      max-width: 41.5rem;
      margin: 0 auto;
    }

    .page-desc__text {
      font-size: 1.48rem;
      padding-top: 3.43rem;
    }

    .page-desc__text span {
      font-size: 1.225rem;
    }

    .page-main {
      padding: 4.125rem 0;
    }

    .page-main__title .page-main-image img {
      display: block;
      margin: 0 auto;

    }

    .page-main__wrap {
      flex-direction: inherit;
      gap: 4.5rem;
    }

    .page-main__box {
      flex: 1;
    }

    .page-btm-txt {
      font-size: 1.4875rem;
    }

    .page-btm {
      padding: 5.125rem 0;
    }

    .page-btm span {
      font-size: 1.25rem;
    }

    .page-main-txt {
      font-size: 1.48rem;
    }

    .page-main-txt span {
      font-size: 1.48rem;
    }

    .page-main__title .page-main-image img {
      max-width: 31.9rem;
    }
  }
}

/*= 就職サポート体制 =*/
.support #body-wrapper {
  .page-hero .inner_box {
    padding: 0;
  }

  .page-hero .section-text {
    font-family: 'Zen Maru Gothic';
    color: #284CA1;
    font-size: 2.66rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem 0 0 0;
  }

  .page-hero .desc-text img {
    display: block;
    max-width: 23rem;
    width: 100%;
    margin: 0 auto;
  }

  .page-main__item .page-main__disc {
    display: flex;
    gap: .3rem;
    align-items: end;
    margin-bottom: 1.33rem;
  }


  .page-main__item .page-main__disc span {
    font-size: 1.53rem;
    font-weight: 700;
  }

  .page-main__item .page-main__disc p:first-of-type {
    font-size: 4.5rem;
    font-family: "Mochiy Pop One", sans-serif;
    line-height: 1;
  }

  .page-main__item .page-main__disc p:nth-child(2) {
    font-size: 2rem;
    font-family: 'Zen Maru Gothic';
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    letter-spacing: 1px;
    background-image: url(../img/support/bg_pc.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    padding-bottom: 1rem;
    width: 100%;
    letter-spacing: -1px;
  }

  .page-main__item:nth-child(odd) .page-main__disc p:first-of-type {
    color: #E46693;
  }

  .page-main__item:nth-child(even) .page-main__disc p:first-of-type {
    color: #53B0C4;
  }

  .wrap p {
    color: #333333;
    font-size: 1rem;
    font-family: 'Zen Maru Gothic';
    line-height: 1.83;
    padding-top: .8rem;
  }

  .page-main__item {
    margin-bottom: 2.8rem;
  }

  .item03 .wrap p,
  .item04 .wrap p,
  .item05 .wrap p,
  .item06 .wrap p {
    padding-top: 0;
  }

  .item01 {
    margin-top: 2.4rem;
  }

  .item03 {
    padding-bottom: .666rem;
    cursor: pointer;
    margin: 1.4rem 0;
  }

  .item-header {
    position: relative;
    border-radius: 9999px;
    background: var(--white);
    align-items: center;
  }

  .item-num {
    background: var(--main-color);
    color: var(--white);
    border-radius: 9999px 0 0 9999px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: .25rem;
    margin-bottom: 0;
    transition: background-color .5s ease;

    span {
      font-weight: 700;
    }
  }

  .item-title {
    font-size: 1.175rem;
    font-weight: 700;
    position: relative;
    margin: 0;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
  }

  .btn-toggle {
    color: #333333;
    display: block;
    border-radius: .8rem;
    background: #FBEAF0;
    margin: auto;
    width: 100%;
    font-size: 1.2rem;
    padding: .66rem;
  }

  .toggle-item {
    margin-bottom: .66rem;
  }

  .btn-toggle {
    position: relative;
  }

  .btn-toggle:before,
  .btn-toggle:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 1rem;
    transition: transform .25s ease;
  }

  .btn-toggle:after {
    transform: translateY(-25%) rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
    transition: transform .3s;
  }


  .active .btn-toggle:after {
    transform: rotate(225deg);
  }

  .item-body {
    font-weight: 700;
    padding: 0 0 0 3.999rem;
    opacity: 0;
    min-height: 0;
    height: 0;
    pointer-events: none;
  }

  .active .item-body {
    padding: 0.6rem 0;
    opacity: 1;
    min-height: 1rem;
    height: auto;
    color: #333333;
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .interview {
    background: #DFF0F5;
    border-radius: 1.33rem;
    padding: 1.2rem;
    margin-top: 1.46rem;
    color: #333333;
    font-family: 'Zen Maru Gothic';
  }

  .interview__title {
    color: #53B0C4;
    font-size: 2.26rem;
    font-family: 'Zen Maru Gothic';
    font-weight: 700;
    text-align: center;
    line-height: 1;
    padding-bottom: 1.3rem;
  }

  .interview__wrap:first-of-type {
    display: flex;
    gap: 1rem;
    align-items: end;
  }

  .interview__wrap img {
    display: block;
    max-width: 11.6rem;
  }

  .interview__wrap:first-of-type p:first-of-type {
    font-size: 0.86rem;
    line-height: 1.61;
  }

  .interview__wrap:first-of-type p:nth-of-type(2) {
    font-size: 1.13rem;
    font-weight: 500;
    line-height: 1.61;
  }

  .interview__wrap:first-of-type p:nth-of-type(2) span {
    font-size: 0.86rem;
  }

  .interview__wrap:nth-of-type(2) p:first-of-type {
    font-size: 1.33rem;
    padding-top: 1.26rem;
    font-weight: 500;
  }

  .interview__wrap:nth-of-type(2) p:nth-of-type(2) {
    font-size: .93rem;
    line-height: 1.71;
  }

  .list-box {
    padding-top: 2rem;
  }
  @media screen and (min-width:1024px) {
    .page-hero .section-desc {
      display: flex;
    }

    .page-hero .section-text {
      padding: 0;
      width: 50vw;
      background-image: url(../img/support/txt_hero01_pc.webp);
      background-repeat: no-repeat;
      background-size: 100%;
      font-size: 3.75rem;
      line-height: 1.28;
      padding: 9rem 0;
    }

    .page-hero .desc-image {
      width: 50vw;
      height: 100%;
      object-fit: cover;
    }

    .page-hero .desc-text img {
      max-width: 50.9rem;
      padding-top: 5rem;
    }

    .page-main__box {
      padding: 0 2rem;
    }

    .page-main__item .page-main__disc {
      gap: .8rem;
      margin-bottom: 1.5rem;
    }

    .page-main__item .page-main__disc p:nth-child(2) {
      font-size: 2.625rem;
      line-height: 1.2;
      letter-spacing: 1px;
      background-image: url(../img/support/bg_sp.svg);
      padding-bottom: 1.6rem;
    }

    .page-main__item .page-main__disc p:first-of-type {
      font-size: 5.9rem;
      line-height: 1;
    }

    .item01 {
      margin-top: 4.68rem;
    }

    .page-main__item {
      margin-bottom: 4rem;
      cursor: auto;
    }

    .wrap p {
      font-size: 1.31rem;
      padding-top: 0;
      max-width: 31.3rem;
    }

    .page-main__box {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

    .interview {
      border-radius: 1.25rem;
      padding: 2.75rem;
      margin-top: 1.875rem;
    }

    .interview__title {
      font-size: 2.9375rem;
      padding-bottom: 1.87rem;
    }

    .interview__block {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
      justify-content: space-between;
    }

    .interview__wrap:first-of-type {
      flex-direction: column;
      align-items: end;
      align-items: baseline;
    }

    .interview__wrap:nth-of-type(2) p:first-of-type {
      font-size: 1.75rem;
      padding-top: 0;
      font-weight: 500;
      line-height: 1;
      padding-bottom: 1rem;
    }

    .interview__wrap:nth-of-type(2) p:nth-of-type(2) {
      font-size: 1.0625rem;
      line-height: 1.71;
      max-width: 39.6rem;
    }

    .interview__wrap img {
      max-width: 18.3rem;
    }

    .interview__wrap:first-of-type p:first-of-type {
      font-size: 1rem;
      line-height: 1.61;
    }

    .interview__wrap:first-of-type p:nth-of-type(2) {
      font-size: 1.43rem;
      font-weight: 500;
      line-height: 1;
    }

    .interview__wrap:first-of-type p:nth-of-type(2) span {
      font-size: 1rem;
    }

    .item03 .page-main__box,
    .item04 .page-main__box,
    .item05 .page-main__box,
    .item06 .page-main__box,
    .item07 .page-main__box,
    .item08 .page-main__box,
    .item09 .page-main__box {
      display: block;

      .wrap p {
        max-width: 92%;
        margin-left: auto;
        margin-right: 0;
      }
    }

    .list-box {
      display: grid;
      gap: 3rem;
      grid-template-columns: 1fr 1fr;
      padding: 1.56rem 2rem 0;
    }

    .btn-toggle {
      border-radius: .6rem;
      font-size: 1.5rem;
      padding: 1.125rem;
      cursor: pointer;
    }

    .toggle-item {
      margin-bottom: 2rem;
    }

    .toggle-item {
      margin-bottom: 1.125rem;
    }

    .active .item-body p {
      font-size: 1.25rem;
    }

    .btn-toggle:after {
      width: 10px;
      height: 10px;
      margin-left: 13px;
      border-bottom: 2px solid #333333;
      border-right: 2px solid #333333;
    }
  }
  @media screen and (min-width:1110px){
    .page-main__box {
      padding: 0;
    }
    .list-box {
      padding: 1.56rem 0 0;
    }
  }
}


/*= 合格実績・合格者の声 =*/
.success #body-wrapper {
  font-family: 'Zen Maru Gothic';
  .page-hero .inner_box {
    padding: 0;
  }

  .section-title {
    color: #82168A;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    background: url(../img/success/bg_hero2_sp.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: .3rem .8rem;
  }

  .section-title p {
    font-size: 2.13rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    padding-top: .3rem;
  }

  .section-title p span {
    font-family: "Crimson Text", serif;
    font-size: 4rem;
    line-height: 1;
  }

  .section-title p span:first-of-type {
    margin-left: .5rem;
  }

  .section-title p span:nth-of-type(2) {
    font-size: 2.93rem;
  }

  .section-title p:last-of-type {
    font-size: .9rem;
    color: #333333;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: -.6rem;
  }

  .hero-wrap-txt {
    background-image: url(../img/success/bg_hero1_sp.webp);
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .hero-wrap-txt .txt {
    padding: 1.2rem;
    color: #333333;
    line-height: 1.83;
    letter-spacing: 1px;
  }

  .inner_box {
    padding: 0 1.2rem;
  }

  .page-main-txt {
    text-align: center;
    color: #284CA1;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: .5rem;
    padding-bottom: .2rem;
    padding: 2.33rem 0;
    text-decoration-color: #FF0000;
  }

  .page-main-txt span {
    color: #FF0000;
    font-size: 2.98rem;
    font-weight: 600;
  }

  .voice .voice-title {
    text-align: center;
    color: #284CA1;
    font-size: 1.66rem;
    font-weight: 600;
    padding: 1.46rem 0;
  }

  .voice-item-wrap:first-of-type {
    position: relative;
    z-index: -1;
  }

  .voice-item-wrap:nth-of-type(2) {
    position: relative;
    padding: 1.13rem 0 1.46rem 0;
    background-image: url(../img/success/bg_voice_sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    padding-top: 40vw;
    margin-top: -34vw;
    background-position: right bottom;
  }

  .voice-item-wrap .disc p:first-of-type {
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1;
    text-align: right;
  }

  .voice-item-wrap .disc p:nth-of-type(2) {
    font-size: 1.26rem;
    font-weight: 500;
    color: #284CA1;
    line-height: 1;
    text-align: right;
  }

  .voice-item-wrap .disc p:nth-of-type(3) {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    text-align: right;
  }

  .voice-item-wrap .disc p:nth-of-type(3) span {
    font-size: 1.26rem;
    font-weight: 500;
    text-align: right;

  }

  .voice-item-wrap .text {
    color: #333333;
    line-height: 2;
    padding-top: 1.2rem;
  }

  .voice-item-wrap .disc p:last-of-type {
    text-align: right;
  }

  .voice-item {
    padding-bottom: 1.4rem;
  }

  .findwork-disc p:first-of-type {
    color: #284CA1;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FF0000;
    text-underline-offset: .5rem;
  }

  .findwork-disc p:first-of-type span {
    color: #284CA1;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
  }

  .findwork-disc p:nth-of-type(2) {
    color: #284CA1;
    font-size: 1.86rem;
    font-weight: 600;
    text-align: center;
  }

  .findwork-disc p:nth-of-type(2) span {
    color: #FF0000;
    font-size: 4.6rem;
    font-weight: 600;
    text-align: center;
  }

  .findwork-disc ul {
    display: flex;
    gap: .9rem;
    justify-content: center;
    align-items: center;
  }

  .findwork .title {
    font-size: 1.66rem;
    color: #284CA1;
    text-align: center;
    font-weight: 600;
  }

  .findwork-disc li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #284CA1;
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    justify-content: center;
  }

  .findwork-disc li p {
    color: #ffff !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 1;
  }

  .findwork-disc li p span {
    color: #ffff !important;
    font-size: 2rem !important;
  }

  .company {
    padding: 3.73rem 0;
  }

  .company__title {
    font-size: 1.66rem;
    color: #284CA1;
    font-weight: 700;
    text-align: center;
  }

  .company__disc {
    color: #ffff;
    background: #9BB4C1;
    padding: 0.46rem;
    margin-top: 1rem;
    font-weight: 500;
  }

  .company__list ul {
    display: grid;
    border: 1px solid #9BB4C1;
    border-bottom: none;
    grid-template-columns: 1fr 1fr;
  }

  .company__list li {
    display: block;
    height: 2rem;
    border-bottom: 1px solid #9BB4C1;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: .675rem;
    padding: .6rem .3rem;
  }

  .company__list li:nth-child(odd) {
    border-right: 1px solid #9BB4C1;
  }

  .hero-wrap img {
    width: 100%;
  }

  .voice-item-wrap img {
    width: 100%;
  }
  @media screen and (min-width:1024px) {
    .page-hero .inner_box {
      display: flex;
    }

    .hero-wrap {
      height: auto;
      .desc-text img{
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    .hero-wrap-txt {
      background-image: url(../img/success/bg_hero_pc.webp);
      background-size: cover;
    }

    .section-title {
      color: #82168A;
      font-size: 2.18rem;
      text-align: center;
      font-weight: 500;
      line-height: 1.4;
      background: none;
      background-size: 100%;
      background-repeat: no-repeat;
      padding: 1rem;
    }

    .section-title p {
      font-size: 2.68rem;
      padding-top: .3rem;
    }

    .section-title p span {
      font-size: 5.18rem;
    }

    .section-title p span:nth-of-type(2) {
      font-size: 3.75rem;
    }

    .section-title p:last-of-type {
      font-size: 1rem;
      text-align: right;
      margin-top: -.2rem;
    }

    .hero-wrap-txt .txt {
      padding: 0rem 1.8rem 0 1.2rem;
      letter-spacing: 1px;
      font-size: 1.18rem;
    }

    .hero-wrap,
    .hero-wrap-txt {
      flex: 1;
    }

    .hero-wrap {
      width: 550px;
      height: 508px;
    }

    .hero-wrap img {
      object-fit: cover;
      height: 100%;
      width: auto;
    }

    .page-main-txt {
      text-align: center;
      color: #284CA1;
      font-size: 3.48rem;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 1rem;
      padding-bottom: .2rem;
      padding: 4.125rem 0;
      text-decoration-color: #FF0000;
    }

    .page-main-txt span {
      font-size: 5.62rem;
    }

    .voice .voice-title {
      font-size: 3.125rem;
      padding: 2rem 0 0 0;
      margin-bottom: 0;
    }

    .voice .voice-item {
      display: flex;
      max-width: 1000px;
      margin: 0 auto;
      padding: 2.5rem 1.6rem 0;
    }

    .voice .voice-item .inner_box {
      padding: 0;
      flex: 1;
    }

    .voice .voice-item .voice-item-wrap img {
      object-fit: cover;
      height: 100%;
      width: auto;
    }

    .voice-item-wrap:nth-of-type(2) {
      padding: 0;
      background: url(../img/success/bg_voice1_pc.webp);
      margin-top: 0;
      background-size: cover;
      padding: 1rem 1.5rem;
    }

    .voice-item-wrap {
      flex: 1;
    }

    .voice-item-wrap .disc p:first-of-type {
      font-size: 1.49rem;
    }

    .voice-item-wrap .disc p:nth-of-type(2) {
      font-size: 1.49rem;
    }

    .voice-item-wrap .disc p:nth-of-type(3) {
      font-size: 1.87rem;
    }

    .voice-item-wrap .disc p:nth-of-type(3) span {
      font-size: 1.49rem;
    }

    .voice-item-wrap .disc p:last-of-type {
      font-size: 1.25rem;
    }

    .voice-item-wrap .text {
      font-size: 1.1875rem;
      padding-top: 1rem;
    }

    .voice-item-wrap:first-of-type {
      height: 382px;
    }

    .voice-item:nth-child(odd) {
      flex-direction: row-reverse;
    }

    .voice-item:nth-child(odd) .voice-item-wrap:nth-of-type(2) {
      background: url(../img/success/bg_voice2_pc.webp);
    }

    .findwork-disc {
      padding-top: 5.3rem;
    }

    .findwork-disc p:first-of-type {
      font-size: 3rem;
      text-decoration: underline;
      text-decoration-color: #FF0000;
      text-underline-offset: .5rem;
    }

    .findwork-disc p:first-of-type span {
      font-size: 2rem;
    }

    .findwork-disc p:nth-of-type(2) {
      font-size: 2.75rem;
    }

    .findwork-disc p:nth-of-type(2) span {
      font-size: 6.93rem;
    }

    .findwork-disc li {
      width: 10.6rem;
      height: 10.6rem;
    }

    .findwork-disc li p {
      font-size: 1.58rem !important;
    }

    .findwork-disc li p span {
      font-size: 3rem !important;
    }

    .findwork-disc ul {
      gap: 1rem;
      padding-top: 1rem;
    }

    .company {
      padding: 7.31rem 1.2rem;
    }

    .company__title {
      font-size: 3.125rem;
    }

    .company__list ul {
      grid-template-columns: repeat(4,1fr);
    }

    .company__disc {
      font-size: 1.375rem;
      padding: 1rem;
    }

    .company__list li {
      height: 2.68rem;
      font-size: .9rem;
      padding: .7rem .5rem .5rem;
      letter-spacing: 1px;
      line-height: 1.2;
    }

    .company__disc {
      margin-top: 1.875rem;
    }
    .company__list li:nth-child(4n+2){
      border-right: 1px solid #9BB4C1;
    }
  }
  @media screen and (min-width:1110px){
    .hero-wrap-txt .txt {
      padding: 0rem 1.2rem;
    }
    .voice .voice-item {
      padding: 2.5rem 0 0;
    }
    .company {
      padding: 7.31rem 0;
    }
  }
}


/*= 学生寮 =*/
.dormitory #body-wrapper {
  font-family: 'Zen Maru Gothic';
  background: var(--gray-light);
  color: #333333;
  padding-bottom: 3rem;

  .page-hero .inner_box {
    padding: 0;
  }

  .page-hero__wrap img {
    display: block;
    margin: 0 auto;
  }

  .image img {
    display: block;
    margin: 0 auto;
  }

  .desc-image img {
    display: block;
    margin: 0 auto;
  }


  .page-hero__wrap:nth-of-type(2) {
    padding: 1.6rem 1.6rem 0 1.6rem;
  }

  .page-hero__txt {
    padding-top: 1.13rem;
  }

  .main-sec {
    padding-top: 2.333rem;
  }

  .main-item01 {
    background: #ffff;
    border: .2rem solid #F15A24;
    margin-top: 6rem;
    padding: 0 .7rem .7rem;
  }

  h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: #ffff;
    line-height: 1.4;
    border-radius: 9999px;
    padding: .6rem 2rem .8rem;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: -4rem auto 1.5rem auto;
  }

  .main-item01 h3 {
    background: #F15A24;
  }

  .main-item01 .sub {
    color: #F15A24;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: -1px;
  }

  .main-item01 .disc .list_item {
    position: relative;
    font-weight: 700;
    padding-left: 3rem;
    line-height: 1.625;
  }

  .main-item01 .disc .list_item::before {
    content: "1";
    position: absolute;
    background: #F15A24;
    height: 2.33rem;
    width: 2.33rem;
    border-radius: 50%;
    color: #ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.7rem;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }

  .main-item01 .disc .list_item:nth-child(4)::before {
    content: "2";
  }

  .main-item01 .disc .list_item:nth-child(6)::before {
    content: "3";
  }

  .main-item01 .line {
    display: block;
    height: 1.6rem;
    background-image: radial-gradient(circle, #F15A24 1.6px, transparent 1.6px);
    background-size: 10px 10px;
    background-repeat: repeat-x;
    background-position: center;
  }

  .main-item01 .disc img {
    padding-top: 1.46rem;
  }

  .main-item01 .point {
    padding-top: 3rem;
  }

  .point .disc {
    font-size: 1rem;
    font-weight: 700;
    background: #ffff;
    border: 2px solid #F15A24;
    border-radius: 3rem;
    position: relative;
    height: 3.2rem;
    margin: 0;
    line-height: 1.2;
    padding-left: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .point .disc::before {
    position: absolute;
    content: "1";
    width: 3.2rem;
    height: 3.2rem;
    background: #F15A24;
    border-radius: 50%;
    color: #ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    top: -2px;
    left: -2px;
  }

  .point .item2 .disc::before {
    content: "2";
  }

  .point .item3 .disc::before {
    content: "3";
  }

  .point .item4 .disc::before {
    content: "4";
  }

  .point .item5 .disc::before {
    content: "5";
  }

  .point .item6 .disc::before {
    content: "6";
  }

  .point .text {
    padding: .8rem;
    padding-bottom: 0;
  }

  .point .line {
    height: 2.6rem;
  }

  .main-item01 .point .image {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.66rem;
  }

  .voice {
    padding: 1.2rem 0 0 0;
  }

  .voice .sub {
    border: 2px solid;
    border-radius: 3rem;
    margin-bottom: 1rem;
    padding: .2rem 0;
  }

  .voice_item h4 {
    font-weight: 700;
    line-height: 1.66;
    font-size: 1.125rem;
  }

  .voice_item p {
    line-height: 1.66;
  }

  .voice .line {
    height: 2rem;
  }

  .voice .small {
    font-size: .7rem;
    text-align: right;
    padding-top: .5rem;
  }

  .sm_only {
    display: block;
  }

  .main-item02,
  .main-item03 {
    background: #ffff;
    border: .2rem solid #009245;
    margin-top: 6rem;
    padding: 0 .7rem .7rem;
  }


  .main-item02 h3,
  .main-item03 h3 {
    background: #009245;
  }

  .main-item02 .point .list_item,
  .main-item03 .point .list_item {
    position: relative;
    font-weight: 700;
    padding-left: 3rem;
    line-height: 1.625;
    font-size: 1.066rem;
  }

  .main-item02 .line,
  .main-item03 .line {
    display: block;
    height: 1.6rem;
    background-image: radial-gradient(circle, #009245 1.6px, transparent 1.6px);
    background-size: 10px 10px;
    background-repeat: repeat-x;
    background-position: center;
  }

  .main-item02 .point .list_item::before,
  .main-item03 .point .list_item::before {
    content: "1";
    position: absolute;
    background: #009245;
    height: 2.33rem;
    width: 2.33rem;
    border-radius: 50%;
    color: #ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.7rem;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }

  .main-item02 .point .list_item,
  .main-item03 .point .list_item {
    position: relative;
    font-weight: 700;
    padding-left: 3rem;
    line-height: 1.625;
    min-height: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 0px;
  }

  .main-item02 .sub,
  .main-item03 .sub {
    color: #009245;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1;
  }

  .main-item02 .list .list_item:nth-child(4)::before,
  .main-item03 .list .list_item:nth-child(4)::before {
    content: "2";
  }

  .main-item02 .list .list_item:nth-child(6)::before,
  .main-item03 .list .list_item:nth-child(6)::before {
    content: "3";
  }

  .main-item02 .list .list_item:nth-child(8)::before,
  .main-item03 .list .list_item:nth-child(8)::before {
    content: "4";
  }

  .main-item02 .list .list_item:nth-child(10)::before,
  .main-item03 .list .list_item:nth-child(10)::before {
    content: "5";
  }

  .main-item02 .list .list_item:nth-child(12)::before,
  .main-item03 .list .list_item:nth-child(12)::before {
    content: "6";
  }

  .main-item02 .point .image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.26rem;
  }

  .main-item03 .point .image {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    padding-top: 1.26rem;
  }

  .main-item03 .voice .sub {
    padding: .7rem 0;
  }

  .main-item03 .voice .sub {
    padding: .7rem 0;
  }

  .main-item03 .voice_item p {
    font-weight: 400;
    line-height: 1.66;
  }

  @media screen and (max-width:345px) {
    .sm_only {
      display: none;
    }

    .point .disc {
      padding-left: 3.2rem;
      padding-right: .5rem;
    }

    h3 {
      font-size: 1.7rem;
    }
  }
  @media screen and (min-width: 750px) and (max-width: 1024px) {
    br {
      display: none !important;
    }
  }
  @media screen and (min-width:1024px) {
    padding-bottom: 9.3rem;

    .page-hero .inner_box {
      display: flex;
      gap: 2.4rem;
      padding: 3rem 2rem 0;
    }

    .page-hero__wrap h2 {
      height: 100%;
    }

    .page-hero__wrap h2 img {
      object-fit: cover;
      height: 100%;
      width: auto;
    }

    .page-hero__wrap:nth-of-type(2) {
      padding: 0;
      max-width: 42%;
    }

    .page-hero__txt {
      font-size: 1.29rem;
    }

    .main-sec {
      padding-top: 3.875rem;
    }

    .main-item01 {
      border: 2px solid #F15A24;
      padding: 0 2.7rem 2.7rem;
    }

    .main-item01 h3,
    .main-item02 h3,
    .main-item03 h3 {
      font-size: 2.625rem;
    }

    .main-item01 .sub {
      font-size: 2.5rem;
      letter-spacing: -1px;
      margin-bottom: 2.87rem;
      margin-top: 2rem;
    }

    .main-item01 .disc .wrap {
      display: flex;
      gap: 2.6rem;
      align-items: start;
    }

    .main-item01 .disc .wrap .list {
      flex: 1;
      padding-top: 2rem;
    }

    .main-item01 .disc .wrap .desc-image {
      flex: 1;
    }

    .main-item01 .disc .list_item {
      position: relative;
      font-weight: 700;
      padding-left: 4rem;
      line-height: 1.6;
      font-size: 1.56rem;
    }

    .main-item01 .line {
      background-size: 13px 10px;
      height: 1.3rem;
    }

    .main-item01 .disc img {
      padding-top: 0;
    }

    .main-item01 .disc .list_item::before {
      height: 3.43rem;
      width: 3.43rem;
      font-size: 2.5rem;
      justify-content: end;
    }

    .main-item01 .point {
      padding-top: 1rem;
    }

    .point .sub {
      margin-bottom: 2rem;
    }

    .main-item01 .point .line {
      display: none;
    }

    .main-item01 .point .list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.6rem 2.6rem;
    }

    .point .disc {
      font-size: 1.43rem;
      height: 4.56rem;
      margin: 0;
      line-height: 1.2;
      padding-left: 5rem;
    }

    .point .disc::before {
      width: 4.2rem;
      height: 4.2rem;
      font-size: 3rem;
      top: -1px;
      left: -1px;
      padding-bottom: 3px;
    }

    .point .text {
      padding: 1.43rem .4rem 0 .4rem;
      font-size: 1.2rem;
      line-height: 1.6;
    }

    .main-item01 .point .image {
      flex-direction: inherit;
      gap: .8rem;
      margin-top: 4.75rem;
    }

    .main-item01 .point .image .item {
      flex: 1;
    }

    .main-item01 .point .image .item:last-of-type img {
      width: 92%;
    }

    .main-item01 .voice .sub,
    .main-item03 .voice .sub {
      font-size: 1.75rem;
      max-width: 25.8rem;
      margin: 5.31rem auto 3rem auto;
    }

    .main-item01 .voice_wrap,
    .main-item03 .voice_wrap {
      display: flex;
      gap: 0;
    }

    .main-item01 .voice .line {
      width: 2rem;
      max-height: 100%;
      height: 28.8rem;
      background-image: radial-gradient(circle, #F15A24 1.6px, transparent 2.4px);
      background-size: 11px 12px;
      background-repeat: repeat-y;
      background-position: center;
    }

    .main-item03 .voice .line {
      width: 2rem;
      max-height: 100%;
      height: 25.8rem;
      background-image: radial-gradient(circle, #009245 1.6px, transparent 2.4px);
      background-size: 11px 12px;
      background-repeat: repeat-y;
      background-position: center;
    }

    .main-item03 .voice .line {
      height: 17rem;
    }

    .voice_item {
      flex: 1;
    }

    .voice_item p {
      font-size: 1.125rem;
      letter-spacing: 0px;
    }

    .voice .small {
      font-size: 1rem;
      padding-top: 1rem;
    }

    .main-item02,
    .main-item03 {
      border: 2px solid #009245;
      padding:0 2.7rem 2.7rem;
    }

    .main-item02 h3,
    .main-item03 h3 {
      background: #009245;
      margin: -5rem auto 0 auto;
    }

    .main-item02 .sub,
    .main-item03 .sub {
      font-size: 2.5rem;
      letter-spacing: -1px;
      margin-bottom: 2.87rem;
      margin-top: 3rem;
    }

    .main-item02 .point .list {
      display: grid;
      grid-template-columns:repeat(3,1fr);
      gap: 28px 0;
    }

    .main-item03 .point .list {
      display: grid;
      grid-template-columns: 0.9fr 1fr 0.6fr;
      gap: 28px 0;
    }

    .main-item02 .point .line,
    .main-item03 .point .line {
      display: none;
    }

    .main-item02 .point .list_item,
    .main-item03 .point .list_item {
      font-size: 1.25rem;
    }

    .main-item02 .point .list_item::before,
    .main-item03 .point .list_item::before {
      height: 2.5rem;
      width: 2.5rem;
      justify-content: end;
    }

    .main-item02 .point .image,
    .main-item03 .point .image {
      flex-direction: inherit;
      gap: 1.6rem;
      padding-top: 3rem;
      align-items: center;
    }

    .main-item03 .point .image div {
      flex: 1;
    }
  }
  @media screen and(min-width:1110px){
    .page-hero .inner_box {
      padding: 3rem 0 0;
    }
  }
}

/*= メールフォームサンクスページ =*/
.contact-subpage #body-wrapper,
.open_campus-subpage #body-wrapper {
  .thanks-wrap {
    padding: 3.9rem 0;
  }
  h1 {
    color: var(--title-color);
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.8;
  }

  .thanks_text {
    font-size: 1.3rem;
    line-height: 1.85;
    padding-top: 3rem;
  }

  .thanks_text span {
    display: block;
    font-size: 1.2rem;
    padding-top: 2.9rem;
    margin-top: .5rem;
    line-height: 1.8;
  }
  @media screen and (min-width:1024px) {
    .thanks-wrap {
      padding: 3.9rem 0;
    }
    .inner_box {
      max-width: 700px;
    }

    h1 {
      font-size: 2.5rem;
      text-align: center;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.8;
    }

    .thanks_text {
      font-size: 1rem;
      line-height: 1.85;
      padding-top: 3rem;
    }

    .thanks_text span {
      display: block;
      font-size: .9rem;
      padding-top: 2.9rem;
    }
  }
}

.notfound_page #body-wrapper {
  text-align: center;
  section{
    padding: 3rem 0;
  }
  .btn-wrapper {
    text-align: center;
  }
  .btn {
    background: none;
    border-radius: 1rem;
    border: var(--accent-color) 2px solid;
    display: block;
    padding: 1.25rem 2.75rem;
    color: var(--accent-color);
    position: relative;
    text-align: center;
    width: auto;
    display: inline-block;
    font-weight: 700;
    margin: 0 auto;
  }
  .btn:before {
    content: "";
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .875rem;
    margin: auto;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    border-radius: 2px;
}
}