@charset "UTF-8";
/*===================================
 *※※※※※※※※※※※※※※※※※※※※※
 *このファイルはSassで管理されているので
 *cssを直接編集しないでください。
 *※※※※※※※※※※※※※※※※※※※※※
 *===================================*/
h1 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

.hp_animation_delay1 {
  animation-delay: 0.15s;
}

.hp_animation_delay2 {
  animation-delay: 0.3s;
}

.hp_animation_delay3 {
  animation-delay: 0.45s;
}

.hp_animation_delay4 {
  animation-delay: 0.6s;
}

.hp_animation_delay5 {
  animation-delay: 0.75s;
}

.hp_animation_delay6 {
  animation-delay: 0.9s;
}

.js_fade__bottom {
  opacity: 0;
  transition: all 1s;
  transform: translateY(50px);
}

.js_fade__bottom.is_active {
  animation-name: fade_bottom;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.js_fade__left {
  opacity: 0;
  transition: all 1s;
  transform: translateY(50px);
}

.js_fade__left.is_active {
  animation-name: fade_left;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.js_fade__right {
  opacity: 0;
  transition: all 1s;
  transform: translateY(50px);
}

.js_fade__right.is_active {
  animation-name: fade_right;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade_bottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes shine_white_btn {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes marker {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
* {
  line-height: 1.75;
  outline: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .hp_d_md_none {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .hp_d_lg_none {
    display: none !important;
  }
}

.hp_c_main {
  color: #37BEF0;
}

.hp_bgGradient__main {
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  color: white;
  padding: 5px 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #0B2B47;
  font-size: 16px;
  position: relative;
  scroll-behavior: smooth;
}

main {
  width: 100%;
}

img {
  max-width: 100%;
}

.ly_wrap {
  width: 100%;
  overflow: clip;
}

.el_btn_form {
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}
.el_btn_form__primary {
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  color: #F9FAFB;
  padding: 12px 30px;
  box-shadow: 0 0 6px #37bef0;
  border: 1px solid #37BEF0;
}
.el_btn_form__primary:hover {
  box-shadow: 0 0 10px #eedd22;
  color: #F9FAFB;
  text-decoration: none;
}
.el_btn_form__white {
  background-color: #F9FAFB;
  border: 1px solid #37BEF0;
  text-align: center;
}
.el_btn_form__white a {
  overflow: hidden;
  position: relative;
  display: block;
}
.el_btn_form__white a::after {
  animation: 2s 0s shine_white_btn linear infinite;
  background: linear-gradient(to right, rgba(238, 221, 34, 0) 25%, rgba(238, 221, 34, 0.6) 50%, rgba(238, 221, 34, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
}

.el_section_title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .el_section_title {
    margin-bottom: 70px;
    font-size: 44px;
  }
}
.el_section_title::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 20px;
  background-color: #064A96;
}
@media screen and (min-width: 768px) {
  .el_section_title::after {
    width: 70px;
    height: 6px;
  }
}
.el_section_title img {
  vertical-align: text-bottom;
  display: inline-block;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .el_section_title img {
    width: 312px;
  }
}

.un_text_gradient {
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  border-radius: 50px;
  display: block;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.un_text_gradient:hover {
  text-decoration: none;
  color: transparent;
}

.ly_header {
  background-color: #F9FAFB;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(6, 74, 150, 0.4);
}

.bl_header_inner {
  max-width: 1400px;
  width: auto;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bl_header_logo {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .bl_header_logo {
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.bl_header_logo img {
  transition: all 0.3s;
  width: clamp(140px, 26.0416666667vw, 210px);
}
@media screen and (min-width: 992px) {
  .bl_header_logo img {
    display: block;
  }
}
.bl_header_logo:hover img {
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .bl_header_logo_wrap {
    display: flex;
    align-items: flex-end;
  }
}
.bl_header_logo_text {
  margin-bottom: 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_header_logo_text {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .bl_header_logo_text {
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .bl_header_logo_text::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #231815;
    transform: translateY(-2px);
  }
}
.bl_header_logo_text img {
  width: 116px;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .bl_header_logo_text img {
    vertical-align: text-bottom;
    width: 196px;
  }
}

.ly_header .el_btn_form {
  font-size: clamp(14px, 4.2666666667vw, 16px);
  padding: 12px 15px;
}
@media screen and (min-width: 992px) {
  .ly_header .el_btn_form {
    padding: 12px 30px;
  }
}

.bl_nav {
  display: flex;
  align-items: center;
}
.bl_nav_list {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_nav_list {
    display: flex;
    align-items: center;
    margin-right: 40px;
    margin-top: 0;
  }
}
.bl_nav_item {
  margin-left: 40px;
  font-size: 16px;
  transition: all 0.3s;
}
.bl_nav_item:first-child {
  margin-left: 0;
}
.bl_nav_item a {
  color: #0B2B47;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.bl_nav_item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 90%;
  height: 2px;
  border-radius: 5px;
  background-color: #37BEF0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.3s;
}
.bl_nav_item a:hover::after {
  transform: scaleX(1);
}

.bl_hero {
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  color: #F9FAFB;
  position: relative;
  min-height: 110vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 15px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .bl_hero {
    padding: 150px 15px;
    height: 120vh;
  }
}
.bl_hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 302px;
  mix-blend-mode: multiply;
  background-image: url("../img/hokkaido.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .bl_hero::before {
    width: max(500px, 80.8333333333vw);
    height: max(302px, 48.75vw);
    left: -8%;
    top: 70%;
  }
}
.bl_hero::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  aspect-ratio: 1/1;
  z-index: 1;
  background-image: url("../img/hero_circle.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .bl_hero::after {
    left: 75%;
  }
}
.bl_hero_inner {
  max-width: 1500px;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .bl_hero_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}
.bl_hero_catch {
  font-size: clamp(16px, 5vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .bl_hero_catch {
    font-size: min(2.6041666667vw, 32px);
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .bl_hero_catch {
    font-size: min(2.0161290323vw, 32px);
    text-align: left;
  }
}
.bl_hero_catch span {
  font-size: clamp(20px, 6.25vw, 36px);
  display: inline-block;
  margin: 0 2px 10px;
  line-height: 1.5;
  padding: 0 0.3rem;
  text-shadow: none;
  position: relative;
  z-index: 1;
}
.bl_hero_catch span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0D6CBE 0%, #012865 99%);
  z-index: -1;
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .bl_hero_catch span {
    font-size: min(3.6458333333vw, 48px);
  }
}
@media screen and (min-width: 992px) {
  .bl_hero_catch span {
    font-size: min(3.0241935484vw, 48px);
    margin: 0 5px 20px;
  }
}
.bl_hero_left {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .bl_hero_left {
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 7vw;
  }
}
@media screen and (min-width: 992px) {
  .bl_hero_left {
    width: 51%;
    flex-shrink: 0;
    margin-bottom: 7vw;
  }
}
.bl_hero_right {
  max-width: 500px;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .bl_hero_right {
    width: 45%;
    max-width: none;
  }
}
@media screen and (min-width: 992px) {
  .bl_hero_right {
    width: 47%;
  }
}
.bl_hero .el_btn_form {
  max-width: 350px;
  margin: 0 auto 50px;
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.4), 0 0 24px 2px rgba(55, 190, 240, 0.8);
}
.bl_hero .el_btn_form:has(a:hover) {
  transform: scale(1.05);
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.4), 0 0 24px 5px rgba(238, 221, 34, 0.8);
}
@media screen and (min-width: 768px) {
  .bl_hero .el_btn_form {
    margin: 0;
    width: 35.2822580645vw;
  }
}
.bl_hero .el_btn_form a {
  padding: 12px 30px;
  font-size: clamp(16px, 5vw, 24px);
}
@media screen and (min-width: 768px) {
  .bl_hero .el_btn_form a {
    font-size: min(2.4193548387vw, 24px);
  }
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.bl_concept {
  background-image: url("../img/concept_bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding: 100px 15px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 992px) {
  .bl_concept {
    padding: 150px 15px 170px;
    border-radius: 40px;
  }
}
.bl_concept_title {
  width: min(87.5vw, 300px);
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_concept_title {
    width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .bl_concept_title {
    margin-bottom: 70px;
  }
}
.bl_concept_title img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bl_concept_inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-around;
    max-width: 1280px;
    margin-inline: auto;
  }
}
.bl_concept_text {
  text-align: center;
  font-size: min(6.25vw, 32px);
  font-weight: 500;
  line-height: 2;
  margin-bottom: min(13.3333333333vw, 70px);
}
@media screen and (min-width: 992px) {
  .bl_concept_text {
    font-size: min(2.4193548387vw, 32px);
    width: 45%;
    margin-bottom: 0;
  }
}
.bl_concept_text .hp_bgGradient__main {
  border-radius: 5px;
  font-size: min(7.5vw, 44px);
  line-height: 2.5;
}
@media screen and (min-width: 992px) {
  .bl_concept_text .hp_bgGradient__main {
    font-size: min(3.2258064516vw, 44px);
  }
}
.bl_concept_img {
  text-align: center;
  max-width: 590px;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .bl_concept_img {
    width: 45%;
  }
}

.bl_features {
  padding: 100px 0;
  background-color: #F9FAFB;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_features {
    padding: 120px 0;
  }
}
.bl_features_inner {
  max-width: 1280px;
  margin-inline: auto;
}
.bl_features_item {
  padding: 0 15px;
  position: relative;
  margin-bottom: 60px;
}
.bl_features_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .bl_features_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 90px;
  }
}
.bl_features_item::after {
  position: absolute;
  content: "";
  top: 15%;
  width: auto;
  height: min(60.4838709677vw, 600px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  opacity: 0.2;
  z-index: 1;
}
.bl_features_item:nth-child(odd) {
  flex-direction: row-reverse;
}
.bl_features_item:nth-child(odd)::after {
  left: 100%;
  transform: translateX(-50%);
}
.bl_features_item:nth-child(even)::after {
  left: 0;
  transform: translateX(-50%);
}
.bl_features_text {
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .bl_features_text {
    width: 48%;
  }
}
.bl_features_num {
  color: #37BEF0;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}
.bl_features_heading {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: min(5vw, 32px);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_features_heading {
    font-size: min(2.6041666667vw, 32px);
  }
}
.bl_features_heading .hp_bgGradient__main {
  border-radius: 5px;
}
.bl_features_body mark {
  font-weight: 600;
}
.bl_features_body li {
  padding-left: 1rem;
  text-indent: -1rem;
  margin-bottom: 5px;
}
.bl_features_img {
  background-color: white;
  padding: 10px;
  box-shadow: 0 0 15px rgba(55, 190, 240, 0.5);
  border-radius: 5px;
  position: relative;
  z-index: 5;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .bl_features_img {
    width: 48%;
    margin: 0;
  }
}

.bl_worries {
  padding: 70px 15px;
  background: linear-gradient(135deg, #FEE7F1 0%, #81B8F2 50%, #A5ECF7 100%);
  border-radius: 20px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .bl_worries {
    padding: 100px 15px;
    border-radius: 40px;
  }
}
.bl_worries_title {
  display: table;
  margin: 0 auto 40px;
  font-size: min(5.625vw, 32px);
  color: #064A96;
}
@media screen and (min-width: 768px) {
  .bl_worries_title {
    font-size: min(4.435483871vw, 44px);
    margin: 0 auto 60px;
  }
}
.bl_worries_title span {
  font-weight: 700;
  font-size: min(7.5vw, 44px);
  padding: 2px 5px;
  margin: 0 5px;
  position: relative;
}
.bl_worries_title span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #F9FAFB;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .bl_worries_title span {
    font-size: min(5.2419354839vw, 52px);
  }
}
.bl_worries_title.is_active span::before {
  animation-name: marker;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.bl_worries_inner {
  max-width: 1280px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_worries_inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .bl_worries_inner {
    gap: 40px;
  }
}
.bl_worries_item {
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_worries_item {
    width: 48%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .bl_worries_item {
    width: 31%;
    padding: 30px 20px;
  }
}
.bl_worries_item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 10px;
  z-index: -1;
  border: 3px solid #37BEF0;
  mix-blend-mode: screen;
  box-shadow: 0 0 4px 0 rgba(238, 221, 34, 0.5);
}
@media screen and (min-width: 768px) {
  .bl_worries_item.un_much_height p {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bl_worries_item.un_much_height p span {
    padding: 0 5px;
  }
}
.bl_worries_text {
  color: #064A96;
  text-align: center;
  margin-bottom: 0;
  font-size: min(5vw, 24px);
}
@media screen and (min-width: 992px) {
  .bl_worries_text {
    font-size: min(2vw, 24px);
  }
}
.bl_worries_text span {
  font-weight: 700;
  color: #F9FAFB;
  mix-blend-mode: overlay;
  padding: 3px 5px;
  font-size: min(6.25vw, 28px);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}
.bl_worries_text span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #064A96;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_worries_text span {
    font-size: min(2.3333333333vw, 28px);
  }
}
.bl_worries_text.is_active span::before {
  animation-name: marker;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.bl_solution {
  padding: 100px 0;
  background-color: #F9FAFB;
}
@media screen and (min-width: 768px) {
  .bl_solution {
    padding: 120px 0;
  }
}
.bl_solution .el_section_title {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .bl_solution .el_section_title {
    margin-bottom: 100px;
  }
}
.bl_solution_inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .bl_solution_inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .bl_solution_inner {
    gap: 50px;
  }
}
.bl_solution_item {
  border: 1px solid #37BEF0;
  border-radius: 20px;
  padding: 40px 15px 15px;
  position: relative;
  margin-bottom: 40px;
}
.bl_solution_item::before {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 150px;
  height: 50px;
  background: #F9FAFB;
}
@media screen and (min-width: 768px) {
  .bl_solution_item {
    width: 47%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .bl_solution_item {
    width: 30%;
    padding: 30px 20px;
  }
}
.bl_solution_num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 500;
  color: #37BEF0;
}
@media screen and (min-width: 768px) {
  .bl_solution_num {
    font-size: 40px;
    top: -35px;
  }
}
.bl_solution_icon {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_solution_icon {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.bl_solution_heading {
  color: #37BEF0;
  display: table;
  margin: 0 auto 10px;
  font-size: 20px;
}

.bl_demo {
  padding: 70px 0 120px;
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_demo {
    padding: 100px 0 150px;
  }
}
.bl_demo::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0fbff;
  mix-blend-mode: soft-light;
  z-index: 1;
}
.bl_demo .el_section_title {
  margin-bottom: 30px;
  color: #F9FAFB;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .bl_demo .el_section_title {
    margin-bottom: 50px;
  }
}
.bl_demo_lead {
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}
.bl_demo_youtube {
  max-width: 960px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.bl_demo_youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  box-shadow: 0 0 20px -6px black;
  transition: all 0.3s;
}
.bl_demo_youtube iframe:hover {
  box-shadow: 0 0 50px -12px black;
  transform: translateY(-10px);
}

.bl_plan {
  padding: 70px 0;
  border-radius: 20px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
  background-color: #F4F4F4;
  position: relative;
  z-index: 10;
  margin: -30px 0;
}
@media screen and (min-width: 768px) {
  .bl_plan {
    border-radius: 40px;
    padding: 120px 0;
  }
}
.bl_plan .el_section_title {
  margin-bottom: 30px;
}
.bl_plan .bl_plan_lead {
  margin-bottom: 50px;
  color: #6B7280;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_plan .bl_plan_lead {
    margin-bottom: 50px;
  }
}
.bl_plan_note {
  color: #6B7280;
  text-align: center;
}
.bl_plan_inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .bl_plan_inner {
    display: flex;
    justify-content: center;
    gap: min(4%, 50px);
  }
}
.bl_plan_item {
  margin-bottom: 50px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 30px 15px 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media screen and (min-width: 768px) {
  .bl_plan_item {
    width: min(48%, 490px);
  }
}
.bl_plan_text {
  border-bottom: 2px solid #0B2B47;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.bl_plan_text span {
  font-size: 28px;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.bl_plan_monthly {
  margin-bottom: 30px;
}
.bl_plan_monthly_price {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0;
}
.bl_plan_monthly_price span {
  font-size: 20px;
  font-weight: 400;
}
.bl_plan_first {
  background-color: #F9FAFB;
  text-align: center;
  padding: 15px;
  border-radius: 15px;
}
.bl_plan_first p {
  margin-bottom: 0;
}
.bl_plan_first_heading {
  font-size: 14px;
}
.bl_plan_first_price {
  font-size: 24px;
  font-weight: 500;
  color: #0B2B47;
}
.bl_plan_first .bl_plan_note {
  font-size: 12px;
}
.bl_plan_item.bl_plan_item__recommend {
  border: 2px solid #FB923C;
  background-color: #FFF1E5;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.bl_plan_item.bl_plan_item__recommend::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 40px;
  border-radius: 50px;
  background: linear-gradient(to right, #FB923C, #EF4444);
}
.bl_plan_item.bl_plan_item__recommend::after {
  position: absolute;
  content: "おすすめ";
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 20px;
  font-weight: 500;
}
.bl_plan_item.bl_plan_item__recommend .bl_plan_text {
  color: #EF4444;
}
.bl_plan_note_list {
  text-align: left;
  padding: 0 15px;
  max-width: 1050px;
  margin: auto;
}
.bl_plan_note_list li {
  padding-left: 1rem;
  text-indent: -1rem;
}

.bl_inquiry {
  padding: 100px 15px;
  background: linear-gradient(135deg, #37BEF0 0%, #004EA1 63%, #004EA1 80%, #1488A2 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_inquiry {
    padding: 120px 0;
  }
}
.bl_inquiry::before {
  content: "";
  position: absolute;
  top: 75%;
  left: -8%;
  transform: translateY(-50%);
  width: 500px;
  height: 302px;
  mix-blend-mode: multiply;
  background-image: url("../img/hokkaido.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .bl_inquiry::before {
    width: max(500px, 80.8333333333vw);
    height: max(302px, 48.75vw);
    left: -8%;
    top: 75%;
  }
}
.bl_inquiry .el_section_title {
  margin-bottom: 30px;
  color: #F9FAFB;
  text-shadow: 0 0 20px #37bef0;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}
.bl_inquiry .el_section_title::after {
  background-color: #F9FAFB;
  box-shadow: 0 0 20px 0 #37bef0;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .el_section_title {
    margin-bottom: 50px;
  }
}
.bl_inquiry_inner {
  color: #F9FAFB;
  position: relative;
  z-index: 10;
  background-color: rgba(249, 250, 251, 0.1);
  backdrop-filter: blur(12px);
  width: min(100%, 840px);
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  padding: 40px 15px;
}
.bl_inquiry_heading {
  font-size: min(5vw, 36px);
  color: #EEDD22;
  text-align: center;
  margin-bottom: 10px;
}
.bl_inquiry_text {
  margin: 0 auto 30px;
  display: table;
}
.bl_inquiry .el_btn_form {
  margin: 0 auto 30px;
  font-size: min(5.3333333333vw, 24px);
  font-weight: 500;
  max-width: 360px;
}
.bl_inquiry .el_btn_form:has(a:hover) {
  transform: scale(1.05);
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.4), 0 0 24px 5px rgba(238, 221, 34, 0.8);
}
.bl_inquiry .el_btn_form a {
  padding: 10px;
}
.bl_inquiry_tel {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
.bl_inquiry_tel span {
  font-size: 24px;
  margin-left: 10px;
}
.bl_inquiry_tel img {
  vertical-align: middle;
  margin-bottom: 8px;
}

.ly_footer {
  background-color: #0B2B47;
  padding: 30px 15px;
  text-align: center;
  color: #F9FAFB;
  position: relative;
  z-index: 10;
}

.el_copyright {
  font-size: 12px;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */