#content {
  padding: 160px 0 81px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #content {
    padding: 120px 20px 60px;
  }
}

.step-bar {
  display: flex;
  margin: 0 auto 72px;
  justify-content: center;
  width: 100%;
  max-width: 680px;
  background-color: transparent;
  overflow: hidden;
}

.step-bar .fcform__progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #DCDDE1;
  font-size: 16px;
}

.step-bar .fcform__progress-step:nth-child(1) {
  clip-path: polygon(100% 0%, 90% 100%, 0% 100%, 0% 0%);
}

.step-bar .fcform__progress-step:nth-child(2) {
  clip-path: polygon(100% 0%, 90% 100%, 0% 100%, 10% 0%);
  margin: 0 -15px;
}

.step-bar .fcform__progress-step:nth-child(3) {
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 10% 0%);
}

.step-bar .fcform__progress-step .step-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.step-bar .fcform__progress-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #BEBFC6;
  color: #DCDDE1;
  font-size: 10px;
  font-weight: bold;
}

.step-bar .fcform__progress-step .step-text {
  color: #BEBFC6;
  font-size: 16px;
  font-family: "Zen Kaku Gothic Antique Bold";
  letter-spacing: 0.05em;
}

.step-bar .fcform__progress-step.active {
  background-color: #32A38A;
}

.step-bar .fcform__progress-step.active .step-num {
  background-color: #ffffff;
  color: #32A38A;
}

.step-bar .fcform__progress-step.active .step-text {
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .step-bar {
    margin: 0 auto 23px;
  }

  .step-bar .fcform__progress-step {
    height: 40px;
  }

  .step-bar .fcform__progress-step:nth-child(2) {
    margin: 0 -6px;
  }
}

#mail {
  max-width: 800px;
  margin: 0 auto;
}

#mail .row {
  padding: 10px 0;
}

#mail .row .caption {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic Antique Bold";
}

#mail .row .caption span.mark-require {
  margin-left: 10px;
  font-size: 10px;
  background: #D40000;
  border-radius: 20px;
  color: #fff;
  padding: 2px 7px 3px;
  line-height: 1;
}

#mail .row .input textarea,
#mail .row .input input {
  border: 1px solid #EAEBEE;
  background: #fff;
  width: 100%;
  padding: 10px;
}

#mail .row .input textarea {
  min-height: 108px;
}

#mail .form-button {
  text-align: center;
  margin-top: 83px;
}

#mail .form-button button[type=submit] {
  padding: 33px 50px;
  color: #FEFEFE;
  background: #32A38A;
  border: none;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  font-family: "Zen Kaku Gothic Antique Bold";
  width: 400px;
}

#mail .form-button button[type=submit]::before {
  content: "";
  background: url("../img/index/arrow03.webp") no-repeat center;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  filter: brightness(0) invert(1);
}

#mail .form-button button[type=submit]:hover {
  opacity: 0.8;
}

#mail .confirm-main .row .caption {
  color: var(--cl-yellow);
}

#mail .form-button .submit-confirm button[type=submit] {
  width: 285px;
}


#mail .submit-confirm {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
}

#mail .submit-confirm .form-back,
#mail .submit-confirm .form-button button[type=submit] {
  padding: 33px 50px;
  color: #FEFEFE;
  background: #32A38A;
  border: none;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  font-family: "Zen Kaku Gothic Antique Bold";
  width: 280px;
}

#mail .submit-confirm .form-back::before,
#mail .submit-confirm .form-button button[type=submit]::before {
  content: "";
  background: url("../img/index/arrow03.webp") no-repeat center;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  filter: brightness(0) invert(1);
}

#mail .submit-confirm .form-back:hover,
#mail .submit-confirm .form-button button[type=submit]:hover {
  opacity: 0.8;
}

#mail .submit-confirm .form-back {
  background: #867D7B;
}

#mail .submit-confirm .form-back::before {
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
  #mail .row {
    padding: 8px 0;
  }

  #mail .row .caption span.mark-require {
    margin-left: 5px;
    padding: 0px 5px 3px;
  }

  #mail .row .input textarea,
  #mail .row .input input {
    padding: 10px;
  }

  #mail .row .input textarea {
    min-height: 120px;
  }

  #mail .form-button {
    margin-top: 19px;
  }

  #mail .form-button button[type=submit] {
    padding: 18px 0px;
    font-size: 14px;
    width: 170px;
  }


  #mail .form-button .submit-confirm button[type=submit] {
    width: 155px;
  }

  #mail .form-button button[type=submit]::before {
    width: 14px;
    height: 14px;
    right: 20px;
  }

  #mail .submit-confirm {
    gap: 12px;
  }

  #mail .submit-confirm .form-back,
  #mail .submit-confirm .form-button button[type=submit] {
    padding: 18px 0px;
    font-size: 14px;
    width: 152px;
  }

  #mail .submit-confirm .form-back::before,
  #mail .submit-confirm .form-button button[type=submit]::before {
    width: 14px;
    height: 14px;
    right: 10px;
  }

  #mail .submit-confirm .form-back::before {
    right: auto;
    left: 10px;
  }
}

.fc-thanks {
  display: none;
}

.thanks-container {
  text-align: center;
  padding-top: 120px;
}

.thanks-container .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
}

.thanks-container .thanks-title {
  font-size: 32px;
  font-family: "Zen Kaku Gothic Antique Bold";
  line-height: 1.6;
  letter-spacing: 2px;
  margin-bottom: 19px;
}

.thanks-container .thanks-message {
  margin-bottom: 105px;
  color: #5E5755;
}

.thanks-button {
  padding: 33px 0px;
  color: #FEFEFE;
  background: #32A38A;
  border: none;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  font-family: "Zen Kaku Gothic Antique Bold";
  width: 400px;
  margin: 0 auto;
}

.thanks-button::before {
  content: "";
  background: url("../img/index/arrow03.webp") no-repeat center;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  filter: brightness(0) invert(1);
}

.thanks-button a {
  text-decoration: none;
}

.thanks-button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .thanks-container {

    padding-top: 50px;
  }

  .thanks-container .icon {
    width: 64px;
    height: 64px;
  }

  .thanks-container .thanks-title {
    font-size: 24px;
    line-height: 160%;
  }

  .thanks-container .thanks-message {
    margin-bottom: 60px;
    line-height: 160%;
  }

  .thanks-button {
    padding: 13px 0px;
    font-size: 14px;
    width: 190px;
  }

  .thanks-button::before {
    width: 14px;
    height: 14px;
    right: 9px;
  }
}

.category-name {
  display: flex;
  gap: 3px;
  margin-bottom: 36px;
  justify-content: center;
}

.category-name .category-item {
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  font-size: 16px;
  background: #DCDDE1;
  color: #BEBFC6;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique Bold";
}

.category-name .category-item:hover,
.category-name .category-item.active {
  background: var(--cl-yellow);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .category-name {
    gap: 2px;
    margin-bottom: 30px;
  }

  .category-name .category-item {
    padding: 7px 8px;
    font-size: 12px;
  }
}

#categoryList {
  margin-bottom: 36px;
}

#categoryList dl {
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid #DCDDE1;
}

#categoryList dl dt {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #888888;
  font-weight: normal;
  margin-bottom: 10px;
}

#categoryList dl dt .newsLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique Bold";
  border-radius: 20px;
  background-color: #F9F4E1;
  color: var(--cl-yellow);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}

#categoryList dl dt .newsLabel:hover {
  background: var(--cl-yellow);
  color: #fff;
}

#categoryList dl dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

#categoryList dl dd a {
  text-decoration: none;
  transition: color 0.2s ease;
}

#categoryList dl dd a:hover {
  text-decoration: underline;
}

#categoryList dl:last-child {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  #categoryList {
    padding: 0;
  }

  #categoryList dl {
    padding: 16px 0;
    margin: 0;
  }

  #categoryList dl dt {
    display: block;
    font-size: 14px;
  }

  #categoryList dl dt .newsLabel {
    font-size: 10px;
  }

  #categoryList dl dd {
    font-size: 16px;
  }
}

.pagination ul {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.pagination ul li {
  line-height: 1;
}

.pagination ul li a {
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  font-size: 10px;
  background: #BEBFC6;
  font-family: "Zen Kaku Gothic Antique Bold";
  color: #DCDDE1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #BEBFC6;
}

.pagination ul li a:hover,
.pagination ul li a.active {
  background: var(--cl-yellow);
  color: #fff;
  text-decoration: none;
  border-color: var(--cl-yellow);
}

.pagination ul li.selected a {
  background: var(--cl-yellow);
  color: #fff;
  text-decoration: none;
  border-color: var(--cl-yellow);
}

.pagination ul li.previous a,
.pagination ul li.next a {
  background: none;
  border: 1px solid var(--cl-yellow);
  color: var(--cl-yellow);
}

.article-notice {
  max-width: 713px;
  margin: 0 auto;
}

.article-notice__header {
  margin-bottom: 17px;
}

.article-notice__meta {
  color: #867D7B;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 26px;
  font-size: 14px;
}

.article-notice__meta .newsLabel {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 20px;
  background-color: #F9F4E1;
  color: var(--cl-yellow);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}

.article-notice__badge {
  background-color: transparent;
  border: 1px solid #f39c12;
  color: #f39c12;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  line-height: 1.2;
}

.article-notice__title {
  font-size: 32px;
  font-family: "Zen Kaku Gothic Antique Bold";
  line-height: 160%;
  margin-bottom: 0;
}

.article-notice__lead {
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 23px;
  text-align: justify;
}

.article-notice__banner {
  margin-bottom: 23px;
}

.article-notice__content {
  border-top: 1px solid #DCDDE1;
  padding-top: 28px;
}

.article-notice__section {
  margin-bottom: 25px;
  padding-bottom: 19px;
  border-bottom: 1px dashed #DCDDE1;
}

.article-notice__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-notice__section-title {
  font-size: 20px;
  font-family: "Zen Kaku Gothic Antique Bold";
  margin-bottom: 7px;
}

.article-notice__text {
  margin-bottom: 0;
}

.article-notice__footer {
  text-align: center;
  border-top: 1px solid #DCDDE1;
  padding-top: 41px;
  margin-top: 74px;
}

.article-notice__btn-back {
  display: inline-block;
  padding: 20px 48px;
  border: 1px solid var(--cl-yellow);
  color: #231815;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Zen Kaku Gothic Antique Bold";
  letter-spacing: 0px;
}

.article-notice__btn-back::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background: url("../img/index/arrow04.webp") center center/100% no-repeat;
}

.article-notice__btn-back:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .article-notice {
    padding: 0px 0px;
  }

  .article-notice__meta {
    margin-bottom: 14px;
  }

  .article-notice__title {
    font-size: 28px;
    margin-bottom: 13px;
  }

  .article-notice__lead {
    font-size: 15px;
    line-height: 160%;
    margin-bottom: 17px;
  }

  .article-notice__banner {
    margin-bottom: 21px;
  }

  .article-notice__content {
    padding-top: 19px;
  }

  .article-notice__section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .article-notice__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .article-notice__section-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .article-notice__text {
    margin-bottom: 8px;
  }

  .article-notice__footer {
    padding-top: 50px;
    margin-top: 30px;
  }

  .article-notice__btn-back {
    padding: 12px 40px;
    font-size: 16px;
  }

  .article-notice__btn-back::before {
    width: 14px;
    height: 14px;
  }
}

.breadcrumb {
  width: 100%;
  max-width: 713px;
  margin: 0 auto;
  border-bottom: 1px solid #DCDDE1;
  padding-bottom: 14px;
}

.breadcrumb ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 0px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #231815;
  font-size: 12px;
}

.breadcrumb li+li::before {
  content: "/";
  margin: 0 10px;
  color: #f39c12;
  font-size: 12px;
}

.breadcrumb li a {
  color: #867D7B;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb li a:hover {
  color: #f39c12;
}

@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 10px;
  }

  .breadcrumb li+li::before {
    margin: 0 4px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #content {
    padding-left: 20px;
    padding-right: 20px;
  }
}