@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
.page_scale {
  transform: scale(1.2);
  transform-origin: top center;
}
@media screen and (max-width: 768px) {
  .page_scale {
    transform: none;
    transform-origin: inherit;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

html {
  overflow-x: hidden;
  font-size: 0.5208333333vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  font-weight: 500;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  color: inherit;
}

select::-ms-expand {
  display: none;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #333;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.ah_inner {
  width: calc(100% - 82rem);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .ah_inner {
    width: 82%;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/* ======================================================================
 header
====================================================================== */
.ah_header {
  position: relative;
  z-index: 999;
  background: #FFF;
  box-shadow: rgba(0, 0, 0, 0.15) 0 4px 4px 0;
}
@media screen and (max-width: 768px) {
  .ah_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.ah_header_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
}
@media screen and (max-width: 768px) {
  .ah_header_cont {
    box-sizing: border-box;
    width: 100%;
    padding: 1.8rem 4%;
  }
}
.ah_header_logo {
  width: 32.8rem;
}
@media screen and (max-width: 768px) {
  .ah_header_logo {
    width: 44rem;
  }
}
@media screen and (max-width: 768px) {
  .ah_header_menu {
    transition: right 0.2s ease-in-out;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 99999;
    background: #FFF;
    width: 73.3333333333%;
    height: 100vh;
    padding: 4rem 4rem 6rem;
  }
}
.ah_header_menu._active {
  right: 0;
}
.ah_header_menu_list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .ah_header_menu_list {
    display: block;
  }
}
.ah_header_menu_list_box {
  font-size: 1.6rem;
  border-right: 2px solid #0081CB;
  padding: 0.25rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .ah_header_menu_list_box {
    position: relative;
    display: block;
    border-right: none;
    padding: 5rem 1rem;
    font-weight: 900;
    color: #0081CB;
    font-size: 4rem;
    border-bottom: 1px solid #92A2AB;
  }
  .ah_header_menu_list_box::after {
    content: "";
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.5rem 0 1.5rem 2.5rem;
    border-color: transparent transparent transparent #0081CB;
  }
}
.ah_header_menu_list_box:first-child {
  border-left: 2px solid #0081CB;
}
@media screen and (max-width: 768px) {
  .ah_header_menu_list_box:first-child {
    border-left: none;
    border-top: 1px solid #92A2AB;
  }
}
.ah_header_menu_btn, .ah_header_menu_close span {
  font-size: 0;
  width: 5.1rem;
  height: 3.6rem;
}
.ah_header_menu_btn {
  background: url(../img/hamburger.svg) no-repeat 50% 50%;
  background-size: 100%;
}
.ah_header_menu_close {
  text-align: right;
}
.ah_header_menu_close span {
  display: inline-block;
  background: url(../img/close.svg) 50% 50% no-repeat;
  background-size: 4.3rem;
  margin-bottom: 10rem;
}
.ah_header_menu_img {
  margin: 3rem auto 10rem;
  width: 33.5rem;
}

.ah_overlay {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

/* ======================================================================
 footer
====================================================================== */
.ah_footer {
  padding: 1.8rem 0 23rem;
}
@media screen and (max-width: 768px) {
  .ah_footer {
    padding: 6rem 0 30rem;
  }
}
.ah_footer_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ah_footer_menu {
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.ah_footer_menu_list {
  order: 2;
  display: flex;
}
@media screen and (max-width: 768px) {
  .ah_footer_menu_list {
    justify-content: center;
  }
}
.ah_footer_menu_list_box {
  font-size: 1.6rem;
  border-right: 2px solid #0081CB;
  padding: 0.25rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .ah_footer_menu_list_box {
    font-size: 2.5rem;
    text-align: center;
  }
}
.ah_footer_menu_list_box:first-child {
  border-left: 2px solid #0081CB;
}
.ah_footer_logo {
  width: 32.8rem;
}
@media screen and (max-width: 768px) {
  .ah_footer_logo {
    display: block;
    margin: 4rem auto 0;
    width: 55.8rem;
  }
}

.ah_fixed {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 99;
  left: 0;
  bottom: 0;
}
.ah_fixed_btn {
  display: block;
  margin: 0 auto;
  width: 130rem;
}
@media screen and (max-width: 768px) {
  .ah_fixed_btn {
    width: 100%;
  }
}

/* ======================================================================
 main
====================================================================== */
.ah_mv {
  position: relative;
  background: url(../img/mv_bg.png) no-repeat 50% 100%;
  background-size: 100%;
  padding: 11rem 0;
}
@media screen and (max-width: 768px) {
  .ah_mv {
    background: url(../img/mv_bg_sp.png) no-repeat 50% 100%;
    background-size: 100%;
    padding: 9rem 0 4rem;
  }
}
.ah_mv::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  display: block;
  background: url(../img/scroll.svg) no-repeat 50% 0;
  background-size: 100%;
  width: 1.8rem;
  height: 6.3rem;
  bottom: -2rem;
  margin-left: -0.9rem;
}
@media screen and (max-width: 768px) {
  .ah_mv::after {
    bottom: 0;
  }
}
.ah_mv_img {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 139rem;
}
@media screen and (max-width: 768px) {
  .ah_mv_img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ah_mv .ah_inner {
    width: 100%;
  }
}

.ah_trouble {
  padding: 7rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .ah_trouble {
    padding: 3rem 0 5rem;
  }
}
.ah_trouble_ttl {
  font-weight: 700;
  display: table;
  margin: 0 auto;
  text-align: center;
  border-bottom: 5px solid #0081CB;
  font-size: 3.5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ah_trouble_ttl {
    border-bottom-width: 3px;
  }
}
.ah_trouble_list {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .ah_trouble_list {
    display: block;
    margin-top: 4rem;
  }
}
.ah_trouble_list_box {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .ah_trouble_list_box {
    width: 100%;
    margin-top: 2rem;
  }
}
.ah_trouble_list_ttl {
  position: relative;
  font-weight: 700;
  color: #0081CB;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 10px 0;
  border-radius: 2rem 2rem 2rem 0;
  width: 100%;
  height: 16.5rem;
  font-size: 2rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .ah_trouble_list_ttl {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.ah_trouble_list_ttl::after {
  content: "“";
  position: absolute;
  z-index: 1;
  color: #FFE100;
  font-weight: 900;
  font-size: 8rem;
  top: -0.5rem;
  left: 1.5rem;
}
.ah_trouble_list_img {
  position: relative;
  z-index: 1;
  margin: -3.5rem auto 0;
  width: 21rem;
}

.ah_step {
  background: #F3F4F1;
}
@media screen and (max-width: 768px) {
  .ah_step {
    padding-bottom: 7.5rem;
  }
}
.ah_step_bal {
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  background: url(../img/bal_wh.svg) no-repeat 50% 0;
  background-size: 100%;
  width: 16.9rem;
  height: 8.1rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .ah_step_bal {
    font-size: 2.5rem;
  }
}
.ah_step_ttl {
  width: 70.7rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .ah_step_ttl {
    box-sizing: border-box;
    margin: 2rem calc(50% - 50vw) 0;
    width: 100vw;
    padding: 0 1.5rem;
  }
}
.ah_step_flow {
  margin-top: 3.5rem;
}
.ah_step_cont {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .ah_step_cont {
    display: block;
  }
}
.ah_step_cont_img {
  order: 2;
  margin: -3rem auto 0;
  width: 88rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_img {
    margin: 0 auto;
    width: 100%;
  }
}
.ah_step_cont_list {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list {
    display: block;
  }
}
.ah_step_cont_list_box {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 10px 0;
  width: 31.36%;
  border-radius: 1rem;
  padding: 4rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_box {
    width: 100%;
    padding: 4rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_box:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.ah_step_cont_list_box:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background: url(../img/step_arw.png) no-repeat 0 0;
  background-size: 100%;
  width: 7rem;
  height: 10rem;
  top: 7.5rem;
  right: -5rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_box:not(:last-child)::after {
    background: url(../img/step_arw_sp.png) no-repeat 0 0;
    background-size: 100%;
    width: 8.6rem;
    height: 12.4rem;
    top: inherit;
    right: 50%;
    margin-right: -4.3rem;
    bottom: -9rem;
  }
}
.ah_step_cont_list_ttl {
  margin: 0 auto 2rem;
  width: 24.7rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_ttl {
    width: 46.8rem;
    margin: 0 auto 1rem;
  }
}
.ah_step_cont_list_num {
  font-family: "Outfit", sans-serif;
  color: #0081CB;
  text-align: center;
  font-weight: 300;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_num {
    font-size: 2.5rem;
  }
}
.ah_step_cont_list_txt {
  flex-grow: 1;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_txt {
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_img {
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
  }
}
.ah_step_cont_list_pic {
  position: absolute;
  z-index: 1;
}
.ah_step_cont_list_pic._step01 {
  width: 22rem;
  top: -6rem;
  left: -8rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_pic._step01 {
    left: -5rem;
    top: -5rem;
  }
}
.ah_step_cont_list_pic._step02 {
  width: 14.5rem;
  top: 15rem;
  right: -5rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_pic._step02 {
    width: 22.3rem;
    top: 0;
    right: -6rem;
  }
}
.ah_step_cont_list_pic._step03 {
  width: 22rem;
  top: -6rem;
  right: -11rem;
}
@media screen and (max-width: 768px) {
  .ah_step_cont_list_pic._step03 {
    right: inherit;
    width: 27rem;
    top: -5rem;
    left: -11rem;
  }
}

.ah_merit {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .ah_merit {
    padding: 5rem 0;
  }
}
.ah_merit_ttl {
  font-family: "Outfit", sans-serif;
  color: #2863B3;
  font-weight: 900;
  text-align: center;
  font-size: 4.5rem;
}
.ah_merit_ttl::after {
  content: "";
  display: block;
  background: #FFE100;
  margin: 2rem auto 0;
  width: 9.5rem;
  height: 0.5rem;
}
.ah_merit_txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_txt {
    font-size: 1.8rem;
  }
}
.ah_merit_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list {
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1rem;
  }
}
.ah_merit_list::before, .ah_merit_list::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list::before, .ah_merit_list::after {
    bottom: -6rem;
  }
}
.ah_merit_list::before {
  background: url(../img/merit_img01.svg) no-repeat 0 0;
  background-size: 100%;
  width: 10.3rem;
  height: 23rem;
  left: -18rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list::before {
    left: -9rem;
  }
}
.ah_merit_list::after {
  background: url(../img/merit_img02.svg) no-repeat 0 0;
  background-size: 100%;
  width: 9.6rem;
  height: 23rem;
  right: -18rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list::after {
    right: -9rem;
  }
}
.ah_merit_list_box {
  width: 24%;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list_box {
    width: 49%;
    display: flex;
    flex-direction: column;
  }
}
.ah_merit_list_ttl {
  background: #2863B3;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  font-size: 2.5rem;
  height: 5rem;
  letter-spacing: 0.25rem;
}
.ah_merit_list_desc {
  border-right: 3px solid #2863B3;
  border-bottom: 3px solid #2863B3;
  border-left: 3px solid #2863B3;
  border-radius: 0 0 2rem 2rem;
  padding: 2.5rem 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list_desc {
    flex-grow: 1;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    padding: 2rem;
  }
}
.ah_merit_list_img {
  margin: 0 auto 2rem;
  width: 12rem;
}
@media screen and (max-width: 768px) {
  .ah_merit_list_img {
    margin: 0 auto 1rem;
  }
}
.ah_merit_list_txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .ah_merit_list_txt {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.ah_merit_list_txt span {
  font-weight: 700;
  color: #2863B3;
  font-size: 1.8rem;
  border-bottom: 0.5rem solid #FFE100;
}
@media screen and (max-width: 768px) {
  .ah_merit_list_txt span {
    font-size: 2.5rem;
  }
}

.ah_lineup {
  background: #0081CB url(../img/lineup_bg.png) no-repeat 50% 0;
  background-size: 100%;
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup {
    padding: 5rem 0 0;
  }
}
.ah_lineup_ttl {
  color: #FFF;
  text-align: center;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 0.25rem;
}
.ah_lineup_ttl span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.ah_lineup_list {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup_list {
    display: block;
  }
}
.ah_lineup_list_box {
  background: #FFF;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 10px 0;
  width: 32.18%;
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup_list_box {
    width: 100%;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .ah_lineup_list_box:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.ah_lineup_list_ttl {
  font-weight: 900;
  text-align: center;
  display: table;
  margin: 0 auto;
  font-size: 3rem;
  border-bottom: 0.5rem solid #FFE100;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup_list_ttl {
    font-size: 3.5rem;
  }
}
.ah_lineup_list_txt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup_list_txt {
    font-size: 2.5rem;
  }
}
.ah_lineup_list_txt span {
  color: #2863B3;
  font-weight: 700;
}
.ah_lineup_btn {
  display: block;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .ah_lineup_btn {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}/*# sourceMappingURL=style.css.map */