@charset "UTF-8";
*,
html,
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.sub_top {
  max-width: 90%;
  width: 1400px;
  margin: 100px auto;
  margin-top: 200px;
}

.block {
  max-width: 90%;
  width: 1400px;
  margin: 100px auto;
}

.title_card {
  border: solid 3px black;
  display: inline-block;
  padding: 10px 50px 10px 50px;
  position: relative;
  background: white;
  margin-bottom: 20px;
}
.title_card h2 {
  margin: 0 auto;
  font-size: 30px;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.title_card::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: #f4ec35;
  border: solid 3px black;
  z-index: -1;
}

.sub_title h1 {
  font-size: 80px;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.sub_title h1 img {
  position: absolute;
  width: 100%;
  margin-top: 5px;
}
.sub_title p {
  line-height: 200%;
  font-size: 25px;
}

.sub_img {
  width: 48%;
}
.sub_img img {
  width: 95%;
}

.sub_top_flex {
  display: flex;
  align-items: flex-end;
  gap: 5%;
  margin-bottom: 0;
}
.sub_top_flex .sub_title {
  width: 50%;
}

footer {
  padding-bottom: 200px;
  background: #f0f0f0;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sub_top {
    margin-top: 100px;
  }
  .sub_title {
    display: block;
  }
  .sub_title h1 {
    font-size: 30px;
  }
  .sub_title p {
    font-size: 15px;
  }
  .sub_top_flex {
    display: block !important;
  }
  .sub_top_flex p {
    clear: none;
  }
  .float {
    position: static;
    float: right;
    width: 150px;
    margin: 0 0 16px 16px; /* 左と下に余白 */
  }
}
@media (max-width: 380px) {
  .sub_title h1 {
    font-size: 25px;
  }
}/*# sourceMappingURL=sub.css.map */