@charset "utf-8";

/* ================================
 メインビジュアル
================================ */
.main-visual-container {
  position: relative;
  width: 100%;
  display: block;
}

.main-visual-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 1;
  pointer-events: none;
}

.main-visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.main-visual-image.pc {
  width: 100%;
  margin: 0 auto;
}

.main-visual-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  box-sizing: border-box;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  padding: 10px 5px;
  text-align: center;
  overflow: hidden;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  line-height: 1.2;
  z-index: 2;
}

.main-visual-text p {
  margin: 0;
  white-space: inherit;
  overflow: inherit;
  text-align: center;
  font-weight: bold;
}

.visual-title {
  font-size: 1.1em;
  line-height: 2.0em;
}

.visual-subtitle {
  font-size: 1.3em;
  line-height: 1.6;
}

/* ================================
 レスポンシブ対応
================================ */

/* スマホ用のスタイル上書き対策 */
@media (max-width: 767px) {
  .main-visual-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px) !important;
    background-size: 3px 3px !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
}

.break-smp {
  display: none;
}
@media (max-width: 767px) {
  .break-smp {
    display: block;
  }
}

.break-pc {
  display: none;
}
@media (min-width: 768px) {
  .break-pc {
    display: block;
  }
}

/* ================================
 コンテンツエリア
================================ */
.column {
  font-size: 105%;
  line-height: 1.6em;
}

.column p {
  max-width: 936px;
  margin: 0.6em auto 0.3em;
}

ul.point_list {
  max-width: 936px;
  margin: 0.6em auto 0.3em;
  padding-left: 0;
  list-style-type: none;
}

ul.point_list li {
  text-indent: -0.9em;
  padding-left: 1.2em;
  text-align: left !important;
  margin: 0.4em auto;
}

ul.point_list li:before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 0.5em;
  height: 0.5em;
  background: #bbb;
  border-radius: 50%;
  margin-right: 4px;
  margin-bottom: 4px;
}

.column h3 {
  margin: 3em 0 1em;
  font-weight: bold;
  font-size: 120%;
  color: #1050af;
}

.column h4,
.column h5 {
  margin: 2em 0 1em;
  font-weight: bold;
  font-size: 115%;
}

@media only screen and (max-width: 979px) {
  .column {
    font-size: 100%;
  }
}