@charset "UTF-8";
/* 全体コンテナ */
.registration-section {
  padding: 60px 20px;
  background-color: #f0f8ff;
  line-height: 1.8;
  text-align: center;
    margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.registration-title {
  color: #181a31;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.registration-lead {
  font-size: 17px;
  margin-bottom: 40px;
}

.registration-lead span {
  color: #e67e22;
  font-weight: bold;
}

/* 白背景のカード部分 */
.registration-box {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  border: rgba(255,255,255,0.5) solid 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.registration-box-title {
  background-color: #181a31;
  color: #fff;
  padding: 15px;
  font-size: 30px;
  letter-spacing: 0.1em;
  margin: 0;
  border-bottom: 4px double #fff; /* 二重線を再現 */
}

.registration-content {
  padding: 40px 30px;
}

/* 「必ずお読みください」のライン装飾 */
.registration-sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 24px;
}

.registration-sub-title::before,
.registration-sub-title::after {
  content: "";
  flex-grow: 1 !important;
  height: 1px !important;
  background-color: #5c5c5c !important;
  max-width: 100px !important;
  margin: 0 15px !important;
}

.registration-text {
  font-size: 16px;
  margin-bottom: 30px;
  display: block;
  line-height: 1.85;
}

.registration-btn-area {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.registration-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 70px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 21px;
  transition: opacity 0.3s;
}

.registration-btn:hover {
  opacity: 0.8;
  color:#fff !important;
}

.registration-btn-download {
  background-color: #e67e22;
}

.registration-btn-online {
  background-color: #f1c40f;
}

.registration-btn-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.registration-btn-icon-download {
  background-image: url('../images/guide/download.svg');
}

.registration-btn-icon-online {
  background-image: url('../images/guide/mail.svg'); 
  width: 27px;
  height: 27px;
}
/* 下部の注釈 */
.registration-note {
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.85;
  display: block;
}

/* レスポンシブ対応（スマホサイズ） */
@media (max-width: 767px) {
.registration-btn-area {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
 .registration-lead{
    text-align: left;
    font-size: 17px;
    line-height: 2.1;
  }
  
  .registration-btn {
    width: 100%;
    max-width: 320px;
    height: 60px;
    font-size: 16px;
  }
  
  .registration-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .registration-section {
    padding: 40px 15px;
  }

  .registration-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .registration-lead {
    margin-bottom: 15px;
  }

  .registration-box {
    border-width: 4px;
  }

  .registration-box-title {
    font-size: 24px;
    padding: 12px;
  }

  .registration-content {
    padding: 30px 15px;
  }

  .registration-sub-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .registration-sub-title::before,
  .registration-sub-title::after {
    margin: 0 10px !important;
  }

  .registration-text {
    font-size: 15px;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.85;
  }

  .registration-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .registration-note {
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
    margin-bottom: 0;
  }
}

.payment-section {
  padding: 60px 20px;
  background-color: #fff;
  line-height: 1.8;
  text-align: center;
    margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.payment-title {
  color: #1a237e;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.payment-box {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.payment-box-title {
  background-color: #111;
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
  text-align: left;
  margin: 0;
  border-bottom: 2px solid #fff;
  outline: 1px solid #111;
}

.payment-content {
  padding: 40px;
  text-align: left;
}

.payment-item {
  margin-bottom: 40px;
}

.payment-item:last-child {
  margin-bottom: 0;
}

.payment-item-label {
  font-size: 19px;
  font-weight: bold;
  border-bottom: 3px solid #1a237e;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.payment-item-body {
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.payment-item-text {
  font-size: 16px;
  margin: 0;
}

.payment-card-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .payment-section {
    padding: 40px 15px;
  }

  .payment-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .payment-box-title {
    font-size: 16px;
    padding: 12px 15px;
  }

  .payment-content {
    padding: 25px 15px;
  }

  .payment-item-label {
    font-size: 18px;
  }

  .payment-item-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }

  .payment-item-text {
    font-size: 15px;
  }
}

.cancel-section {
  padding: 60px 20px;
  background-color: #F4F4F4;
  line-height: 1.8;
  text-align: center;
    margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.cancel-title {
  color: #1a237e;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.cancel-table-wrapper {
  max-width:1100px;
  margin: 0 auto 40px;
  background-color: #fff;
  border: 1px solid #eee;
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
}

.cancel-table th,
.cancel-table td {
  padding: 15px 20px;
  border: 1px solid #eee;
  font-size: 16px;
  text-align: center;
}

.cancel-table th {
  background-color: #f9f9f9;
  font-weight: bold;
  width: 50%;
  text-align: center;
}

.cancel-info-box {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #1a237e;
  padding: 30px;
  text-align: left;
}

.cancel-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cancel-info-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 5px;
}

.cancel-info-list li:last-child {
  margin-bottom: 0;
}

.cancel-info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .cancel-section {
    padding: 40px 15px;
  }

  .cancel-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .cancel-table th,
  .cancel-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .cancel-table tr {
    border-bottom: 1px solid #eee;
  }

  .cancel-table tr:last-child {
    border-bottom: none;
  }

  .cancel-table th {
    background-color: #f1f1f1;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 15px;
  }

  .cancel-table td {
    padding: 10px 15px 15px;
    font-size: 15px;
  }

  .cancel-info-box {
    padding: 20px 15px;
  }

  .cancel-info-list li {
    font-size: 14px;
  }
}

.faq-section {
  padding:40px 20px;
  background-color: #F4F4F4;
    margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding:20px 1em;
  background: #fff;
}

.faq-main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a237e;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 20px;
}

.faq-main-title::before,
.faq-main-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #1a237e;
  max-width: 150px;
  margin: 0 20px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2px solid #b71c1c;
  background-color: #fff;
}

.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-head-text {
  color: #b71c1c;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  text-align: left;
}

.faq-head-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #b71c1c;
}

/* ＋－アイコンの作成 */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #d32f2f;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

/* 横線 */
.faq-icon::before {
  width: 100%;
  height: 1px;
}

/* 縦線 */
.faq-icon::after {
  width: 1px;
  height: 100%;
}

/* アクティブ時（マイナス） */
.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  display: none;
}

.faq-body-inner {
  padding: 0 25px 25px 40px;
  text-align: left;
  font-size: 16px;
  line-height: 1.85;
}

.faq-body-inner p{
    margin-bottom: 0;
  }

@media (max-width: 767px) {
  .faq-main-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .faq-main-title::before,
  .faq-main-title::after {
    max-width: 40px;
    margin: 0 10px;
  }

  .faq-head {
    padding: 15px;
  }

  .faq-head-text {
    font-size: 17px;
  }

  .faq-body-inner {
    padding: 0 15px 20px 30px;
    font-size: 15px;
  }
}