@charset "UTF-8";
/*----------------------------------
    Vars
----------------------------------*/
/*----------------------------------
    WEB FONTS
----------------------------------*/
@font-face {
  font-family: "Noto Sans Japanese";
  src: url("/fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Japanese";
  src: url("/fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Japanese";
  src: url("/fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/*----------------------------------
    BASE
----------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  color: #000;
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 400;
}
body .main, body.online .main {
  background-color: #BCEEFF;
  background-image: url("/guide/common/img/bg_online.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  padding: 150px 0 100px;
}
@media (max-width: 1200px) {
  body .main, body.online .main {
    padding-top: clamp(6.125rem, 3.115rem + 8.35vw, 9.375rem);
  }
}
@media (max-width: 576px) {
  body .main, body.online .main {
    padding-top: 124px;
  }
}
body.ginou .main {
  background-color: #d2ecd1;
  background-image: url("/guide/common/img/bg_ginou.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  padding: 150px 0 100px;
}
@media (max-width: 1200px) {
  body.ginou .main {
    padding-top: clamp(6.125rem, 3.115rem + 8.35vw, 9.375rem);
  }
}
@media (max-width: 576px) {
  body.ginou .main {
    padding-top: 124px;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

/*----------------------------------
    HEADER
----------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 44px;
}
.header__item--ex-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-left: auto;
}
.header__title {
  font-size: 25px;
  font-weight: 700;
}
.header__faq-link {
  background-color: #656e7c;
  border: 1px solid #707070;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  padding: 2px 6px;
}
.header__faq-link:hover {
  background-color: #707070;
}
@media (max-width: 1200px) {
  .header__inner {
    flex-wrap: wrap;
    gap: 2px;
    padding-bottom: 4px;
  }
  .header__item {
    width: 100%;
  }
  .header__item--ex-link {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    gap: clamp(0.5rem, 0.268rem + 0.64vw, 0.75rem);
  }
  .header__logo {
    width: clamp(12.5rem, 9.606rem + 8.03vw, 15.625rem);
    height: auto;
  }
  .header__jac-logo {
    width: clamp(7.375rem, 5.365rem + 8.35vw, 12.625rem);
    height: auto;
  }
  .header__icon {
    width: clamp(0.625rem, 0.451rem + 0.48vw, 0.813rem);
    height: auto;
  }
  .header__title {
    font-size: clamp(1.125rem, 0.893rem + 0.64vw, 1.375rem);
  }
  .header__faq-link {
    font-size: clamp(0.625rem, 0.509rem + 0.32vw, 0.75rem);
  }
}
@media (max-width: 576px) {
  .header__faq-link {
    visibility: hidden;
  }
}

/*----------------------------------
    FOOTER
----------------------------------*/
.footer {
  background-color: #fff;
  padding: 44px 0;
}
.footer .copyright {
  text-align: right;
}
.footer .copyright img {
  margin-bottom: 16px;
}
.footer .copyright p {
  font-size: 12px;
}
@media (max-width: 576px) {
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright p {
    font-size: 11px;
  }
}

/*----------------------------------
    COMPONENT
----------------------------------*/
/* container */
.container {
  width: 1140px;
  min-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1200px) {
  .container {
    min-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}
/* inner-block */
.inner-block {
  border: 0px solid rgba(34, 36, 38, 0.15);
  background-color: rgba(255, 255, 255, 0.8509803922);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0px 0px 0 rgba(34, 36, 38, 0.1490196078);
}

/* c-page-header */
.c-page-header {
  margin-bottom: 55px;
}
.c-page-header__title {
  border-left: 20px solid #999;
}
.c-page-header__discription {
  border-left: 20px solid #999;
}
.c-page-header__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 9px 0 9px 20px;
}
.c-page-header__discription {
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0 13px 20px;
  display: flex;
  align-items: center;
}
.c-page-header__discription img {
  margin-right: 14px;
}

/* c-section-header */
.c-section-header {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 0 100vmax 100vmax 0;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.c-section-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background-color: #83cf03;
  border-left: 20px solid #d0eda0;
  padding: 5px 30px 5px 20px;
  border-radius: 0 100vmax 100vmax 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-section-header__title img {
  vertical-align: -2px;
  margin-right: 12px;
}
.c-section-header__discription {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* c-list */
.c-list {
  margin-bottom: 40px;
  padding: 0 20px;
}
.c-list li {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 500;
}
.c-list li::before {
  content: "●";
  position: absolute;
  top: 18px;
  left: 0;
  transform: translate(0, -50%);
  font-size: 10px;
  color: #000;
}
.c-list li > ul {
  padding-left: 12px;
}
.c-list li > ul li {
  margin-bottom: 0 !important;
  font-size: 18px;
}
.c-list.small > li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px !important;
}
.c-list.small > li::before {
  top: 16px;
  font-size: 8px;
}
.c-list--blue li {
  color: #04198e;
}
.c-list-ol {
  list-style-type: decimal;
  padding-left: 40px;
}
.c-list-ol li {
  padding-left: 10px;
  margin-bottom: 10px;
}
.c-list-ol li::before {
  content: "";
  display: none;
}
.c-list__subtitle {
  margin: 14px 0 0;
}

/* 受講当日のご案内 */
.guide-cont__title {
  background-color: #f0f0f0;
  border-bottom: 1px solid #707070;
  font-size: 22px;
  font-weight: 700;
  margin-top: 31px;
  margin-bottom: 42px;
  padding: 10px 20px;
}
.guide-cont__title:first-of-type {
  margin-top: 0;
}
.guide-cont .c-list li {
  margin-bottom: 20px;
}
.guide-cont__wrap {
  margin: 45px 0 52px;
}
.guide-cont__pdflink {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 616px;
  min-height: 50px;
  border: 1px solid #F91101;
  border-radius: 4px;
  background-color: #FFF6F5;
  margin: 31px 0 0 20px;
  padding: 5px 45px 5px 20px;
  line-height: 1.4;
  position: relative;
}
.guide-cont__pdflink img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}
.guide-cont__pdflink:hover {
  background-color: #fae6e3;
}

/*----------------------------------
    RESPO
----------------------------------*/
@media (max-width: 1200px) {
  /* COMPONENT */
  /* c-page-header */
  .c-page-header {
    margin-bottom: clamp(1.875rem, 0.428rem + 4.01vw, 3.438rem);
  }
  .c-page-header__title, .c-page-header__discription {
    border-left-width: clamp(0.938rem, 0.648rem + 0.8vw, 1.25rem);
  }
  .c-page-header__title {
    font-size: clamp(1.75rem, 1.055rem + 1.93vw, 2.5rem);
  }
  .c-page-header__discription {
    font-size: clamp(0.75rem, 0.518rem + 0.64vw, 1rem);
  }
  /* c-list */
  .c-list li {
    font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  }
  .c-list li::before {
    top: clamp(0.938rem, 0.604rem + 0.69vw, 1.125rem);
  }
  /* 受講当日のご案内 */
  .guide-cont__title {
    font-size: clamp(1.25rem, 1.028rem + 0.46vw, 1.375rem);
  }
}
@media (max-width: 768px) {
  /* 受講当日のご案内 */
  .guide-cont__pdflink {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  /* c-page-header */
  .c-page-header__title, .c-page-header__discription {
    border-left-width: 10px;
    padding-left: 10px;
    padding: 6px 0 6px 10px;
  }
  .c-page-header__title {
    font-size: 28px;
  }
  .c-page-header__discription {
    font-size: 14px;
    line-height: 1.4;
  }
  /* c-list */
  .c-list {
    padding: 0;
  }
  .c-list-ol {
    padding-left: 20px;
  }
}
/*----------------------------------------------
  2025-10 guide-online 追加
----------------------------------------------*/
.itemCheck-cont {
  padding: 0 20px;
}
.itemCheck-cont__copy {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 36px;
}
.itemCheck-cont__title {
  background-color: #f0f0f0;
  border-bottom: 1px solid #707070;
  font-size: 22px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 28px;
  padding: 10px 20px;
}
.itemCheck-cont__title:first-of-type {
  margin-top: 0;
}
.itemCheck-cont__num-title {
  font-size: 20px;
  font-weight: 700;
  margin-left: 20px;
  margin-bottom: 10px;
}
.itemCheck-cont__num-copy {
  font-size: 18px;
  font-weight: 500;
  margin-left: 40px;
  margin-bottom: 30px;
}
.itemCheck-cont__num-copy.noindent {
  margin-left: 20px;
}
.itemCheck-cont__num-copy.subtitle {
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: underline;
}
.itemCheck-cont__ul {
  padding-left: 20px;
}
.itemCheck-cont a {
  color: #0014ff;
}
.itemCheck-cont .c-list li {
  margin-bottom: 20px;
}
.itemCheck-cont iframe {
  max-width: 100%;
  margin-left: 0;
}

@media (max-width: 1200px) {
  /* c-section-header */
  .c-section-header {
    margin-bottom: clamp(1.25rem, 0.671rem + 1.61vw, 1.875rem);
  }
  .c-section-header__title {
    font-size: clamp(1.25rem, 0.787rem + 1.28vw, 1.75rem);
    border-left-width: clamp(0.938rem, 0.648rem + 0.8vw, 1.25rem);
    line-height: 1.4;
  }
  .c-section-header__title img {
    width: clamp(1.25rem, 0.961rem + 0.8vw, 1.563rem);
    height: auto;
  }
  .c-section-header__discription {
    font-size: clamp(0.75rem, 0.518rem + 0.64vw, 1rem);
    padding-right: 20px;
  }
  .itemCheck-cont__copy {
    font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  }
  .itemCheck-cont__title {
    font-size: clamp(1.25rem, 1.028rem + 0.46vw, 1.375rem);
  }
  .itemCheck-cont__num-title {
    font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  }
  .itemCheck-cont__num-copy {
    font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  }
}
@media (max-width: 576px) {
  /* c-section-header */
  .c-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    background-color: transparent;
    border-radius: 0;
  }
  .c-section-header__title {
    border-left: 10px solid #d0eda0;
    padding: 15px 30px 15px 10px;
    width: 100%;
  }
  .c-section-header__discription {
    font-size: 14px;
    padding-right: 20px;
    padding: 10px 10px;
    background-color: transparent;
    border-radius: 0 100vmax 100vmax 0;
  }
  .itemCheck-cont {
    padding: 0;
  }
  .itemCheck-cont__copy {
    font-size: 16px;
  }
  .itemCheck-cont__num-title {
    margin-left: 0;
  }
  .itemCheck-cont__num-copy {
    margin-left: 20px;
  }
  .itemCheck-cont .c-btn {
    width: 100%;
  }
  body.online .itemCheck-cont__num-copy {
    margin-left: 0;
  }
}/*# sourceMappingURL=guide.css.map */