/* ==============================
  リセット / ベース
============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Kaisei Decol", serif;
  color: #333;
  background-color: #fff4f9;
}

/* リンク */
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  font-weight: bold;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary {
  background-color: #ff6680;
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.8;
}
.btn-secondary {
  background-color: #333;
  color: #fff;
}
.btn-secondary:hover {
  opacity: 0.8;
}

ol {
  list-style-position: inside; /* 数字を内側に */
  padding-left: 0; /* 左側の余白を削除 */
}

/* ==============================
  ヘッダー
============================== */
.header {
  background-color: #ffe8f3;
  text-align: center;
  padding: 1em 0;
}
.header-inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.header-title {
  font-size: x-large;
}
.logo {
  object-fit: cover;
  width: 100%;
  max-width: 200px;
}
.logo-title {
  font-size: small;
}

/* ==============================
  メインビジュアル
============================== */
.main-visual {
  margin-top: 2em;
}
.main-visual-inner {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.main-visual-title {
  width: 90%;
  margin: 2em auto;
  font-size: medium;
  font-weight: 800;
}
.main-visual-img {
  object-fit: cover;
  width: 100%;
  max-width: 200px;
}

/* ==============================
  セクション 共通
============================== */
.section {
  padding: 2em 0;
}
.section-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.section-inner-img {
  object-fit: cover;
  width: 100%;
  max-width: 400px;
  margin-bottom: 1em;
}
.section h2 {
  font-size: x-large;
  font-weight: bold;
  margin-bottom: 1em;
  border-left: 4px solid #ff6680;
  padding-left: 0.5em;
}

/* ==============================
  概要テーブル
============================== */
.section-inner-button-area {
  align-items: center;
  text-align: center;
  margin-top: 1em;
}
.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e05b67;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.section-button:hover {
  opacity: 0.5;
}
.section-button-finger {
  font-size: x-large;
  margin-right: 12px;
}
.info-item {
  display: grid;
  grid-template-columns: 80px 20px auto;
  gap: 10px;
  align-items: start;
}
.label {
  text-align: left;
  font-weight: bold;
  white-space: nowrap;
}
.separator {
  text-align: center;
  font-weight: bold;
}
.content {
  text-align: left;
}
.map-container {
  margin-top: 1em;
  max-width: 400px;
}

/* ==============================
  フッター
============================== */
.footer {
  background-color: #ffe8f3;
  text-align: center;
  padding: 1em 0;
  margin-top: 2em;
}
.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner small {
  font-size: 0.8rem;
}
.footer-inner-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 1em;
}
.footer-inner-nav-inner {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.footer-inner-nav-link {
  margin-bottom: 0.5em;
}

/* ==============================
  よくある質問
============================== */
.q-and-a-inner:not(:last-child) {
  padding-bottom: 2em;
  border-bottom: solid 0.5px #d3d3d3;
  margin-bottom: 2em;
}
.q-inner {
  display: flex;
}
.a-inner {
  display: flex;
  margin-top: 1em;
}
.icon {
  flex-shrink: 0;
  margin-right: 1em;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.question {
  background-color: #ed487e;
}
.answer {
  background-color: #6599b7;
}

/* ==============================
  プライバシーポリシー
============================== */
.table-of-content-inner {
  padding: 1.5em;
  border: solid 0.5px #d3d3d3;
}
.table-of-content-title {
  text-align: center;
  margin-bottom: 1em;
}
li a:hover {
  text-decoration: underline;
}

/* ==============================
  応募フォーム
============================== */
.apply-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.apply-img {
  object-fit: cover;
  width: 80%;
  max-width: 400px;
}
