/* body.active {
  position: fixed;
  width: 100%;
  overflow: hidden;
  background: #CC132C;
  background: linear-gradient(90deg,rgba(214, 0, 29, 1) 0%, rgba(113, 0, 7, 1) 100%);
} */

/* 背景要素の位置を固定するためのスタイル */
body.active .bg_base,
body.active .mark01,
body.active .mark02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body.active .bg_base {
  z-index: 1;
}

body.active .mark01 {
  z-index: 2;
}

body.active .mark02 {
  z-index: 2;
}

/* ハンバーガーメニューを開いた際のコンテンツ要素の調整 */
body.active #wrapper {
  position: relative;
  z-index: 1;
}

body.active .kv,
body.active .s1,
body.active .s2,
body.active .s3,
body.active .s4,
body.active .s5,
body.active .footer {
  position: relative;
  z-index: 1;
}

/* Menu Open */
.gnav {
  background: rgba(0, 0, 0, .9);
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  display: flex;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  flex-wrap: wrap;
}
.gnav * {
  line-height: 1;
  text-decoration: none !important;
}
.gnav.active {
  /* transition: all 300ms ease-out; */
  opacity: 1;
  pointer-events: auto;
}

.gnav__wrap {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0;
  margin: 150px auto 0;
  width: 100%;
  max-width: 980px;
  flex-wrap: wrap;
}
.gnav__half01 {
  flex-basis: 192px;
  text-align: center;
}
.gnav__half02 {
  flex-basis: 544px;
  text-align: left;
}

.gnav__03 {
  flex-basis: 100%;
  text-align: center;
}

.gnav__03 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 840px;
  margin: 70px auto 30px;
}
.gnav__03 ul li {
  flex-basis: 386px;
  text-align: center;
}

.gnav__03 ul li .blue {
  background-image: url(../img/hm_btn_blue_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 404px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s;
}
.gnav__03 ul li .blue p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-top: -11px;
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .blue:hover p {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .blue:hover:after {
    right: 20px;
  }
}
.gnav__03 ul li .blue:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../img/btn_blue_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 33px;
  right: 30px;
  transition: all 0.5s;
}
.gnav__03 ul li .red {
  background-image: url(../img/hm_btn_red_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 404px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s;
}
.gnav__03 ul li .red p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-top: -11px;
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .red:hover p {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .red:hover:after {
    right: 20px;
  }
}
.gnav__03 ul li .red:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../img/btn_red_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 33px;
  right: 30px;
  transition: all 0.5s;
}


.gnav__03 .sns_flex {
  margin: 70px auto;
  text-align: center;
  width: 365px;
}
.gnav__03 .sns_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.gnav__03 .sns_flex .sns_ttl p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 30px;
}
.gnav__03 .sns_flex .sns_icon img {
  max-width: 27px;
}


.gnav__group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 0 0;
  width: 544px;
}

.gnav__list {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.gnav__item {
  margin: 0 0 30px 0;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  position: relative;

  box-sizing: border-box;
}

.gnav__item:nth-child(odd) {
  flex-basis: 320px;
}

.gnav__item:nth-child(even) {
  flex-basis: 224px;
}

.gnav__item:before {
  content: "";
  background-image: url(../img/hm_menu_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
}

.gnav__item a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
}



.gnav__ttl {
  margin: 30px 0;
  font-size: 17px;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

/* .gnav__check {
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1;
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.gnav__check a {
  color: #fff;
  text-decoration: none;
}

.gnav__check:before {
  content: "";
  background-image: url(../img/checklist.svg);
  width: 14px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
} */




@media screen and (max-width: 780px) {
  /* .gnav {
    background: #053686;
    overflow: scroll;
    display: block;
  } */

  .gnav {
    background: rgba(0, 0, 0, .9);
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    overflow-y: auto;
  }
  .gnav * {
    line-height: 1;
    text-decoration: none !important;
  }
  .gnav.active {
    transition: all 300ms ease-out;
    opacity: 1;
    pointer-events: auto;
  }

  .gnav__wrap {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0;
    margin: 23vw auto 0;
    width: 100%;
    max-width: 80vw;
    flex-wrap: wrap;
  }


  .gnav__half01 {
    flex-basis: 80vw;
    text-align: center;

    img {
      max-width: 60vw;
      margin: 0 auto 8vw;
    }
  }

  .gnav__half02 {
    flex-basis: 80vw;
    margin: 0 0 0 0;
  }

  .gnav__group {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 5vw auto 0;
    width: 80vw;
  }

  .gnav__list {
    margin: 0;
  }

  .gnav__item {
    margin: 0 0 7vw 0;
    padding-left: 5vw;
    font-size: 4vw;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    position: relative;
    flex-basis: 100%;
  }

  .gnav__item:nth-child(odd) {
    flex-basis: 80vw;
  }
  
  .gnav__item:nth-child(even) {
    flex-basis: 80vw;
  }

  .gnav__item:before {
    content: "";
    background-image: url(../img/hm_menu_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 2.1vw;
    height: 3.7vw;
    position: absolute;
    top: 0.5vw;
    left: 0;
  }

  .gnav__item a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 3.8vw;
  }

  .gnav__ttl {
    margin: 10vw 0 5vw;
    font-size: 4vw;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1;
    color: #fff;
  }


.gnav__03 {
  flex-basis: 100%;
  text-align: center;
}

.gnav__03 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 80vw;
  margin: 5vw auto 8vw;
}
.gnav__03 ul li {
  flex-basis: 80vw;
  text-align: center;
}

.gnav__03 ul li .blue {
  background-image: url(../img/hm_btn_blue_bg-s.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80vw;
  height: 16.153846vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s;
  margin-bottom: 3vw;
}
.gnav__03 ul li .blue p {
  font-size: 4.102564vw;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-top: 0;
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .blue:hover p {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .blue:hover:after {
    right: 20px;
  }
}
.gnav__03 ul li .blue:after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  background-image: url(../img/btn_blue_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 2.5vw);
  right: 4vw;
  transition: all 0.5s;
}
.gnav__03 ul li .red {
  background-image: url(../img/hm_btn_red_bg-s.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80vw;
  height: 16.153846vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s;
}
.gnav__03 ul li .red p {
  font-size: 4.102564vw;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-top: 0;
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .red:hover p {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav__03 ul li .red:hover:after {
    right: 20px;
  }
}
.gnav__03 ul li .red:after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  background-image: url(../img/btn_red_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 2.5vw);
  right: 4vw;
  transition: all 0.5s;
}


.gnav__03 .sns_flex {
  margin: 0 auto 8vw;
  text-align: center;
  width: 80vw;
}
.gnav__03 .sns_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
.gnav__03 .sns_flex .sns_ttl p {
  font-size: 3.58974vw;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 5vw;
}
.gnav__03 .sns_flex .sns_icon img {
  max-width: 6.5vw;
}


  /* .gnav__check {
    margin: 0;
    font-size: 3.3vw;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: relative;
    padding-left: 6vw;
    margin-bottom: 5vw;
  }

  .gnav__check a {
    color: #fff;
    text-decoration: none;
  }

  .gnav__check:before {
    content: "";
    background-image: url(../img/checklist.svg);
    width: 3.5vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  } */
/* 
  .sns_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw;
    margin: 0 auto;
  }

  .sns_icon li {
    flex-basis: 30vw;
    text-align: center;
  } */

}
