@charset "UTF-8";
* {
  word-break: break-word;
  box-sizing: border-box;
}

body {
  line-height: 1.8;
  color: #3c3c3c;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  color: #3c3c3c;
}

a {
  font-size: 16px;
  color: #3c3c3c;
}
@media (max-width: 820px) {
  a {
    font-size: 14px;
  }
}
a:hover {
  cursor: pointer;
}

a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol,
li {
  list-style: none;
  font-size: 16px;
}
@media (max-width: 820px) {
  ul,
  ol,
  li {
    font-size: 14px;
  }
}

th,
td {
  font-size: 16px;
}
@media (max-width: 820px) {
  th,
  td {
    font-size: 14px;
  }
}

.pc-block {
  display: block;
}
@media (max-width: 820px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 820px) {
  .sp-block {
    display: block;
  }
}

.main {
  margin: 70px 0 0;
}
@media (max-width: 820px) {
  .main {
    margin: 62px 0 0;
  }
}

.breadcrumbs-wrap {
  background-color: #ebebeb;
}
.breadcrumbs-wrap__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3px 12px 3px;
  font-size: 11px;
}
.breadcrumbs-wrap.guide {
  padding: 160px 12px 0;
}
@media (max-width: 820px) {
  .breadcrumbs-wrap.guide {
    padding: 114px 12px 0;
  }
}

.pagenation-single {
  position: relative;
  margin: 0 auto 120px;
  width: 280px;
}
@media (max-width: 600px) {
  .pagenation-single {
    margin: 0 auto 60px;
  }
}
.pagenation-single a:first-child {
  position: absolute;
  left: 32px;
  transform: translateX(-50%);
}
.pagenation-single a:last-child {
  position: absolute;
  right: 1px;
  transform: translateX(-50%);
}
.pagenation-single__center {
  position: absolute;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}
.content-style {
  line-height: 32px;
}
.content-style__block {
  margin: 0 0 60px;
}
@media (max-width: 600px) {
  .content-style__block {
    margin: 0 0 40px;
  }
}
.content-style .aligncenter {
  display: block;
  margin: 0 auto;
}
.content-style .alignright {
  float: right;
}
.content-style .alignleft {
  float: left;
}
.content-style img {
  width: auto;
}
.content-style p {
  margin: 0 0 12px;
  line-height: 22px;
}
.content-style h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 40px;
}
@media (max-width: 1120px) {
  .content-style h1 {
    font-size: 22px;
  }
}
@media (max-width: 820px) {
  .content-style h1 {
    font-size: 20px;
  }
}
.content-style h2 {
  font-size: 20px;
  padding: 0 0 12px;
  margin: 0 0 24px;
  color: #047717;
  font-weight: bold;
}
@media (max-width: 600px) {
  .content-style h2 {
    font-size: 18px;
    margin: 0 0 16px;
  }
}
.content-style h3 {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 16px;
}
@media (max-width: 600px) {
  .content-style h3 {
    margin: 0 0 16px;
  }
}
.content-style a {
  text-decoration: underline;
}
.content-style ol {
  margin: 0 0 24px 24px;
}
.content-style ol li {
  list-style: decimal;
  line-height: 22px;
}
.content-style ul {
  margin: 0 0 24px 24px;
}
.content-style ul li {
  list-style: disc;
  line-height: 22px;
}
.content-style table,
.content-style td,
.content-style th {
  border: 1px solid #595959;
  padding: 4px;
}

/* =================================
フォーム
 ================================= */
.page-form__ttl {
  max-width: 1040px;
  margin: 40px auto;
  color: #5f5f5f;
  font-size: 24px;
  padding: 0 12px;
  font-weight: bold;
}
.page-form__wrap {
  max-width: 800px;
  padding: 0 12px;
  margin: 0 auto;
}
.page-form__privacy-wrap {
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  padding: 24px;
  text-align: center;
}
.page-form__privacy-wrap a {
  color: #ff6600;
}

.form {
  max-width: 700px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  background-color: #fff;
}
.form__group {
  margin-bottom: 24px;
}
.form__group input[type=text],
.form__group input[type=tel],
.form__group input[type=date],
.form__group input[type=email],
.form__group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fbfbfb;
  transition: border-color 0.3s;
}
.form__group input[type=text]:focus,
.form__group input[type=tel]:focus,
.form__group input[type=date]:focus,
.form__group input[type=email]:focus,
.form__group textarea:focus {
  outline: none;
  border-color: #007bff;
  background: #fff;
}
.form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 15px;
}
.form__label .required::before {
  content: " 必須";
  color: #fff;
  background: #e60033;
  font-size: 12px;
  padding: 2px 6px 2px 6px;
  border-radius: 3px;
  margin: 0 6px 0 0;
  vertical-align: middle;
}
.form__label .note {
  display: inline-block;
  font-weight: normal;
  color: #ff6600;
  font-size: 12px;
  margin-left: 6px;
  line-height: 1.4;
}
.form__label--file {
  font-size: 17px;
}
.form__label--file-span {
  display: block;
  margin: 0 0 0 43px;
}
@media (max-width: 820px) {
  .form__label--file-span {
    display: inline;
    margin: 0;
  }
}
.form__row {
  display: flex;
  gap: 12px;
}
.form__row input {
  flex: 1;
  max-width: 200px;
}
.form__row p {
  display: flex;
  gap: 12px;
}
.form__row p input {
  flex: 1;
  max-width: 200px;
}
.form__date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.form__date span {
  font-size: 14px;
  color: #333;
  display: inline-block;
}
.form__date span:nth-of-type(2) {
  margin: 0 4px 0 10px;
}
.form__date p {
  display: flex;
  align-items: center;
  gap: 6px;
}
.form__date p span {
  font-size: 14px;
  color: #333;
}
.form__box {
  border: #ccc 1px solid;
  padding: 12px;
  margin: 0 0 16px;
}
.form__box-list span {
  color: #e60033;
}
.form__file-wrap {
  margin: 0 0 40px 0;
  text-align: right;
}
.form__file-flex {
  margin: 16px 0 40px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .form__file-flex {
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }
}
.form__table-wrap {
  margin: 0 0 40px;
}
.form__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.form__table-wrap th,
.form__table-wrap td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
  font-size: 13px;
}
@media (max-width: 600px) {
  .form__table-wrap th,
  .form__table-wrap td {
    padding: 6px;
  }
}
.form__table-wrap th {
  background: #f0f0f0;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}
.form__table-wrap td:nth-child(1) {
  text-align: center;
  font-weight: bold;
  color: #0a802b;
  vertical-align: middle;
  font-size: 18px;
}
.form__table-wrap td {
  vertical-align: middle;
}
.form__table-wrap tr:nth-child(even) td {
  background: #fafafa;
}
.form__table-wrap tr:nth-child(1) th,
.form__table-wrap tr:nth-child(1) td {
  vertical-align: middle;
}
.form__table-wrap .highlight {
  color: #ff6600;
  font-weight: bold;
}
.form__table-text {
  text-align: right;
  margin: 8px 0 0;
  display: block;
  font-size: 14px;
  text-decoration: underline;
}

.form-actions-wrap {
  text-align: center;
  margin: 60px;
}

.confirm-button {
  width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #ff5722;
  color: #fff;
  font-size: 18px;
  border-radius: 50px;
  border: 2px solid #ff5722;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.confirm-button:hover {
  background-color: #e64a19;
  border-color: #e64a19;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.confirm-button::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* =================================
記事ページ
 ================================= */
.single__ttl {
  max-width: 1040px;
  margin: 40px auto;
  color: #5f5f5f;
  font-size: 24px;
  padding: 0 12px;
  font-weight: bold;
}
.single__ttl span {
  font-size: 16px;
  vertical-align: middle;
  margin: 0 12px 0 0;
}
@media (max-width: 600px) {
  .single__ttl span {
    display: block;
  }
}
.single__content-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 12px 80px;
}
@media (max-width: 600px) {
  .single__content-wrap {
    padding: 0 12px 40px;
  }
}
.single__table {
  width: 780px;
  margin: 0 auto 60px;
}
@media (max-width: 820px) {
  .single__table {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.single__table table,
.single__table td,
.single__table th {
  border: 1px solid #595959;
  padding: 4px;
}
.single__table th {
  width: 150px;
}
@media (max-width: 820px) {
  .single__table th {
    width: 120px;
  }
}
.single__table td {
  padding: 4px 16px;
}
@media (max-width: 820px) {
  .single__table td {
    padding: 4px 8px;
  }
}
.single__download {
  width: 200px;
  background-color: #e91e1e;
  color: #fff;
  text-align: center;
  padding: 8px;
  display: block;
}
.single__form-btn {
  width: 200px;
  background-color: #0912cd;
  color: #fff;
  text-align: center;
  padding: 8px;
  display: block;
}
.single__flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .single__flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.single__btn {
  display: block;
  max-width: 240px;
  margin: 0 auto 80px;
}
@media (max-width: 820px) {
  .single__btn {
    max-width: 200px;
    margin: 0 auto 40px;
  }
}

/* =================================
記事一覧
 ================================= */
.page-course__pager {
  margin: 40px 0;
  text-align: center;
}

/* =================================
下層共通
 ================================= */
.subpage__dec01 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 200px;
}
@media (max-width: 820px) {
  .subpage__dec01 {
    max-width: 120px;
  }
}
.subpage__dec02 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
}
@media (max-width: 820px) {
  .subpage__dec02 {
    max-width: 120px;
  }
}
.subpage__section {
  position: relative;
}
.subpage__inner {
  padding: 80px 16px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .subpage__inner {
    padding: 40px 16px;
  }
}
.subpage__ttl {
  max-width: 280px;
  margin: 0 0 24px 12px;
}
@media (max-width: 820px) {
  .subpage__ttl {
    max-width: 200px;
    margin: 0 0 12px 12px;
  }
}
.subpage__text-ttl {
  font-size: 22px;
  margin: 0 0 24px 12px;
}
@media (max-width: 820px) {
  .subpage__text-ttl {
    font-size: 20px;
    margin: 0 0 12px 4px;
  }
}
.subpage__content {
  background-color: #fff;
  border-radius: 14px;
  padding: 60px 40px;
  border: #f2f2f2 2px solid;
}
.subpage__content--none {
  border: none;
}
@media (max-width: 820px) {
  .subpage__content {
    padding: 24px 12px;
  }
}
.subpage__course-list {
  padding: 0;
  max-width: 580px;
  margin: 40px 0 40px 40px;
}
@media (max-width: 820px) {
  .subpage__course-list {
    margin: 24px 0 24px 0;
  }
}
.subpage__course-list li {
  list-style: none;
  position: relative;
  margin-bottom: 12px;
  padding: 6px 20px 6px 42px;
  transition: 0.2s;
}
@media (max-width: 820px) {
  .subpage__course-list li {
    padding: 4px 12px 4px 38px;
  }
}
.subpage__course-list li::before {
  content: "▶";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f57c00;
  font-size: 14px;
}
.subpage__course-list02 {
  padding: 0;
  max-width: 580px;
  margin: 40px 0 40px 40px;
}
@media (max-width: 820px) {
  .subpage__course-list02 {
    margin: 24px 0 24px 0;
  }
}
.subpage__course-list02 li {
  list-style: none;
  position: relative;
  margin-bottom: 0px;
  padding: 2px 20px 2px 32px;
  transition: 0.2s;
}
@media (max-width: 820px) {
  .subpage__course-list02 li {
    padding: 4px 12px 4px 38px;
  }
}
.subpage__course-list02 li::before {
  content: "●";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #838383;
  font-size: 8px;
}
.subpage__price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4px;
}
.subpage__price-table th,
.subpage__price-table td {
  border: 1px solid #999;
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}
.subpage__price-table th {
  background: #f2f2f2;
  text-align: center;
}
@media (max-width: 820px) {
  .subpage__price-table td {
    font-size: 13px;
  }
}
.subpage__price-table tr:nth-child(even) {
  background: #fafafa;
}
.subpage__price-table .note {
  font-size: 0.8em;
  color: #666;
}
.subpage__date {
  text-align: right;
  font-weight: bold;
  margin: 0 0 24px;
}
.subpage__course-item {
  display: flex;
  align-items: flex-start;
  margin: 0 0 40px;
}
.subpage__course-item:first-of-type {
  margin: 40px 0 40px;
}
.subpage__course-item img {
  width: 200px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}
@media (max-width: 820px) {
  .subpage__course-item img {
    width: 100px;
  }
}
.subpage__course-text {
  flex: 1;
}
.subpage__course-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  color: #333;
}
@media (max-width: 820px) {
  .subpage__course-text h3 {
    font-size: 17px;
  }
}
.subpage__tel-text {
  text-align: center;
  margin: 40px 0 0;
}
.subpage__tel {
  text-align: center;
  font-size: 20px;
}
.subpage__tel a {
  font-size: 20px;
}

/* =================================
header
 ================================= */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
  height: 70px;
  background-color: #fff;
  border-bottom: 1px solid #F7931E;
}
@media (max-width: 820px) {
  .header {
    height: 62px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
  padding: 8px 16px;
  height: 70px;
}
@media (max-width: 820px) {
  .header__inner {
    justify-content: space-between;
    padding: 4px 16px;
    height: 62px;
  }
}
.header__ttl-wrap {
  max-width: 400px;
  margin: 0 auto 0 0;
}
@media (max-width: 820px) {
  .header__ttl-wrap {
    max-width: 220px;
    gap: 2px;
  }
}
@media (max-width: 820px) {
  .header__menu-wrap {
    display: none;
  }
}
.header__menu-inner {
  display: flex;
  gap: 40px;
}
@media (max-width: 1180px) {
  .header__menu-inner {
    gap: 18px;
  }
}
.header__menu {
  color: #19761e;
  font-weight: bold;
}
.header__btn-wrap {
  display: none;
}
@media (max-width: 820px) {
  .header__btn-wrap {
    display: block;
    cursor: pointer;
    z-index: 99;
    top: 18px;
    right: 12px;
    position: absolute;
  }
}
.header__btn-img {
  width: 26px;
}
.header__breadcrumb-wrap {
  height: 29px;
  position: fixed;
  top: 78px;
  width: 100%;
  line-height: 32px;
  font-size: 13px;
  color: rgb(92, 92, 92);
  opacity: 0;
  transition: all 0.3s;
}
.header__breadcrumb-wrap.active {
  opacity: 1;
}
@media (max-width: 820px) {
  .header__breadcrumb-wrap {
    top: 59px;
  }
}
.header__breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 12px;
}
@media (max-width: 820px) {
  .header__breadcrumb {
    padding: 0 8px 0 28px;
  }
}

.header-sp {
  opacity: 0;
  transition: all 0.3s;
  transform: translate(100%, 0);
  z-index: 101;
  position: fixed;
  top: -4px;
  right: 0;
  padding: 80px 40px 0;
  background-color: #fff;
  height: 100vh;
  width: 100%;
}
.header-sp.black .header__menu,
.header-sp.black .header__ttl-span {
  color: #1C1C1C;
}
.header-sp.black .header__menu--contact,
.header-sp.black .header__ttl-span--contact {
  background-color: #00a2ff;
  color: #fff;
}
.header-sp.active {
  opacity: 1;
  transition: all 0.3s;
  transform: translate(0, 3px);
  z-index: 100;
}
.header-sp__btn-img {
  width: 26px;
  display: block;
  cursor: pointer;
  z-index: 99;
  top: 18px;
  right: 12px;
  position: absolute;
}
.header-sp__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.header-sp__link-item {
  display: flex;
  gap: 10px;
  color: #fff;
}
.header-sp__link-item img {
  width: 24px;
}
.header-sp__link-item span {
  white-space: nowrap;
}
.header-sp__menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 24px;
}
.header-sp__menu-item {
  color: #19761e;
  font-weight: bold;
}

/* =================================
トップページ
 ================================= */
.page-top__menu-wrap {
  display: flex;
  max-width: 1120px;
  margin: 96px auto 54px;
  gap: 16px;
  padding: 0 16px;
}
@media (max-width: 820px) {
  .page-top__menu-wrap {
    max-width: 500px;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px auto 16px;
  }
}
.page-top__menu-item {
  width: calc((100% - 42px) / 4);
}
@media (max-width: 820px) {
  .page-top__menu-item {
    width: calc((100% - 8px) / 2);
  }
}

.main-visual {
  position: relative;
}
.main-visual__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.main-visual__lead {
  position: absolute;
  top: 24px;
  left: 24px;
  max-width: 480px;
}
@media (max-width: 1180px) {
  .main-visual__lead {
    max-width: 320px;
  }
}
@media (max-width: 820px) {
  .main-visual__lead {
    max-width: 220px;
    top: 8px;
    left: 8px;
  }
}
@media (max-width: 600px) {
  .main-visual__lead {
    max-width: 180px;
  }
}
.main-visual__text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 660px;
  background-color: #fff;
  padding: 16px 24px;
  color: #19761e;
  border-radius: 12px;
  border: 1px solid #c0c0c0;
}
@media (max-width: 1180px) {
  .main-visual__text {
    bottom: -70px;
  }
}
@media (max-width: 820px) {
  .main-visual__text {
    position: relative;
    width: 95%;
    bottom: 12px;
    padding: 16px;
  }
}

/* =================================
お知らせ
 ================================= */
.top-news {
  position: relative;
}
.top-news__inner {
  padding: 80px 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .top-news__inner {
    padding: 40px 16px;
  }
}
.top-news__ttl {
  max-width: 200px;
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .top-news__ttl {
    max-width: 160px;
    margin: 0 auto 24px;
  }
}
.top-news__article {
  padding: 16px 8px 16px 40px;
  border-top: #19761e 1px solid;
  position: relative;
}
.top-news__article:last-of-type {
  border-bottom: #19761e 1px solid;
}
.top-news__article::before {
  content: "▶";
  color: #19761e;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 820px) {
  .top-news__article {
    padding: 8px 8px 8px 40px;
  }
}
.top-news__date {
  font-size: 12px;
  white-space: nowrap;
  width: 64px;
}
.top-news__cat {
  color: #fff;
  background-color: #19761e;
  padding: 0 4px;
  font-size: 12px;
  width: 70px;
  text-align: center;
  border-radius: 3px;
  white-space: nowrap;
}
.top-news__link {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 820px) {
  .top-news__link {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.top-news__text {
  flex: 1;
}
@media (max-width: 820px) {
  .top-news__text {
    flex: none;
    width: 100%;
  }
}

/* =================================
スケジュール
 ================================= */
.top-schedule {
  background-color: #f2f2f2;
  position: relative;
}
.top-schedule__dec01 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 200px;
}
@media (max-width: 820px) {
  .top-schedule__dec01 {
    max-width: 120px;
  }
}
.top-schedule__dec02 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
}
@media (max-width: 820px) {
  .top-schedule__dec02 {
    max-width: 120px;
  }
}
.top-schedule__inner {
  padding: 80px 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .top-schedule__inner {
    padding: 40px 16px;
  }
}
.top-schedule__ttl {
  max-width: 240px;
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .top-schedule__ttl {
    max-width: 200px;
    margin: 0 auto 24px;
  }
}
.top-schedule__article {
  font-weight: bold;
  background-color: #fff;
  padding: 24px 60px;
  border-radius: 24px;
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0 0 24px;
}
@media (max-width: 820px) {
  .top-schedule__article {
    padding: 16px 16px;
    border-radius: 8px;
  }
}
.top-schedule__item-wrap {
  display: flex;
  gap: 60px;
  align-items: baseline;
  padding: 0 4px;
}
@media (max-width: 820px) {
  .top-schedule__item-wrap {
    gap: 24px;
  }
}
.top-schedule__item span {
  font-size: 26px;
  margin: 0 4px 0 0;
}
@media (max-width: 820px) {
  .top-schedule__item span {
    font-size: 22px;
  }
}
.top-schedule__schedule-ttl {
  border-top: #c0c0c0 1px solid;
  border-bottom: #c0c0c0 1px solid;
  display: flex;
  gap: 29px;
  margin: 12px 0 0;
  padding: 12px 4px;
  align-items: center;
}
@media (max-width: 820px) {
  .top-schedule__schedule-ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.top-schedule__schedule-ttl-right {
  font-size: 22px;
  color: #f15924;
}
.top-schedule__schedule-ttl-right span {
  margin: 0 8px 0 0;
}
@media (max-width: 820px) {
  .top-schedule__schedule-ttl-right {
    font-size: 20px;
  }
}
.top-schedule__schedule-ttl-left {
  white-space: nowrap;
}
.top-schedule__btn {
  display: block;
  max-width: 240px;
  margin: 80px auto 0;
}
@media (max-width: 820px) {
  .top-schedule__btn {
    margin: 40px auto 0;
  }
}
.top-schedule__pdf {
  display: block;
  text-align: center;
  width: 220px;
  padding: 8px;
  background-color: #fff;
  color: #f15924;
  border: #f15924 2px solid;
  margin: 40px auto 0;
}

/* =================================
footer
 ================================= */
.footer {
  background-color: #19761e;
  position: relative;
}
.footer__inner {
  padding: 40px 16px 24px;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .footer__inner {
    padding: 40px 16px 24px 40px;
  }
}
.footer__logo {
  max-width: 50px;
  margin: 0 0 20px;
}
.footer__content {
  display: flex;
}
@media (max-width: 820px) {
  .footer__content {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__left {
  padding: 8px 24px 16px 0;
  border-right: 1px solid #fff;
}
@media (max-width: 820px) {
  .footer__left {
    padding: 0;
    border-right: none;
  }
}
.footer__center {
  padding: 8px 24px;
  border-right: 1px solid #fff;
}
@media (max-width: 820px) {
  .footer__center {
    padding: 0;
    border-right: none;
  }
}
.footer__right {
  padding: 8px 0 0 24px;
}
@media (max-width: 820px) {
  .footer__right {
    padding: 0;
  }
}
.footer__text {
  color: #fff;
  font-size: 14px;
}
.footer__text--margin {
  margin: 0 0 -5px;
}
.footer__text a {
  color: #fff;
  font-size: 14px;
}
.footer__ttl {
  color: #fff;
  font-size: 17px;
}
.footer__bottom {
  color: #19761e;
  font-size: 12px;
  background-color: #fff;
  text-align: center;
  padding: 4px;
}
.footer__menu {
  display: block;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 820px) {
  .footer__menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.footer__top-btn {
  position: absolute;
  width: 60px;
  cursor: pointer;
  top: -24px;
  right: 40px;
  z-index: 2;
}
@media (max-width: 600px) {
  .footer__top-btn {
    right: 12px;
  }
}/*# sourceMappingURL=style.css.map */