@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-weight: unset;
  font-size: inherit;
}

ol, ul {
  list-style: none;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input[type=submit],
input[type=button] {
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: 0;
  outline: none;
  border: none;
}

textarea {
  resize: vertical;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input {
  line-height: normal;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button {
  overflow: visible;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  border: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: auto; /* スムーズスクロールなどを一旦リセット */
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

.qa-list {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}

/* ===== 質問（枠あり） ===== */
.qa-question {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 18px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.qa-question:hover {
  border-color: #bbbbbb;
}

/* ===== 回答（枠なし） ===== */
.qa-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px 4px;
}

/* ===== アイコン共通 ===== */
.qa-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qa-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.qa-icon-q {
  background: #d9d9d9; /* Q：紺色の丸背景。画像側に色がある場合は不要 */
}

.qa-icon-a {
  background: #e8607a; /* A：ピンクの丸背景。画像側に色がある場合は不要 */
}

/* ===== テキスト ===== */
.qa-text {
  flex: 1 1 auto;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.qa-question .qa-text {
  font-weight: 700;
}

/* ===== 開閉アイコン（＋／−） ===== */
.qa-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.qa-toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.qa-toggle-icon::before,
.qa-toggle-icon::after {
  content: "";
  position: absolute;
  background: #1e88e5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.qa-toggle-icon::before {
  width: 18px;
  height: 2px;
}

.qa-toggle-icon::after {
  width: 2px;
  height: 18px;
}

/* ===== 開閉アニメーション本体 ===== */
.qa-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.qa-answer-inner {
  overflow: hidden;
}

/* チェックが入ったら開く */
.qa-toggle:checked ~ .qa-answer-wrap {
  grid-template-rows: 1fr;
}

.qa-toggle:checked ~ .qa-question .qa-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* 開いている質問の枠を強調したい場合（任意） */
.qa-toggle:checked ~ .qa-question {
  border-color: #0d3b66;
}

/* ===== レスポンシブ（750px以下） ===== */
@media (max-width: 750px) {
  .qa-list {
    gap: 12px;
  }
  .qa-list_ttl {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .qa-question {
    padding: 14px 14px;
    gap: 12px;
  }
  .qa-answer {
    padding: 12px 14px 2px;
    gap: 12px;
  }
  .qa-icon {
    width: 28px;
    height: 28px;
  }
  .qa-text {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .qa-toggle-icon {
    width: 15px;
    height: 15px;
    margin-top: 4px;
  }
  .qa-toggle-icon::before {
    width: 15px;
  }
  .qa-toggle-icon::after {
    height: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .qa-answer-wrap,
  .qa-toggle-icon::before,
  .qa-toggle-icon::after {
    transition: none;
  }
}
.option_title {
  background-color: #EAF4FC;
  margin-bottom: 5px;
}

.caution .content p {
  padding: 16px 0;
}

.wrap-12 {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap-12 {
    width: 90%;
  }
}

.wrap-8 {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap-8 {
    width: 90%;
  }
}

.btn {
  cursor: pointer;
}

.btn:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.mv {
  position: relative;
  background-image: url("./../../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 50px 0 20px;
  }
}
.mv .logo {
  width: 210px;
  position: absolute;
  left: 5%;
  top: 2.5%;
}
@media screen and (max-width: 768px) {
  .mv .logo {
    width: 120px;
    top: 3%;
    left: 3%;
  }
}
.mv .logo a {
  display: block;
}
.mv_txt {
  max-width: 900px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv_txt {
    width: 100%;
  }
}

.date .wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .date .wrap {
    max-width: 280px;
  }
}
.date {
  background-color: #023894;
  text-align: center;
}
.date img {
  max-width: 650px;
  margin: 0 auto;
  padding: 15px 0;
}

.details {
  padding: 50px 0 100px;
  background-color: #FFFDE2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .details {
    padding: 30px 0px 50px;
  }
}
.details .wrap {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .details .wrap {
    width: 100%;
  }
}
.details .conetnts_01 {
  position: relative;
  margin-bottom: 30px;
}
.details .btn_cv {
  position: absolute;
  display: block;
  width: 70%;
  bottom: -2%; /* 親の上がら 50% の位置へ */
  left: 50%; /* 親の左から 50% の位置へ */
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .details .btn_cv {
    width: 90%;
    bottom: -2%;
  }
}

.conetnts_01 {
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .conetnts_01 {
    aspect-ratio: 2/5;
  }
}

.conetnts_02 {
  aspect-ratio: 105/47;
}
@media screen and (max-width: 768px) {
  .conetnts_02 {
    aspect-ratio: 2/5;
  }
}

.tell {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .tell {
    padding-bottom: 50px;
  }
}
.tell .cv_ttl {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .tell .cv_ttl {
    margin-bottom: 10px;
  }
}
.tell .btn-area {
  max-width: 600px;
  margin: 0 auto;
  cursor: pointer;
}
.tell_txt {
  text-align: center;
}

.soudan {
  background-color: #F5F5F5;
  padding: 50px 20px;
  text-align: center;
  margin: 0 auto;
}
.soudan_ttl {
  font-size: 2.4rem;
  margin-bottom: 5px;
}
.soudan_txt {
  margin-bottom: 10px;
}
.soudan .btn {
  display: block;
  width: 300px;
  margin: 0 auto;
}
.soudan .btn_search {
  margin-bottom: 40px;
}

.faq {
  background-color: #EAF6FD;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
.faq-contents {
  margin-bottom: 40px;
}
.faq-ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq-ttl {
    font-size: 2.4rem;
  }
}
.faq_btn {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq_btn {
    width: 100%;
    margin-top: 20px;
  }
}

.fq-title {
  border-bottom: 1px solid #E5E5E5;
}

.caution {
  padding: 100px 0 50px;
}
@media screen and (max-width: 768px) {
  .caution {
    padding: 50px 0;
  }
}
.caution-ttl {
  text-align: center;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .caution-ttl {
    font-size: 1.8rem;
  }
}
.caution .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .caution .txt {
    font-size: 1.6rem;
  }
}

.footer .wrap {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
.footer {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  width: 100%;
  background-color: #003894;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 75px;
  }
}
.footer_contents {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer_contents {
    font-size: 1.2rem;
    margin-bottom: 20px;
    flex-direction: column; /* 縦並びに変更 */
    gap: 10px;
  }
}
.footer .footer_txt {
  flex: 1;
}
.footer .page-top {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .footer .page-top {
    font-size: 1.6rem;
    padding: 10px;
  }
}
.footer .page-top .icon {
  margin-right: 10px;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .footer .page-top .icon {
    font-size: 1.8rem;
  }
}
.footer .wrap {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer .wrap {
    padding-top: 50px;
  }
}
.footer_txt {
  margin-bottom: 30px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer_txt {
    font-size: 1.4rem;
    margin-bottom: 20px;
    flex-direction: column; /* 縦並びに変更 */
    gap: 10px;
  }
}
.footer .footer_contents_2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer_contents_2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.footer .logo {
  margin-top: 50px;
}
.footer .logo-img {
  display: block;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.footer .copy {
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .footer .copy {
    text-align: center;
    font-size: 1.2rem;
  }
}

:root {
  --bar-bg:#dcebf8;
  --text-color:#333333;
  --icon-color:#333333;
  --gap:24px;
  --max-w-pc:900px;
}

* {
  box-sizing: border-box;
}

.accordion {
  max-width: var(--max-w-pc);
  margin: 0 auto;
  padding: 100px 0;
}

.accordion-item {
  margin-bottom: var(--gap);
  scroll-margin-top: 24px; /* :target ジャンプ時にヘッダーで隠れないよう余白確保 */
}

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

/* 見出し部分（クリックで開閉） */
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bar-bg);
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.acc-header:hover {
  filter: brightness(0.98);
}

/* 開閉トリガー用チェックボックス（非表示） */
.acc-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* +/− アイコン */
.acc-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

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

.acc-icon::before {
  width: 20px;
  height: 3px;
}

.acc-icon::after {
  width: 3px;
  height: 20px;
}

/* 開閉アニメーション本体（grid-template-rowsで高さアニメーション） */
.acc-content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.acc-content-inner {
  overflow: hidden;
}

.acc-content {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--text-color);
  border-top: none;
}

/* チェックが入ったら開く */
.acc-toggle:checked ~ .acc-content-wrap {
  grid-template-rows: 1fr;
}

.acc-toggle:checked ~ .acc-header .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.acc-toggle:checked ~ .acc-header .acc-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* ===== レスポンシブ（750px以下はSP扱い / 幅90%） ===== */
@media (max-width: 750px) {
  .accordion {
    max-width: none;
    width: 90%;
    padding: 50px 0;
  }
  .acc-header {
    padding: 16px 18px;
    font-size: 16px;
    gap: 10px;
  }
  .acc-content {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .acc-icon {
    width: 16px;
    height: 16px;
  }
  .acc-icon::before {
    width: 16px;
    height: 2px;
  }
  .acc-icon::after {
    width: 2px;
    height: 16px;
  }
  :root {
    --gap:16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .acc-content-wrap,
  .acc-icon::before,
  .acc-icon::after {
    transition: none;
  }
}
.camp-notes {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333333;
}

.spac {
  padding-top: 20px;
}

.cn-heading {
  font-weight: 700;
  font-size: 16px;
  margin: 20px 0 10px;
}

.cn-subheading {
  font-weight: 700;
  margin: 20px 0 6px;
}

.cn-text {
  margin: 0 0 4px;
}

/* ===== 表（横スクロール対応） ===== */
.cn-img-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  margin: 16px 0 24px;
  width: 100%;
}

.cn-img {
  display: block;
  max-width: none;
  width: 640px; /* 画像の実サイズに合わせて調整 */
  height: auto;
}

.cn-yes {
  color: #0056a3;
}

.cn-no {
  color: #c00000;
}

/* ===== レスポンシブ（750px以下） ===== */
@media (max-width: 750px) {
  .camp-notes {
    font-size: 1.4rem;
  }
  .cn-heading {
    font-size: 1.6rem;
  }
  /* 表はサイズを変えず横スクロールさせるため、
     ここでは cn-table の min-width / font-size を縮小しない */
}/*# sourceMappingURL=styles.css.map */